:root {
  /* Color Palette - Blue & White Theme */
  --primary-blue: #0047AB;
  /* Cobalt Blue */
  --secondary-blue: #4682B4;
  /* Steel Blue */
  --dark-blue: #002147;
  /* Navy Blue for footer/dark sections */
  --accent-blue: #00BFFF;
  /* Deep Sky Blue for highlights/buttons */
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  /* Light background for sections */
  --text-dark: #333333;
  --text-light: #F0F0F0;
  --text-muted: #6c757d;

  /* Typography */
  --font-family-base: 'Inter', system-ui, -apple-system, sans-serif;
  --font-family-heading: 'Outfit', sans-serif;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--primary-blue);
}

h2,
h2.text-primary {
  font-size: 2rem;
  border-bottom: 2px solid var(--accent-blue);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  color: var(--primary-blue);
  /* Explicitly set */
}

h3,
h3.text-primary {
  font-size: 1.5rem;
  color: var(--text-dark);
  /* Darker Navy for better contrast */
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.bg-light {
  background-color: var(--off-white);
}

.bg-blue {
  background-color: var(--primary-blue);
  color: var(--white);
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-md {
  gap: var(--spacing-md);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: #009ACD;
  /* Slightly darker */
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

.btn-secondary {
  background-color: var(--off-white);
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}

/* Navbar - Premium Gradient & Icons */
.navbar {
  background: linear-gradient(90deg, #001a3a 0%, #0047AB 100%);
  box-shadow: 0 4px 20px rgba(0, 71, 171, 0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  transition: all 0.3s ease;
}

.nav-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); Removed text shadow for image */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 5px 0;
}

.nav-links {
  display: none;
  /* Mobile first hidden */
}

/* Mobile Menu - Slide-in Drawer */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  /* Start off-screen */
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  z-index: 999;
  padding: 2rem 1.5rem;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1rem;
}

.mobile-menu-header .nav-logo {
  color: var(--primary-blue);
  text-shadow: none;
}

/* Mobile Menu List Styles */
.mobile-nav-list {
  gap: 0;
  /* Remove gap, use padding/border instead */
  width: 100%;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s;
}

.mobile-nav-link svg {
  color: var(--primary-blue);
  opacity: 0.8;
}

.mobile-nav-link:active,
.mobile-nav-link:hover {
  background-color: var(--off-white);
  padding-left: 1rem;
  /* Slide effect */
  color: var(--primary-blue);
}

.mobile-nav-link:active svg,
.mobile-nav-link:hover svg {
  opacity: 1;
}

.mobile-nav-link.active {
  background-color: var(--off-white);
  padding-left: 1rem;
  color: var(--primary-blue);
  border-left: 3px solid var(--accent-blue);
  font-weight: 700;
}

.close-menu-btn {
  background: rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.close-menu-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* Nav Open State */
body.nav-open .mobile-menu {
  right: 0;
}

body.nav-open .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
  display: block;
}

body.nav-open {
  overflow: hidden;
  /* Prevent background scrolling */
}

/* Desktop Styles */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
  }

  .nav-link svg {
    width: 18px;
    height: 18px;
    opacity: 0.8;
    transition: opacity 0.3s;
  }

  /* Desktop Hover Effect - Pill Background */
  .nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
  }

  .nav-link:hover svg {
    opacity: 1;
  }

  .mobile-menu-btn {
    display: none;
  }

  .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
  }

  .nav-link.active svg {
    opacity: 1;
  }
}

.desktop-auth {
  display: flex;
  gap: var(--spacing-sm);
}

.desktop-auth .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
}

