@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #050506; /* Premium deepest black background */
  --bg-dark: #0a0a0c;  /* Sleek deep dark gray-slate */
  --bg-card: #0b0e14;  /* Sleek card background */
  --bg-card-hover: #121620; /* Hover card background */
  
  --gold-primary: #38bdf8; /* Bright electric cyan-blue (like the $249 active color) */
  --gold-light: #60a5fa;   /* Bright electric blue accent */
  --gold-dark: #2563eb;    /* Royal blue primary highlight */
  --gold-gradient: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #38bdf8 100%);
  --gold-gradient-hover: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
  
  --border-color: rgba(56, 189, 248, 0.12); /* Subtle cyan-blue border tint */
  --border-color-hover: rgba(56, 189, 248, 0.35);
  --gold-glow: 0 0 25px rgba(37, 99, 235, 0.15);
  --gold-glow-strong: 0 0 35px rgba(56, 189, 248, 0.3);
  
  --text-primary: #ffffff; /* Crisp white text for primary headings and readability */
  --text-secondary: #94a3b8; /* Sleek slate-400 for descriptions and subheadings */
  --text-muted: #64748b; /* Sleek slate-500 for secondary text */
  --white: #ffffff; /* Explicitly defined pure white variable */
  
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-heading: 'Outfit', system-ui, sans-serif;
  
  scroll-behavior: smooth;
  overflow-x: hidden;
}


html {
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-black);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Base Layout */
#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

/* Glassmorphic Utilities */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease, 
              background-color 0.4s ease;
  will-change: transform, box-shadow;
}

.glass-panel:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-hover);
  box-shadow: 0 16px 36px rgba(0, 229, 255, 0.15), var(--gold-glow-strong);
  background: var(--bg-card-hover);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000000;
  border: none;
  box-shadow: var(--gold-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  transform: translate(25%, 25%) rotate(45deg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow-strong);
  background: var(--gold-gradient-hover);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 6px;
}

/* Gradients and Gold Effects */
.text-gold {
  color: var(--gold-primary);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gold-gradient {
  background: var(--gold-gradient);
}

.glow-overlay {
  position: absolute;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.16;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--gold-primary) 0%, transparent 68%);
  z-index: 0;
  animation: pulse-glow 8s infinite alternate ease-in-out;
}

/* Animation Keyframes */
@keyframes pulse-glow {
  0% {
    opacity: 0.08;
    transform: scale(0.9) translate(0px, 0px);
  }
  100% {
    opacity: 0.22;
    transform: scale(1.1) translate(10px, -15px);
  }
}

@keyframes float-lord {
  0% {
    transform: translateY(0px);
    filter: drop-shadow(0 0 35px rgba(0, 229, 255, 0.4));
  }
  50% {
    transform: translateY(-12px);
    filter: drop-shadow(0 0 50px rgba(0, 229, 255, 0.6));
  }
  100% {
    transform: translateY(0px);
    filter: drop-shadow(0 0 35px rgba(0, 229, 255, 0.4));
  }
}

@keyframes text-shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes border-glow-flow {
  0% {
    border-color: rgba(0, 229, 255, 0.12);
  }
  50% {
    border-color: rgba(0, 229, 255, 0.4);
  }
  100% {
    border-color: rgba(0, 229, 255, 0.12);
  }
}

/* Animation utilities */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating & Divine Animations */
.animate-float-lord {
  animation: float-lord 6s infinite ease-in-out;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shimmer 5s linear infinite;
}

/* Scroll Trigger Base Classes */
.scroll-trigger {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-trigger.fade-in-up {
  transform: translateY(35px);
}

.scroll-trigger.fade-in-left {
  transform: translateX(-35px);
}

.scroll-trigger.fade-in-right {
  transform: translateX(35px);
}

.scroll-trigger.zoom-in {
  transform: scale(0.93);
}

/* Active State to Trigger Animation */
.scroll-trigger.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Custom Animation Stagger Delays */
.delay-100 { transition-delay: 100ms !important; }
.delay-200 { transition-delay: 200ms !important; }
.delay-300 { transition-delay: 300ms !important; }
.delay-400 { transition-delay: 400ms !important; }
.delay-500 { transition-delay: 500ms !important; }
.delay-600 { transition-delay: 600ms !important; }
.delay-700 { transition-delay: 700ms !important; }
.delay-800 { transition-delay: 800ms !important; }

/* Pulse animation for glow blobs */
.ht-blob-1 {
  animation: pulse-glow 9s infinite alternate ease-in-out;
}
.ht-blob-2 {
  animation: pulse-glow 7s infinite alternate-reverse ease-in-out;
}

/* Custom animations for FAQ card active state */
.faq-card {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}




/* Glow Grid Dot Pattern */
.bg-grid {
  display: none !important;
}

/* Responsive Grid/Flex Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 16px;
  }
}

/* Home Page FAQ Redesign (matches the 2nd image layout) */
.faq-container-unified {
  background: rgba(10, 10, 12, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.faq-container-unified .faq-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  transition: all 0.3s ease;
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.04) !important;
  box-shadow: none !important;
}

.faq-container-unified .faq-card:last-child {
  border-bottom: none;
}

/* Left accent bar on active card */
.faq-container-unified .faq-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3.5px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-container-unified .faq-card.active::before {
  opacity: 1;
}

.faq-container-unified .faq-card.active {
  background: rgba(0, 229, 255, 0.03) !important;
}

.faq-container-unified .faq-card:hover {
  background: rgba(255, 255, 255, 0.01) !important;
}

.faq-container-unified .faq-card.active:hover {
  background: rgba(0, 229, 255, 0.05) !important;
}

/* Smooth expansion padding */
.faq-container-unified .faq-card .faq-answer-wrapper {
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.faq-container-unified .faq-card.active .faq-answer-wrapper {
  opacity: 1 !important;
  padding-bottom: 20px; /* add nice padding when open */
}

/* Mobile menu drawer premium blur background */
.mobile-drawer-blur {
  background-color: rgba(5, 5, 6, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* ================= THE LORD'S JOURNEY (ROADMAP) STYLES ================= */
.roadmap-container {
  position: relative;
}

/* Tilted Card Transformations (Alternating rotations & shifts like the reference) */
.roadmap-card-tilted-1 {
  transform: rotate(-2.5deg) translateY(12px);
}

.roadmap-card-tilted-2 {
  transform: rotate(2deg) translateY(-8px);
}

.roadmap-card-tilted-3 {
  transform: rotate(-1.5deg) translateY(15px);
}

.roadmap-card-tilted-4 {
  transform: rotate(2.5deg) translateY(-4px);
}

/* Card Glow background overlay */
.card-glow-bg {
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.08), transparent 70%);
  filter: blur(28px);
  opacity: 0;
  border-radius: 30px;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.roadmap-step-card-wrapper:hover .card-glow-bg {
  opacity: 1;
}

/* Glassmorphism Premium Cards */
.glass-panel-premium {
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 22px;
  padding: 34px 28px;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: visible; /* Needed for crown sticker overlay */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s ease,
              box-shadow 0.5s ease,
              background-color 0.5s ease;
  will-change: transform, box-shadow;
}

/* Smooth Rotation & Straighten Hover Effects */
.roadmap-step-card-wrapper:hover .glass-panel-premium {
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow: 0 20px 45px rgba(0, 229, 255, 0.15), 
              0 0 35px rgba(0, 229, 255, 0.22);
  background: rgba(18, 18, 22, 0.85);
}

.roadmap-step-card-wrapper:hover .roadmap-card-tilted-1 {
  transform: rotate(-0.5deg) translateY(-2px) scale(1.025);
}

.roadmap-step-card-wrapper:hover .roadmap-card-tilted-2 {
  transform: rotate(0.5deg) translateY(-14px) scale(1.025);
}

.roadmap-step-card-wrapper:hover .roadmap-card-tilted-3 {
  transform: rotate(-0.5deg) translateY(2px) scale(1.025);
}

.roadmap-step-card-wrapper:hover .roadmap-card-tilted-4 {
  transform: rotate(0.5deg) translateY(-10px) scale(1.025);
}

/* Watermark step numbers inside cards */
.step-watermark {
  position: absolute;
  bottom: -15px;
  right: -5px;
  font-size: 130px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 229, 255, 0.035);
  user-select: none;
  pointer-events: none;
  transition: color 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-step-card-wrapper:hover .step-watermark {
  color: rgba(0, 229, 255, 0.07);
  transform: scale(1.05) translate(-5px, -5px);
}

/* Crown sticker overlay popping out of Step 3 (Become Funded) */
.roadmap-crown-sticker {
  position: absolute;
  top: -28px;
  right: -24px;
  z-index: 25;
  transform: rotate(15deg);
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.55));
  animation: float-crown 4s infinite ease-in-out;
  pointer-events: none;
}

@keyframes float-crown {
  0%, 100% {
    transform: rotate(15deg) translateY(0);
  }
  50% {
    transform: rotate(18deg) translateY(-6px);
  }
}

/* Crown Icon container inside cards */
.crown-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-step-card-wrapper:hover .crown-icon-container {
  background: var(--gold-gradient);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
}

.roadmap-step-card-wrapper:hover .crown-icon-container i {
  color: #000000 !important;
}

/* Step Tags styling */
.step-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.15);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Highlighted card for "Become Funded" (Step 3) */
.highlighted-royal-card {
  border: 1px solid rgba(0, 229, 255, 0.38) !important;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12) 0%, rgba(10, 10, 12, 0.95) 100%) !important;
  box-shadow: 0 12px 35px rgba(0, 229, 255, 0.08);
}

.highlighted-royal-card .step-tag {
  color: #000000;
  background: var(--gold-gradient);
  border-color: transparent;
}

/* Absolute positioned connecting arrows (desktop) */
.roadmap-connecting-arrow-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 60px;
  z-index: 10;
  pointer-events: none;
}

.roadmap-connecting-arrow {
  stroke: var(--gold-primary);
  stroke-dasharray: 6, 6;
  opacity: 0.7;
  animation: arrow-dash-flow 1.5s linear infinite;
}

@keyframes arrow-dash-flow {
  to {
    stroke-dashoffset: -24;
  }
}

/* Horizontal alignment classes for 4 cards spacing */
.arrow-pos-1 { left: calc(25% - 45px); }
.arrow-pos-2 { left: calc(50% - 45px); }
.arrow-pos-3 { left: calc(75% - 45px); }

/* Feature Badges below the roadmap layout */
.roadmap-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 229, 255, 0.12);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.roadmap-feature-badge:hover {
  background: rgba(0, 229, 255, 0.04);
  border-color: var(--gold-primary);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

/* Mobile specific layout configurations */
@media (max-width: 1023px) {
  .roadmap-card {
    padding: 34px 28px;
  }
  
  .step-watermark {
    font-size: 110px;
  }
  
  /* Reset horizontal tilts on mobile */
  .roadmap-card-tilted-1,
  .roadmap-card-tilted-2,
  .roadmap-card-tilted-3,
  .roadmap-card-tilted-4 {
    transform: none !important;
  }
  
  .roadmap-step-card-wrapper:hover .glass-panel-premium {
    transform: translateY(-6px) scale(1.015) !important;
  }
  
  .roadmap-crown-sticker {
    top: -24px;
    right: -10px;
    transform: scale(0.8) rotate(15deg);
  }
}

/* ================= LIVE PAYOUTS TICKER START ================= */
.payout-ticker-container {
  max-height: 480px;
  overflow: hidden;
  position: relative;
  padding: 4px 0;
  /* Premium vertical fade mask */
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}

.payout-ticker-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: scroll-vertical-up 35s linear infinite;
  will-change: transform;
}

.payout-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-vertical-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
/* ================= LIVE PAYOUTS TICKER END ================= */


/* ================= HORIZONTAL PAYOUT MARQUEE START ================= */
.marquee-ticker-container {
  width: 100%;
  overflow: hidden;
}