.desktop-auth .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.desktop-auth .btn-primary {
  background: var(--accent-blue);
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-auth .btn-primary:hover {
  background: #33ccff;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
}


/* Responsive Typography & Spacing Optimizations */
@media (max-width: 767px) {
  :root {
    --spacing-xl: 3rem;
    /* Reduced section padding */
  }

  .navbar {
    padding: 0.5rem 0;
    /* Tighter padding for mobile header */
  }

  .nav-logo img {
    height: 40px !important;
    /* Resize logo for mobile */
  }

  /* Mobile Auth Button */
  .mobile-auth {
    display: flex !important;
    margin-right: 0.5rem;
  }

  .btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    border-radius: 20px;
  }

  .btn-glow {
    background: var(--accent-blue);
    color: var(--white);
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
    font-weight: 700;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2rem;
    /* Smaller H1 */
    line-height: 1.2;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .grid {
    gap: 1.5rem;
  }

  .feature {
    margin-bottom: 2rem;
  }

  /* Force single column for features on small mobile */
  .section .grid[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  .game-thumb {
    height: 150px;
  }
}


/* =========================================
   SECTION: DAILY CHECK-IN (Secondary Dashboard)
   ========================================= */
.section-daily-checkin {
  background: #f1f5f9;
  /* Light gray background to contrast the card */
  padding: 2rem 0;
}

/* Framed Card for Check-in */
.daily-quest-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  /* Subtle smooth shadow */
  border: 1px solid #e2e8f0;
  max-width: 900px;
  margin: 0 auto;
}

.dashboard-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1rem;
}

.dash-title {
  font-size: 1.25rem;
  color: #1e293b;
  /* Dark text */
  margin-bottom: 2px;
  font-weight: 800;
}

.dash-sub {
  font-size: 0.9rem;
  color: #64748b;
  /* Muted text */
  margin: 0;
}

.text-muted {
  color: #94a3b8;
}

/* Adjust timeline for Light Theme */
.checkin-timeline-container.dashboard-style {
  margin: 0 auto 1rem;
  padding: 0;
}

.checkin-timeline-container.dashboard-style .step-circle {
  width: 42px;
  /* Slightly larger targets */
  height: 42px;
  font-size: 0.9rem;
  background: #f8fafc;
  color: #94a3b8;
  border: 2px solid #e2e8f0;
}

.checkin-timeline-container.dashboard-style .timeline-track {
  top: 21px;
  background: #e2e8f0;
}

.checkin-timeline-container.dashboard-style .step-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

/* Active State Light Theme */
.timeline-step.active .step-circle {
  background: #fff;
  border-color: #fbbf24;
  color: #000;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
}

.timeline-step.active .step-label {
  color: #d97706;
  /* Darker gold for readability on white */
}

/* Claimed State Light Theme */
.timeline-step.claimed .step-circle {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.step-emoji {
  font-size: 1.4rem;
  line-height: 1;
}

.btn-checkin-dash {
  background: #1e293b;
  color: #fff;
  border-radius: 99px;
  padding: 0.75rem 2.5rem;
  font-weight: 700;
  border: none;
  transition: all 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-checkin-dash:hover {
  background: #334155;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}



/* Animated Orbs */
.hero-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: floatOrb 10s infinite ease-in-out alternate;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: #4338ca;
  /* Indigo */
  top: -10%;
  left: -5%;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #be185d;
  /* Pink/Magenta overlay */
  bottom: 10%;
  right: -5%;
  animation-delay: -5s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: #0ea5e9;
  /* Sky Blue */
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  filter: blur(100px);
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 40px) scale(1.1);
  }
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Subtle grid pattern */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  opacity: 0.3;
  z-index: 2;
}

.badge-pill {
  position: relative;
  z-index: 10;
  /* Ensure on top */
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(251, 191, 36, 0.4);
  /* Gold border */
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.text-gold {
  color: #fbbf24;
  font-weight: 700;
}

.text-white-opacity {
  color: rgba(255, 255, 255, 0.8);
}

/* Check-in Grid */
/* Timeline Tracker */
.checkin-timeline-container {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 2rem;
  padding: 0 1rem;
}

.timeline-track {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  z-index: 1;
}

.track-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #fbbf24);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.timeline-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 60px;
}

.step-circle {
  width: 48px;
  height: 48px;
  background: #1e1b4b;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
  position: relative;
}

.step-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}