.animate-marquee {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: marquee-horizontal 38s linear infinite;
  will-change: transform;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ================= HORIZONTAL PAYOUT MARQUEE END ================= */


/* ==========================================================================
   PREMIUM DARK NAVY & WHITE/BLUE THEME OVERRIDES (Clean Web3 Dark Mode)
   ========================================================================== */

/* Keep the page backdrops dark black/navy like the screenshot */
body,
html,
.bg-\[\#050506\],
.bg-\[\#030304\],
.bg-black {
  background-color: var(--bg-black) !important;
  color: var(--text-primary) !important;
}

/* Secondary dark/black background classes mapped to deep navy */
.bg-\[\#0a0a0c\],
.bg-\[\#0c0c0e\],
.bg-\[\#060608\],
.bg-\[\#060608\]\/90,
.bg-\[\#070709\],
.bg-\[\#0f0f12\],
.bg-zinc-950,
.bg-slate-950,
.bg-\[\#09090b\],
.bg-navy-950,
.bg-navy-900,
.bg-navy-950\/40,
.bg-navy-900\/90,
.bg-navy-950\/95 {
  background-color: var(--bg-dark) !important;
}

/* Card, panel and glass elements mapped to sleek dark sapphire panels */
.bg-\[\#0e0d0a\],
.bg-\[\#0e0d0a\]\/95,
.bg-\[\#0e0d0a\]\/70,
.bg-\[\#0e0d0a\]\/75,
.bg-\[\#0e0d0a\]\/50,
.bg-\[\#0d0d12\],
.bg-\[\#0a0a0c\]\/40,
.bg-zinc-900,
.bg-slate-900,
.bg-slate-800,
.glass-panel,
.glass-panel-premium,
.faq-container-unified {
  background-color: rgba(11, 19, 41, 0.8) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid var(--border-color) !important;
}

/* Drawer and mobile drawers blur styling */
.mobile-drawer-blur,
.mobile-drawer-blur.hidden {
  background-color: rgba(6, 15, 36, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-color: var(--border-color) !important;
}

/* --- Typography and Contrast Overrides --- */
/* Forces all white texts in templates to render as crisp white! This resolves the invisible text! */
.text-white,
.text-white-keep,
.text-slate-100, .text-slate-200, .text-slate-300,
.text-zinc-100, .text-zinc-200, .text-zinc-300,
.text-gray-100, .text-gray-200, .text-gray-300,
h1, h2, h3, h4, h5, h6,
.font-heading,
.font-heading.text-white,
.advantage-heading {
  color: #ffffff !important;
}

/* Muted descriptions to be sleek readable slate gray */
.text-\[\#a1a1aa\],
.text-gray-400,
.text-zinc-400,
.text-slate-400,
.text-slate-500,
.text-zinc-500,
.text-gray-500,
.text-\[\#61616a\],
.advantage-sub {
  color: var(--text-secondary) !important; /* `#94a3b8` - light slate gray! */
}

/* --- Brand Color & Accent Overrides (Gold to Blue/Cyan) --- */
.text-gold-primary,
.text-\[\#00e5ff\],
.hover\:text-gold-primary:hover,
.group-hover\:text-gold-light:hover,
.text-gold-light,
.text-\[\#38bdf8\],
.text-brand,
.text-brand-light,
.hover\:text-brand-light:hover {
  color: var(--gold-primary) !important;
}

.bg-gold-primary,
.bg-\[\#00e5ff\],
.bg-brand,
.bg-brand-dark,
.hover\:bg-brand-dark:hover,
.hover\:bg-brand-light:hover {
  background-color: var(--gold-dark) !important;
}

.btn-primary {
  background: var(--gold-gradient) !important;
  color: #ffffff !important;
  box-shadow: var(--gold-glow) !important;
  border: none !important;
}

.btn-primary:hover {
  background: var(--gold-gradient-hover) !important;
  box-shadow: var(--gold-glow-strong) !important;
}

.btn-secondary {
  background: rgba(56, 189, 248, 0.05) !important;
  border: 1px solid var(--border-color) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(56, 189, 248, 0.12) !important;
  border-color: var(--gold-primary) !important;
  color: var(--gold-primary) !important;
}

/* Borders */
[class*="border-white/"],
[class*="border-slate-"],
[class*="border-zinc-"],
[class*="border-gray-"],
.border-gold-primary\/20,
.border-gold-primary\/25,
.border-gold-primary\/30,
.border-gold-primary\/35,
.border-gold-primary\/12,
.border-gold-primary\/15,
.border-white\/5,
.border-white\/10,
.border-white\/\[0\.06\],
.border-transparent {
  border-color: var(--border-color) !important;
}

.border-gold-primary,
.border-\[\#00e5ff\],
.border-\[\#00e5ff\]\/20,
.border-blue-500\/20,
.border-brand,
.border-brand\/20,
.border-brand\/50 {
  border-color: var(--gold-primary) !important;
}

/* Hover Border */
.hover\:border-gold-primary\/30:hover,
.hover\:border-gold-primary\/35:hover,
.group-hover\:border-gold-primary\/45:hover,
.glass-panel:hover {
  border-color: var(--border-color-hover) !important;
}

/* Universal faint backdrop opacity overrides */
[class*="bg-white/5"],
[class*="bg-white/\[0\.0"],
[class*="bg-white/10"],
[class*="bg-white/20"],
.bg-gold-primary\/8,
.bg-gold-primary\/6,
.bg-gold-primary\/10,
.bg-\[\#00e5ff\]\/10,
.bg-blue-500\/10,
.bg-brand\/10,
.bg-brand\/5 {
  background-color: rgba(56, 189, 248, 0.06) !important;
}

/* --- SVG, Lord Jesus Christ Statue & Visuals --- */
.ht-blob-1 {
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.18), transparent 70%) !important;
}
.ht-blob-2 {
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.15), transparent 70%) !important;
}
.ht-lord-bg-img {
  filter: drop-shadow(0 0 35px rgba(37, 99, 235, 0.45)) !important;
}
.ht-particles circle {
  fill: var(--gold-primary) !important;
}
.bg-grid {
  display: none !important;
}

/* SVG Logo Color Overrides using standard CSS selectors */
#lfGoldGradient stop:nth-child(1) { stop-color: #1d4ed8 !important; }
#lfGoldGradient stop:nth-child(2) { stop-color: #2563eb !important; }
#lfGoldGradient stop:nth-child(3) { stop-color: #38bdf8 !important; }
#lfGoldGradient stop:nth-child(4) { stop-color: #60a5fa !important; }
#lfGoldGradient stop:nth-child(5) { stop-color: #1d4ed8 !important; }

#lfBoxBg stop:nth-child(1) { stop-color: #0b1329 !important; }
#lfBoxBg stop:nth-child(2) { stop-color: #060f24 !important; }
#lfBoxBg stop:nth-child(3) { stop-color: #030712 !important; }

svg[style*="rgba(0, 229, 255"] {
  filter: drop-shadow(0 0 16px rgba(56, 189, 248, 0.4)) !important;
}

/* --- Dashboard Specific Sidebar and Header overrides --- */
#sidebar {
  background-color: #070d1e !important;
  border-right: 1px solid rgba(56, 189, 248, 0.1) !important;
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.35) !important;
}

#sidebar .text-gray-400 {
  color: var(--text-secondary) !important;
}

#sidebar a:hover,
#sidebar .hover\:text-white:hover {
  color: #ffffff !important;
  background-color: rgba(56, 189, 248, 0.08) !important;
}

/* Current active item in Sidebar */
#sidebar .bg-\[\#00e5ff\]\/10 {
  background-color: rgba(56, 189, 248, 0.15) !important;
  color: #ffffff !important;
  border-color: rgba(56, 189, 248, 0.25) !important;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.15) !important;
}

header.h-20 {
  background-color: rgba(7, 13, 30, 0.85) !important;
  border-bottom: 1px solid rgba(56, 189, 248, 0.1) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
}

header.h-20 .text-white {
  color: #ffffff !important;
}

/* Fix active navigation states in main landing page */
nav.fixed {
  border-bottom-color: rgba(56, 189, 248, 0.08) !important;
}
nav.fixed.bg-\[\#0a0a0c\]\/80 {
  background-color: rgba(3, 7, 18, 0.9) !important;
  border-color: rgba(56, 189, 248, 0.15) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4), 0 0 15px rgba(56, 189, 248, 0.05) !important;
}

/* --- Roadmap / Cards --- */
.glass-panel-premium {
  border-color: rgba(56, 189, 248, 0.1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}
.roadmap-step-card-wrapper:hover .glass-panel-premium {
  border-color: var(--gold-primary) !important;
  box-shadow: 0 20px 45px rgba(56, 189, 248, 0.15), 0 0 35px rgba(56, 189, 248, 0.25) !important;
  background: rgba(15, 28, 63, 0.9) !important;
}
.highlighted-royal-card {
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(11, 21, 46, 0.9) 100%) !important;
}

.step-watermark {
  color: rgba(56, 189, 248, 0.02) !important;
}
.roadmap-step-card-wrapper:hover .step-watermark {
  color: rgba(56, 189, 248, 0.04) !important;
}

.roadmap-crown-sticker {
  filter: drop-shadow(0 0 16px rgba(56, 189, 248, 0.35)) !important;
}
.crown-icon-container {
  background: rgba(56, 189, 248, 0.08) !important;
  border-color: rgba(56, 189, 248, 0.2) !important;
}

/* Clean payouts and charts */
.payout-ticker-container {
  background: transparent !important;
}

.shadow-brand\/20,
.shadow-brand\/30,
.shadow-brand\/40 {
  box-shadow: var(--gold-glow) !important;
}

/* Premium Form Elements styling */
input,
select,
textarea {
  background-color: #070d1e !important;
  color: #ffffff !important;
  border: 1px solid rgba(56, 189, 248, 0.15) !important;
  border-radius: 12px !important;
  padding: 12px 16px;
  font-size: 14px !important;
  transition: all 0.25s ease !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-primary) !important;
  outline: none !important;
  box-shadow: 0 0 0 3.5px rgba(56, 189, 248, 0.25) !important;
}

/* Specific overrides to prevent global input styling from breaking FAQ search bar */
#faq-search-input {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: 16px !important;
  box-shadow: none !important;
}
#faq-search-input:focus {
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Overrides for footer newsletter input to prevent global styling conflict */
footer input[type="email"] {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 8px 12px !important;
  font-size: 12px !important;
  box-shadow: none !important;
}
footer input[type="email"]:focus {
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}


/* Modern clean tables */
table {
  background-color: rgba(11, 21, 46, 0.6) !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1px solid rgba(56, 189, 248, 0.1) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

th {
  background-color: #070d1e !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid rgba(56, 189, 248, 0.15) !important;
}

td {
  background-color: transparent !important;
  color: var(--text-secondary) !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid rgba(56, 189, 248, 0.06) !important;
  font-size: 13.5px !important;
}

tr:last-child td {
  border-bottom: none !important;
}

tr:hover td {
  background-color: rgba(56, 189, 248, 0.04) !important;
}

/* Modals & Dialog elements */
[class*="modal"]:not(#promo-modal):not(#promo-modal-card):not(#certificate-modal-overlay):not(#modal-coupon-code):not(#modal-copy-btn-icon),
.modal-content,
[id*="modal"]:not(#promo-modal):not(#promo-modal-card):not(#certificate-modal-overlay):not(#modal-coupon-code):not(#modal-copy-btn-icon) {
  background-color: #0b1329 !important;
  color: #ffffff !important;
  border: 1px solid rgba(56, 189, 248, 0.2) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5) !important;
}

/* Custom styles for Promo Modal & Overlays to prevent background blackout and enable blur */
#promo-modal {
  background-color: rgba(5, 5, 6, 0.6) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: none !important;
  box-shadow: none !important;
}

#promo-modal-card {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

#certificate-modal-overlay {
  border: none !important;
  box-shadow: none !important;
}

/* Fix for promo modal child elements matching [id*="modal"] selector */
#modal-coupon-code {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

#modal-copy-btn-icon {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Lucide & FontAwesome Universal Icon Adjustment */
i.fa-solid,
i.fa-regular,
i.fa-brands,
[data-lucide] {
  color: var(--text-secondary) !important;
  transition: color 0.25s ease !important;
}

/* Exceptional cases for brand indicators and primary buttons */
.btn-primary i,
.btn i,
.btn-sm i,
.step-tag i,
.text-brand i,
.text-brand-light i,
.text-gold-primary i,
.w-7.h-7.rounded-lg i,
.active-lang-flag,
.badge-blue i,
.message-toast i,
.text-white-keep i {
  color: inherit !important;
}

.btn-primary:hover i,
.btn:hover i {
  color: inherit !important;
}

/* Custom indicator buttons & badges */
.badge-blue {
  background-color: rgba(56, 189, 248, 0.08) !important;
  color: var(--gold-primary) !important;
  border: 1px solid rgba(56, 189, 248, 0.2) !important;
}

/* Alert/Success indicator fixes */
.bg-emerald-500\/10,
.bg-emerald-500\/5 {
  background-color: rgba(16, 185, 129, 0.08) !important;
  color: #10b981 !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
}

.bg-rose-500\/10,
.bg-rose-500\/5 {
  background-color: rgba(244, 63, 94, 0.08) !important;
  color: #f43f5e !important;
  border: 1px solid rgba(244, 63, 94, 0.15) !important;
}

/* Floating chat & widget fixes */
#crisp-chat-box {
  filter: drop-shadow(0 12px 30px rgba(56, 189, 248, 0.12)) !important;
}

/* Specific Page Section Adjustments for Advantage Heading and templates */
.advantage-section h2.advantage-heading {
  color: #ffffff !important;
}
.advantage-section h2.advantage-heading span {
  background: var(--gold-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  transition: all 0.25s ease !important;
}

/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar {
  display: none !important;
}
.no-scrollbar {
  -ms-overflow-style: none !important;  /* IE and Edge */
  scrollbar-width: none !important;  /* Firefox */
}

/* Trader Bento Card custom styling */
.trader-card-premium {
  background: rgba(11, 21, 46, 0.45) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(56, 189, 248, 0.15) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}
.trader-card-premium:hover {
  border-color: rgba(56, 189, 248, 0.5) !important;
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.12), 0 0 25px rgba(56, 189, 248, 0.18) !important;
  transform: translateY(-4px) scale(1.01) !important;
  background: rgba(13, 27, 58, 0.75) !important;
}
.trader-stat-grid {
  border-color: rgba(56, 189, 248, 0.1) !important;
}
.trader-stat-item {
  border-right: 1px solid rgba(56, 189, 248, 0.1);
}
.trader-stat-item:last-child {
  border-right: none;
}
.text-neon-cyan {
  color: #38bdf8 !important;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}
.text-neon-green {
  color: #10b981 !important;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* Futuristic Web3 Calculator Custom Styling */
.calc-glass-container {
  background: rgba(6, 11, 24, 0.4) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(56, 189, 248, 0.12) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65), inset 0 0 40px rgba(56, 189, 248, 0.02) !important;
  transition: border-color 0.5s ease, box-shadow 0.5s ease !important;
}

.calc-glass-container:hover {
  border-color: rgba(56, 189, 248, 0.25) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(56, 189, 248, 0.04) !important;
}

/* Tier and Model option cards */
.calc-option-card {
  background: rgba(6, 10, 20, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 14px !important;
  color: var(--text-secondary) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.calc-option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #38bdf8, #2563eb);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.8), 0 0 25px rgba(56, 189, 248, 0.4);
}

.calc-option-card:hover {
  border-color: rgba(56, 189, 248, 0.5) !important;
  background: rgba(56, 189, 248, 0.08) !important;
  color: #ffffff !important;
}

.calc-option-card.active {
  border-color: transparent !important;
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35) !important;
}

.calc-option-card.active:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%) !important;
  box-shadow: 0 6px 24px rgba(56,189,248,0.4) !important;
}

.calc-option-card.active::before {
  transform: scaleY(0) !important;
}

/* Micro LED active dot indicator inside option cards */
.calc-option-card .led-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a1a1aa;
  display: inline-block;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.calc-option-card.active .led-indicator {
  background: #ffffff !important;
  box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff !important;
  animation: pulse-glow-led 1.5s infinite alternate ease-in-out;
}

@keyframes pulse-glow-led {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
    box-shadow: 0 0 8px #38bdf8, 0 0 15px #38bdf8;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 14px #38bdf8, 0 0 25px #38bdf8, 0 0 35px #38bdf8;
  }
}

/* Active option card badge overrides */
.calc-option-card.active [class*="text-[#10b981]"] {
  background: rgba(16, 185, 129, 0.25) !important;
  border-color: rgba(16, 185, 129, 0.5) !important;
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}
.calc-option-card.active [class*="text-[#38bdf8]"] {
  background: rgba(56, 189, 248, 0.25) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
}
.calc-option-card.active [class*="text-[#a855f7]"] {
  background: rgba(168, 85, 247, 0.25) !important;
  border-color: rgba(168, 85, 247, 0.5) !important;
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}
.calc-option-card.active [class*="text-gold-primary"] {
  background: rgba(245, 158, 11, 0.25) !important;
  border-color: rgba(245, 158, 11, 0.5) !important;
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

/* Account Size Buttons */
.calc-size-btn {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px !important;
  color: var(--text-secondary) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 16px 8px !important;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

.calc-size-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(to right, #38bdf8, #2563eb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.8), 0 0 25px rgba(56, 189, 248, 0.4);
}

.calc-size-btn:hover {
  border-color: rgba(56, 189, 248, 0.5) !important;
  background: rgba(56, 189, 248, 0.08) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.calc-size-btn.active {
  border: 1px solid transparent !important;
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35) !important;
}

.calc-size-btn.active:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%) !important;
  box-shadow: 0 6px 24px rgba(56,189,248,0.4) !important;
}

.calc-size-btn.active::before {
  transform: scaleX(0) !important;
}

/* Pricing Comparison Table CSS */
#calc-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(6, 11, 24, 0.2);
}

#calc-comparison-table th {
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  font-family: var(--font-heading), sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#calc-comparison-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 16px 24px;
  vertical-align: middle;
}

#calc-comparison-table tbody tr:hover {
  background: rgba(56, 189, 248, 0.02);
}

/* Tooltip style */
#calc-comparison-table .group:hover .absolute {
  opacity: 1;
  pointer-events: auto;
}

/* Popular badge animation */
@keyframes badge-float {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -2px);
  }
}
.calc-size-badge {
  animation: badge-float 3s ease-in-out infinite;
}

/* Adjust size grid wrapper */
.calc-size-btn {
  min-width: 110px;
}

/* Shimmer reflection animation for CTA */
.btn-premium-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-premium-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.13);
  transform: rotate(30deg);
  transition: none;
  animation: shimmer-sweep 3.5s infinite ease-in-out;
}

@keyframes shimmer-sweep {
  0% {
    left: -60%;
  }
  15%, 100% {
    left: 140%;
  }
}




/* ==========================================================================
   FUTURISTIC WEB3 TRADING RULES CUSTOM STYLING
   ========================================================================== */

/* Outer Cockpit Container Panels */
.rules-container-allowed {
  background: rgba(6, 17, 14, 0.45) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 0 30px rgba(16, 185, 129, 0.01) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.rules-container-allowed:hover {
  border-color: rgba(16, 185, 129, 0.35) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(16, 185, 129, 0.06) !important;
}

.rules-container-prohibited {
  background: rgba(18, 6, 8, 0.45) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(239, 68, 68, 0.15) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 0 30px rgba(239, 68, 68, 0.01) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.rules-container-prohibited:hover {
  border-color: rgba(239, 68, 68, 0.35) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(239, 68, 68, 0.06) !important;
}

/* Cybermatic Micro Cards */
.rules-card {
  background: rgba(5, 5, 8, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-radius: 14px !important;
  padding: 22px 20px !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Accent slide-in border on hover */
.rules-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease;
}

/* Card Technical Header */
.rules-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.rules-tech-code {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  font-weight: 700;
  font-family: 'Courier New', Courier, monospace;
}

.rules-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.rules-badge-allowed {
  background: rgba(16, 185, 129, 0.08) !important;
  color: #10b981 !important;
  border-color: rgba(16, 185, 129, 0.2) !important;
  text-shadow: 0 0 6px rgba(16, 185, 129, 0.25);
}

.rules-badge-prohibited {
  background: rgba(239, 68, 68, 0.08) !important;
  color: #ef4444 !important;
  border-color: rgba(239, 68, 68, 0.2) !important;
  text-shadow: 0 0 6px rgba(239, 68, 68, 0.25);
}

/* Card Interactive Body */
.rules-card-body {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.rules-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.rules-icon-allowed {
  background: rgba(16, 185, 129, 0.04) !important;
  color: #10b981 !important;
  border: 1px solid rgba(16, 185, 129, 0.08) !important;
}

.rules-icon-prohibited {
  background: rgba(239, 68, 68, 0.04) !important;
  color: #ef4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.08) !important;
}

.rules-card-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rules-card-title {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
}

.rules-card-desc {
  color: var(--text-secondary) !important;
  font-size: 12.5px !important;
  line-height: 1.5 !important;
}

/* --- Allowed Hover Action --- */
.rules-card-allowed::before {
  background: #10b981 !important;
}

.rules-card-allowed:hover {
  border-color: rgba(16, 185, 129, 0.25) !important;
  background: rgba(16, 185, 129, 0.03) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45), 0 4px 15px rgba(16, 185, 129, 0.08) !important;
}

.rules-card-allowed:hover::before {
  transform: scaleY(1);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

.rules-card-allowed:hover .rules-icon-allowed {
  background: rgba(16, 185, 129, 0.12) !important;
  border-color: rgba(16, 185, 129, 0.25) !important;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
  transform: scale(1.06);
}

.rules-card-allowed:hover .rules-tech-code {
  color: #10b981 !important;
}

/* --- Prohibited Hover Action --- */
.rules-card-prohibited::before {
  background: #ef4444 !important;
}

.rules-card-prohibited:hover {
  border-color: rgba(239, 68, 68, 0.25) !important;
  background: rgba(239, 68, 68, 0.03) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45), 0 4px 15px rgba(239, 68, 68, 0.08) !important;
}

.rules-card-prohibited:hover::before {
  transform: scaleY(1);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

.rules-card-prohibited:hover .rules-icon-prohibited {
  background: rgba(239, 68, 68, 0.12) !important;
  border-color: rgba(239, 68, 68, 0.25) !important;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.3);
  transform: scale(1.06);
}

-webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 0 30px rgba(16, 185, 129, 0.01) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.rules-container-allowed:hover {
  border-color: rgba(16, 185, 129, 0.35) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(16, 185, 129, 0.06) !important;
}

.rules-container-prohibited {
  background: rgba(18, 6, 8, 0.45) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(239, 68, 68, 0.15) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 0 30px rgba(239, 68, 68, 0.01) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.rules-container-prohibited:hover {
  border-color: rgba(239, 68, 68, 0.35) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(239, 68, 68, 0.06) !important;
}

/* Cybermatic Micro Cards */
.rules-card {
  background: rgba(5, 5, 8, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-radius: 14px !important;
  padding: 22px 20px !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Accent slide-in border on hover */
.rules-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease;
}

/* Card Technical Header */
.rules-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.rules-tech-code {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  font-weight: 700;
  font-family: 'Courier New', Courier, monospace;
}

.rules-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.rules-badge-allowed {
  background: rgba(16, 185, 129, 0.08) !important;
  color: #10b981 !important;
  border-color: rgba(16, 185, 129, 0.2) !important;
  text-shadow: 0 0 6px rgba(16, 185, 129, 0.25);
}

.rules-badge-prohibited {
  background: rgba(239, 68, 68, 0.08) !important;
  color: #ef4444 !important;
  border-color: rgba(239, 68, 68, 0.2) !important;
  text-shadow: 0 0 6px rgba(239, 68, 68, 0.25);
}

/* Card Interactive Body */
.rules-card-body {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.rules-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.rules-icon-allowed {
  background: rgba(16, 185, 129, 0.04) !important;
  color: #10b981 !important;
  border: 1px solid rgba(16, 185, 129, 0.08) !important;
}

.rules-icon-prohibited {
  background: rgba(239, 68, 68, 0.04) !important;
  color: #ef4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.08) !important;
}

.rules-card-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rules-card-title {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
}

.rules-card-desc {
  color: var(--text-secondary) !important;
  font-size: 12.5px !important;
  line-height: 1.5 !important;
}

/* --- Allowed Hover Action --- */
.rules-card-allowed::before {
  background: #10b981 !important;
}

.rules-card-allowed:hover {
  border-color: rgba(16, 185, 129, 0.25) !important;
  background: rgba(16, 185, 129, 0.03) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45), 0 4px 15px rgba(16, 185, 129, 0.08) !important;
}

.rules-card-allowed:hover::before {
  transform: scaleY(1);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

.rules-card-allowed:hover .rules-icon-allowed {
  background: rgba(16, 185, 129, 0.12) !important;
  border-color: rgba(16, 185, 129, 0.25) !important;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
  transform: scale(1.06);
}

.rules-card-allowed:hover .rules-tech-code {
  color: #10b981 !important;
}

/* --- Prohibited Hover Action --- */
.rules-card-prohibited::before {
  background: #ef4444 !important;
}

.rules-card-prohibited:hover {
  border-color: rgba(239, 68, 68, 0.25) !important;
  background: rgba(239, 68, 68, 0.03) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45), 0 4px 15px rgba(239, 68, 68, 0.08) !important;
}

.rules-card-prohibited:hover::before {
  transform: scaleY(1);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

.rules-card-prohibited:hover .rules-icon-prohibited {
  background: rgba(239, 68, 68, 0.12) !important;
  border-color: rgba(239, 68, 68, 0.25) !important;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.3);
  transform: scale(1.06);
}

.rules-card-prohibited:hover .rules-tech-code {
  color: #ef4444 !important;
}


/* ================= SUPPORT ORBITAL NETWORK STYLES ================= */
.support-visual-container {
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 532px;
  margin: 0 auto;
  overflow: visible;
}

.support-visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

/* Orbit Spins */
@keyframes orbit-spin-clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes orbit-spin-counter {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.orbit-left {
  transform-origin: 320px 225px;
  animation: orbit-spin-clockwise 35s linear infinite;
}
.orbit-middle {
  transform-origin: 550px 225px;
  animation: orbit-spin-counter 40s linear infinite;
}
.orbit-right {
  transform-origin: 780px 225px;
  animation: orbit-spin-clockwise 38s linear infinite;
}

.brand-node-wrapper {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 5;
  transition: z-index 0.3s;
}

.brand-node-wrapper:hover {
  z-index: 15;
}

/* Outer wrapper float animations */
.brand-node-float-v1 {
  animation: float-vertical-a 4s ease-in-out infinite;
}
.brand-node-float-v2 {
  animation: float-vertical-b 4.5s ease-in-out infinite;
}
.brand-node-float-h1 {
  animation: float-horizontal-a 5s ease-in-out infinite;
}
.brand-node-float-h2 {
  animation: float-horizontal-b 4.8s ease-in-out infinite;
}

@keyframes float-vertical-a {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-6px); }
}
@keyframes float-vertical-b {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(6px); }
}
@keyframes float-horizontal-a {
  0%, 100% { transform: translate(-50%, -50%) translateX(0); }
  50% { transform: translate(-50%, -50%) translateX(-6px); }
}
@keyframes float-horizontal-b {
  0%, 100% { transform: translate(-50%, -50%) translateX(0); }
  50% { transform: translate(-50%, -50%) translateX(6px); }
}

.brand-node {
  width: 72px;
  height: 72px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18), 0 0 12px rgba(56, 189, 248, 0.06);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.brand-node-wrapper:hover .brand-node {
  transform: scale(1.18);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.35), 0 0 18px rgba(56, 189, 248, 0.22);
}

.brand-node svg, .brand-node img {
  width: 32px;
  height: 32px;
  display: block;
  transition: transform 0.3s ease;
}

.brand-node-wrapper:hover .brand-node svg {
  transform: scale(1.05) rotate(5deg);
}

.support-center-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #ffffff 0%, #f0f4f8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 38px rgba(56, 189, 248, 0.32), 0 0 45px rgba(56, 189, 248, 0.22);
  z-index: 10;
  cursor: default;
  border: 5px solid rgba(56, 189, 248, 0.08);
  animation: center-pulse 3s infinite ease-in-out;
}

@keyframes center-pulse {
  0%, 100% {
    box-shadow: 0 12px 38px rgba(56, 189, 248, 0.32), 0 0 45px rgba(56, 189, 248, 0.22);
  }
  50% {
    box-shadow: 0 12px 45px rgba(56, 189, 248, 0.45), 0 0 55px rgba(56, 189, 248, 0.32);
  }
}

/* Support center node icon styling */
.support-center-node svg {
  width: 60px !important;
  height: 60px !important;
  color: #38bdf8;
}

/* Responsive visual scaling */
@media (max-width: 1300px) {
  .support-visual-wrapper {
    transform: scale(0.85);
    margin: -40px 0;
  }
}
@media (max-width: 1024px) {
  .support-visual-wrapper {
    transform: scale(0.72);
    margin: -74px 0;
  }
}
@media (max-width: 768px) {
  .support-visual-wrapper {
    transform: scale(0.58);
    margin: -110px 0;
  }
}
@media (max-width: 640px) {
  /* Hide the large animated orbital graphic on mobile */
  .support-visual-container {
    display: none;
  }
  /* Show the mobile orbital layout instead */
  .support-mobile-orbital {
    display: block !important;
  }
}

/* ===== Mobile Orbital Layout (smob- prefix) ===== */
.support-mobile-orbital {
  display: none;
  position: relative;
  width: 260px;
  height: 220px;
  margin: 0 auto;
  overflow: visible;
}

/* Orbit ring decorations — hidden on mobile */
.smob-ring {
  display: none;
}

/* Center node */
.smob-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  background: radial-gradient(circle, #ffffff 0%, #f0f4f8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(56, 189, 248, 0.38), 0 0 32px rgba(56, 189, 248, 0.2);
  z-index: 10;
  border: 3px solid rgba(56, 189, 248, 0.1);
  animation: center-pulse 3s infinite ease-in-out;
}

.smob-center svg {
  width: 36px;
  height: 36px;
}

/* Icon nodes - base styles */
.smob-node {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 5;
  cursor: pointer;
  text-decoration: none;
  transition: z-index 0.2s;
}

.smob-icon {
  width: 46px;
  height: 46px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16), 0 0 8px rgba(56, 189, 248, 0.07);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
}

.smob-node:hover .smob-icon {
  transform: scale(1.18);
  box-shadow: 0 8px 22px rgba(56, 189, 248, 0.38), 0 0 14px rgba(56, 189, 248, 0.22);
}

.smob-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Positions — tighter layout fitting 260×220px container */
.smob-tl { left: 28%; top: 16%; animation: float-vertical-a 4s ease-in-out infinite; }
.smob-tr { left: 72%; top: 16%; animation: float-vertical-b 4.5s ease-in-out infinite; }
.smob-ml { left: 8%;  top: 50%; animation: float-horizontal-a 5s ease-in-out infinite; }
.smob-mr { left: 92%; top: 50%; animation: float-horizontal-b 4.8s ease-in-out infinite; }
.smob-bl { left: 28%; top: 84%; animation: float-vertical-b 4.2s ease-in-out infinite; }
.smob-br { left: 72%; top: 84%; animation: float-vertical-a 4.7s ease-in-out infinite; }

/* Custom Summer Event Floating Animations */
@keyframes float-animation {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float-animation 6s ease-in-out infinite;
}


/* Custom Footer Grid System for Mobile Side-by-Side */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-col-brand {
  grid-column: span 2;
}

.footer-col-challenges {
  grid-column: span 1;
}

.footer-col-info {
  grid-column: span 1;
}

.footer-col-newsletter {
  grid-column: span 2;
}

@media (min-width: 640px) {
  .footer-col-brand {
    grid-column: span 1;
  }
  .footer-col-newsletter {
    grid-column: span 1;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS OVERRIDES FOR THE CHALLENGES CALCULATOR WIDGET
   ========================================================================== */
@media (max-width: 640px) {
  /* Reduce outer container padding to maximize screen space */
  .calc-glass-container {
    padding: 16px !important;
    border-radius: 20px !important;
    gap: 20px !important;
  }

  /* Make Evaluation Model tabs compact and side-by-side */
  .calc-model-btn {
    min-width: 0 !important;
    width: 100% !important;
    padding: 10px 4px !important;
    border-radius: 10px !important;
  }
  .calc-model-btn span.font-heading {
    font-size: 13px !important;
  }
  .calc-model-btn span.font-mono {
    font-size: 8px !important;
    padding: 1px 4px !important;
    margin-top: 3px !important;
  }

  /* Account Sizes Grid: 2 columns */
  #calc-sizes-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    max-width: 100% !important;
    padding: 0 4px !important;
  }
  .calc-size-btn {
    min-width: 0 !important;
    width: 100% !important;
    padding: 12px 6px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
  }
  .calc-size-badge {
    font-size: 8px !important;
    padding: 1px 6px !important;
    bottom: -6px !important;
  }

  /* Comparison Details Table compact view */
  #calc-comparison-table th,
  #calc-comparison-table td {
    padding: 10px 6px !important;
    font-size: 11px !important;
  }

  /* Features checks list at the bottom */
  .calc-glass-container .border-t {
    gap: 12px !important;
    font-size: 11px !important;
    padding-top: 16px !important;
  }

  /* Checkout CTA Bar */
  .calc-checkout-bar {
    padding: 14px !important;
    gap: 16px !important;
  }
  .calc-checkout-bar .calc-plan-size {
    font-size: 16px !important;
  }
  .calc-plan-title {
    font-size: 12px !important;
  }
  .calc-checkout-bar .calc-plan-fee {
    font-size: 20px !important;
  }
  .calc-checkout-bar #calc-buy-btn {
    width: 100% !important;
    min-width: 0 !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
  }
}

/* ==========================================================================
   ULTRA-PREMIUM REDESIGNED FOOTER STYLES
   ========================================================================== */
.footer-neon-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-primary), var(--gold-light), var(--gold-dark), transparent);
  background-size: 200% auto;
  animation: footer-neon-slide 6s linear infinite;
}
@keyframes footer-neon-slide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.footer-glow-1 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: drift 15s ease-in-out infinite alternate;
}
.footer-glow-2 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  pointer-events: none;
  animation: drift 20s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, -50px) scale(1.1); }
}

.footer-logo-container {
  position: relative;
}
.footer-logo-aura {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 60%);
  filter: blur(8px);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}
.footer-logo-container:hover .footer-logo-aura {
  opacity: 1;
  animation: aura-pulse 2s infinite alternate;
}
@keyframes aura-pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 0.9; }
}

.footer-link-premium {
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.footer-link-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.footer-link-premium:hover {
  color: #ffffff !important;
  transform: translateX(4px);
}
.footer-link-premium:hover::after {
  width: 100%;
}

.footer-subscribe-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.footer-subscribe-container:focus-within {
  border-color: rgba(56, 189, 248, 0.4) !important;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.footer-subscribe-btn {
  transition: all 0.3s ease;
}
.footer-subscribe-btn:hover i {
  animation: mail-bounce 0.6s ease infinite alternate;
}
@keyframes mail-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-3px); }
}