.step-reward {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

/* States */
.timeline-step.claimed .step-circle {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.timeline-step.active .step-circle {
  background: #1e1b4b;
  border-color: #fbbf24;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.timeline-step.active .step-label,
.timeline-step.active .step-reward {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.step-icon {
  width: 28px;
  height: 28px;
}

.crown-glow {
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

/* Pulse Animation */
.pulse-ring::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #fbbf24;
  border-radius: 50%;
  animation: ripple 1.5s infinite;
  opacity: 0;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* CTA */
.btn-checkin-main {
  background: linear-gradient(to right, #fbbf24, #d97706);
  color: black;
  font-weight: 800;
  padding: 1rem 3rem;
  border-radius: 99px;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.4);
  transition: transform 0.2s;
}

.btn-checkin-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(251, 191, 36, 0.6);
}

/* Horizontal Bonus Scroll */
.hero-bonus-section {
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 0 1rem;
}

.bonus-scroll-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 2rem;
  /* Space for scrollbar/shadow */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE */
  scroll-snap-type: x mandatory;
}

.bonus-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.bonus-scroll-card {
  min-width: 260px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  scroll-snap-align: start;
}

.bonus-scroll-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.card-details h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2px;
}

.card-details p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.card-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s;
}

.bonus-scroll-card:hover .card-arrow {
  transform: translateX(4px);
  color: #fff;
}

/* Card Accents */
.card-welcome {
  border-left: 3px solid #fbbf24;
}

.card-daily {
  border-left: 3px solid #3b82f6;
}

.card-free {
  border-left: 3px solid #ef4444;
}

.card-vip {
  border-left: 3px solid #a855f7;
}

/* Responsive Timeline */
@media (max-width: 600px) {
  .checkin-timeline-container {
    overflow-x: auto;
    padding-bottom: 2rem;
    max-width: 100%;
  }

  .timeline-nodes {
    min-width: 500px;
    /* Ensure scrolling happens */
    padding: 0 1rem;
  }

  .timeline-track {
    width: calc(100% - 2rem);
    left: 1rem;
  }
}

/* Game Cards */
.game-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
  border: 1px solid #eee;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.game-thumb {
  width: 100%;
  height: 180px;
  background-color: #ddd;
  /* Placeholder color */
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.game-info {
  padding: var(--spacing-md);
  text-align: center;
}

.game-title {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

/* Bonus Calculator Widget */
.bonus-calc-widget {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid #334155;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 480px;
  margin: 2rem auto;
  color: white;
}

.calc-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-bottom: 1px solid #334155;
  text-align: center;
}

.calc-header h4 {
  margin: 0;
  color: #ffd700;
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.calc-header p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.calc-body {
  padding: 1.5rem;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #94a3b8;
}

.input-group input {
  width: 100%;
  padding: 0.8rem;
  background: #0f172a;
  border: 2px solid #334155;
  border-radius: 8px;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.input-group input:focus {
  border-color: #ffd700;
  outline: none;
}

.bonus-selector {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: #0f172a;
  padding: 0.3rem;
  border-radius: 8px;
}

.bonus-option {
  flex: 1;
  background: transparent;
  border: none;
  color: #94a3b8;
  padding: 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.bonus-option.active {
  background: #ffd700;
  color: #0f172a;
}

.calc-results {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
}

.result-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.result-row.highlight {
  color: #ffd700;
  font-weight: 500;
}

.result-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.result-total span:last-child {
  color: #4ade80;
  /* Green for total money */
  font-size: 1.3rem;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #001a3a 0%, #002b4d 100%);
  color: #fff;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff, #81c3fd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 1rem 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

/* New Content Styles */
.seo-article {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-dark);
}

.seo-article h1 {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-article h2,
.seo-article h3 {
  color: var(--primary-blue);
  margin-top: 2.5rem;
}

/* Accordion Design */
.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 8px 25px rgba(0, 51, 102, 0.1);
  transform: translateY(-2px);
  border-color: rgba(0, 71, 171, 0.2);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.75rem;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}

.accordion-header .header-title {
  color: var(--dark-blue);
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-family-heading);
}

.accordion-header .icon-chevron {
  color: var(--secondary-blue);
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
  background: rgba(0, 71, 171, 0.05);
  border-radius: 50%;
  padding: 4px;
}

.accordion-header:hover {
  background: var(--off-white);
}

/* Active State */
.accordion-item.active {
  border-color: var(--accent-blue);
  box-shadow: 0 10px 30px rgba(0, 71, 171, 0.15);
}

.accordion-item.active .accordion-header {
  background: linear-gradient(to right, #f4f8ff, #ffffff);
  border-bottom: 1px solid rgba(0, 71, 171, 0.1);
}

.accordion-item.active .header-title {
  color: var(--primary-blue);
}

.accordion-item.active .icon-chevron {
  transform: rotate(180deg);
  color: #fff;
  background: var(--primary-blue);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0.5, 1);
  background: #fff;
}

.content-inner {
  padding: 1.5rem 1.75rem;
  color: #555;
  line-height: 1.6;
}


/* List Styling */
.feature-list {
  margin: 1.5rem 0;
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1rem;
  color: #555;
  font-size: 1.05rem;
  font-weight: 500;
}

/* Custom Checkmark Icon */
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 2px 5px rgba(0, 71, 171, 0.2);
}

/* Strong tag inside list */
.feature-list li strong {
  color: var(--dark-blue);
  display: block;
  /* Make the title sit on its own line if desired, or inline */
  margin-bottom: 0.2rem;
}


/* Example Box Styling */
.example-box {
  background: #f8fbff;
  border-left: 4px solid var(--accent-blue);
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  position: relative;
}

.example-box strong {
  color: var(--accent-blue);
  font-weight: 800;
  margin-right: 0.5rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  display: inline-block;
  background: rgba(0, 200, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Replacing duplicate/old list styles with consolidated one above */

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.text-sm {
  font-size: 0.9rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-xl {
  margin-top: 4rem;
}

/* Removed broken block */

.seo-article p {
  margin-bottom: 1.2rem;
  color: #555;
}

/* Duplicate styles removed. */

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
}

.feature-item h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.text-sm {
  font-size: 0.9rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 1.5rem;
}

.mt-lg {
  margin-top: 2.5rem;
}

.mt-xl {
  margin-top: 4rem;
}

.mb-md {
  margin-bottom: 1.5rem;
}

.mb-lg {
  margin-bottom: 2.5rem;
}

.my-xl {
  margin: 4rem 0;
}

.divider {
  border: 0;
  border-top: 1px solid #eee;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge-18 {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.secure-text {
  font-size: 0.9rem;
  color: #4ade80;
  /* Green for secure */
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }


  .footer-col h3 {
    margin-bottom: 1rem;
  }
}

/* Intro Section (Split Layout) */
.intro-section {
  padding: 6rem 0;
  background: radial-gradient(circle at top right, #003366 0%, #001a3a 100%);
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.intro-content {
  position: relative;
  z-index: 2;
}

.welcome-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-text-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.intro-text-block strong {
  color: #fff;
  font-weight: 600;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.btn-text {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.btn-text:hover {
  gap: 0.8rem;
  color: var(--accent-blue);
}

/* Visual Card Stack */
.intro-visual {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.card-back {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transform: rotate(5deg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.win-display {
  text-align: center;
}

.win-display span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.jackpot-amount {
  font-size: 3.5rem;
  background: linear-gradient(to right, #ffd700, #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  text-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro-content h1 {
    font-size: 2.5rem;
  }

  .intro-visual {
    height: 300px;
  }
}

/* Game Feature Grid (Games Page) - Horizontal Layout */
.game-feature-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.game-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
  /* Horizontal: Image Left, Text Right */
  align-items: stretch;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 51, 102, 0.15);
}

.card-image-placeholder {
  width: 180px;
  background: #ffffff;
  padding: 8px;
  /* The Frame */
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #eee;
  flex-shrink: 0;
}

.card-image-placeholder img {
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-text {
  color: #a0aab5;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-content {
  padding: 1rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content .game-title {
  font-family: var(--font-family-heading);
  color: var(--dark-blue);
  font-size: 1.25rem;
  /* Slightly smaller but punchier */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  /* Extra bold */
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.card-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsiveness for Game Cards */
@media (max-width: 768px) {
  .game-card {
    flex-direction: column;
    /* Stack vertically on mobile */
    border: 1px solid #e6eef7;
    box-shadow: var(--shadow-md);
  }

  .card-image-placeholder {
    width: 100%;
    height: auto !important;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .card-image-placeholder img {
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
  }

  .card-content {
    padding: 1.5rem;
  }

  .card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .card-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .game-feature-grid {
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }
}

/* Utility Classes */
.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.p-0 {
  padding: 0 !important;
}

.object-fit-cover {
  object-fit: cover;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.text-primary {
  color: var(--primary-blue);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.my-md {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.my-lg {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.my-xl {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.cta-banner {
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  color: var(--white);
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  color: var(--white);
}

.cta-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: var(--spacing-md);
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.featured-section .featured-header {
  margin-bottom: var(--spacing-md);
}

.featured-section .game-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
}

/* Feeling Lucky Feature */
.lucky-container {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  padding: 2px;
  /* For border gradient effect if needed, or simple background */
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(30, 27, 75, 0.2);
  overflow: hidden;
  position: relative;
  max-width: 800px;
  /* Constrain width */
  margin-left: auto;
  margin-right: auto;
}

.lucky-card {
  background: rgba(255, 255, 255, 0.05);
  /* Glass effect on dark bg */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 14px;
}

.lucky-icon {
  font-size: 2.5rem;
  animation: bounce 2s infinite;
}

.lucky-content h3 {
  color: #fff;
  margin-bottom: 0.2rem;
  font-size: 1.25rem;
}

.lucky-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
}

/* Highlight Effect for Selected Game */
.game-card.lucky-highlight {
  position: relative;
  z-index: 10;
  transform: scale(1.05);
  /* Slight pop */
  box-shadow: 0 0 0 4px #ffd700, 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: visible !important;
  /* Allow badge to pop out */
  border-radius: 12px;
  /* Ensure radius is kept */
}

.game-card.lucky-highlight::before {
  content: '🎰 LUCKY PICK!';
  position: absolute;
  top: -15px;
  right: -10px;
  background: #ffd700;
  color: #000;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .lucky-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}



/* =========================================
   BONUS GRID (Homepage Expansion)
   ========================================= */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* =========================================
   UNIVERSAL BANNER SLIDER
   ========================================= */
.banner-slider-container {
  position: relative;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 2rem;
  overflow: hidden;
  max-width: 1200px;
  /* Optional: Constrain max width */
  margin: 3rem auto 0;
  /* Centered with top gap */
}

.banner-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  /* Wide aspect ratio for desktop */
  border-radius: 16px;
  overflow: hidden;
  /* Premium Frame Effect */
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2), 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid #ffd700;
  padding: 4px;
  /* Frame gap */
  background: linear-gradient(135deg, #1e293b, #0f172a);
  /* Background for the gap */
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  /* Center image */
  align-items: center;
  justify-content: center;
  background: #000;
  /* Fallback */
}

.banner-slide.active {
  opacity: 1;
  z-index: 10;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Fill the frame */
  border-radius: 12px;
  /* Inner radius to match frame */
}

/* Navigation Dots */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--primary-blue);
  /* Or Gold */
  transform: scale(1.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .banner-slider {
    aspect-ratio: 16 / 9;
    /* Slightly taller on mobile */
  }
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s;
}

.banner-arrow:hover {
  background: #fff;
  color: #000;
}

.banner-arrow.prev {
  left: 20px;
}

.banner-arrow.next {
  right: 20px;
}

/* =========================================
   PROCESS STEPS (Register Page)
   ========================================= */
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-badge {
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin: 0 auto 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step:hover .step-badge {
  transform: scale(1.1);
  background: var(--accent-blue);
  color: var(--white);
  border-color: var(--accent-blue);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-steps::before {
    top: 50px;
    left: 24px;
    bottom: 50px;
    width: 2px;
    height: auto;
    right: auto;
  }

  .process-step {
    display: flex;
    text-align: left;
    align-items: flex-start;
    gap: 1rem;
  }

  .step-badge {
    margin: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

.bonus-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  height: 100%;
  transition: transform 0.2s;
}

.bonus-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.bonus-card h3 {
  font-size: 1.35rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bonus-card p {
  color: #64748b;
  margin-bottom: 1rem;
}

.bonus-card .feature-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.bonus-card .example-box {
  background: #f8fafc;
  border-left: 4px solid var(--accent-blue);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* FAQ Item Styling */
.faq-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--accent-blue);
}

.faq-item h2,
.faq-item h3 {
  color: var(--primary-blue);
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 0.75rem;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-blue);
  opacity: 0;
  transition: opacity 0.3s;
}

.faq-item:hover::before {
  opacity: 1;
}

/* Feature List Global Styles */
.feature-list {
  padding-left: 0;
  list-style: none;
  margin-top: 1rem;
}

.feature-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-blue);
  font-weight: bold;
}

/* Force line break for bold titles */
.feature-list b,
.feature-list strong {
  display: block;
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 0.25rem;
}