.footer-social-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}
.footer-social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.footer-social-btn:hover {
  border-color: transparent !important;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
  transform: translateY(-3px);
}
.footer-social-btn:hover::before {
  opacity: 1;
}
.footer-social-btn:hover i,
.footer-social-btn:hover svg {
  color: #ffffff !important;
}

.footer-status-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: dot-blink 1.8s infinite;
}
@keyframes dot-blink {
  0% { opacity: 0.4; box-shadow: 0 0 4px #10b981; }
  50% { opacity: 1; box-shadow: 0 0 12px #10b981; }
  100% { opacity: 0.4; box-shadow: 0 0 4px #10b981; }
}

.footer-badge-glass {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-badge-glass:hover {
  border-color: rgba(56, 189, 248, 0.3) !important;
  background: rgba(56, 189, 248, 0.04) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3), 0 0 10px rgba(56,189,248,0.1);
}

/* Cyber grid and Command Card visual overrides */
.footer-cyber-grid {
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.015) 1px, transparent 1px);
  background-size: 32px 32px;
}

.footer-command-card {
  background: linear-gradient(135deg, rgba(6, 8, 19, 0.7) 0%, rgba(3, 4, 10, 0.85) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.035) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.75), inset 0 1px 1px rgba(255, 255, 255, 0.02) !important;
}

/* ==========================================================================
   HOW IT WORKS PAGE PREMIUM REDESIGN
   ========================================================================== */

/* Road Portal Container */
.roadmap-portal-container {
  background: rgba(6, 8, 19, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
}

/* Custom Interactive Tabs */
.roadmap-tab-btn {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.roadmap-tab-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: transparent;
  transition: all 0.3s ease;
}

.roadmap-tab-btn.active {
  background: rgba(56, 189, 248, 0.04);
  border-color: rgba(56, 189, 248, 0.2) !important;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.08);
}

.roadmap-tab-btn.active::before {
  background: var(--gold-gradient);
}

/* Active phase number glows cyan */
.roadmap-tab-btn.active .roadmap-phase-number {
  background: linear-gradient(135deg, #00e5ff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1 !important;
  text-shadow: none;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.4));
}

/* Autoplay timer line indicators */
.roadmap-timer-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.02);
}

.roadmap-timer-fill {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  transition: width 0.1s linear;
}

/* Step content viewport frame */
.roadmap-viewport-frame {
  background: linear-gradient(135deg, rgba(8, 11, 26, 0.8) 0%, rgba(4, 5, 13, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02);
}

/* Circular gauges styling */
.radial-gauge-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.radial-gauge-svg {
  transform: rotate(-90deg);
}

.radial-gauge-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.03);
  stroke-width: 6;
}

.radial-gauge-fill {
  fill: none;
  stroke-width: 6;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 0.8s ease-in-out;
  stroke-linecap: round;
}

/* Benefit micro-dashboard cards */
.benefit-card-premium {
  background: rgba(6, 8, 19, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card-premium:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.25) !important;
  background: rgba(56, 189, 248, 0.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(56, 189, 248, 0.05);
}

.benefit-icon-box {
  transition: all 0.3s ease;
}

.benefit-card-premium:hover .benefit-icon-box {
  background: rgba(56, 189, 248, 0.15) !important;
  border-color: rgba(56, 189, 248, 0.4) !important;
  transform: scale(1.05);
}

/* Comparison row highlights */
.comparison-row-premium {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.comparison-row-premium:hover {
  background: rgba(56, 189, 248, 0.02) !important;
  border-bottom-color: rgba(56, 189, 248, 0.1) !important;
}

/* High tech holographic CTA banner */
.hologram-cta-container {
  background: linear-gradient(135deg, rgba(8, 12, 28, 0.9) 0%, rgba(4, 5, 13, 0.95) 100%);
  border: 1px solid rgba(56, 189, 248, 0.15);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(56, 189, 248, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   ROADMAP PHASE NUMBER BOXES
   ========================================================================== */
.roadmap-phase-num {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.roadmap-tab-btn.active .roadmap-phase-num {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(0, 119, 255, 0.08));
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}
.roadmap-tab-btn.active .roadmap-phase-num span {
  background: linear-gradient(135deg, #00e5ff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.roadmap-tab-btn:not(.active):hover .roadmap-phase-num {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   PREMIUM ACCOUNT CARDS — GRADIENT BORDER SYSTEM
   ========================================================================== */
.acct-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.acct-card:hover {
  transform: translateY(-6px);
}
.acct-card-inner {
  background: linear-gradient(160deg, rgba(10, 13, 22, 0.95) 0%, rgba(5, 6, 14, 0.98) 100%);
}

/* Sky / Trial */
.acct-card-sky {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.08);
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.acct-card-sky:hover {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.5), rgba(14, 165, 233, 0.2) 40%, rgba(255,255,255,0.04) 60%);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4), 0 24px 60px rgba(56, 189, 248, 0.12);
}

/* Emerald / Quest */
.acct-card-emerald {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.08);
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.acct-card-emerald:hover {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.5), rgba(16, 185, 129, 0.2) 40%, rgba(255,255,255,0.04) 60%);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.4), 0 24px 60px rgba(52, 211, 153, 0.12);
}

/* Purple / Throne HFT */
.acct-card-purple {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.08);
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.acct-card-purple:hover {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.5), rgba(139, 92, 246, 0.2) 40%, rgba(255,255,255,0.04) 60%);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.4), 0 24px 60px rgba(167, 139, 250, 0.12);
}

/* Gold / Lord (cyan brand) */
.acct-card-gold {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 119, 255, 0.08) 50%, rgba(255,255,255,0.03) 80%);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.2), 0 16px 50px rgba(0, 229, 255, 0.08);
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.acct-card-gold:hover {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.6), rgba(0, 119, 255, 0.3) 40%, rgba(255,255,255,0.04) 60%);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.5), 0 24px 60px rgba(0, 229, 255, 0.18);
}


/* Custom Responsive Rules for Mobile View (Rules Section) */
@media (max-width: 640px) {
  .rules-container-allowed, .rules-container-prohibited {
    padding: 20px 16px !important;
  }
  .rules-card {
    padding: 16px 14px !important;
    gap: 10px !important;
  }
  .rules-card-body {
    gap: 10px !important;
  }
  .rules-icon-wrap {
    padding: 6px !important;
  }
  .rules-icon-wrap svg {
    width: 16px !important;
    height: 16px !important;
  }
  .rules-card-title {
    font-size: 13.5px !important;
  }
  .rules-card-desc {
    font-size: 11.5px !important;
    line-height: 1.4 !important;
  }
}
