/* ==========================================================================
   LUDO INOPLEX — PREMIUM COMMERCIAL GAMING STYLESHEET
   Brand: Ludo Inoplex (Play · Connect · Win)
   Theme: Luxury Navy & Metallic Gold Gaming Aesthetics with Ludo 4-Colors
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Core Backgrounds */
  --bg-primary: #040814;
  --bg-secondary: #081024;
  --bg-surface: #0e1a38;
  --bg-surface-elevated: #15254d;
  --bg-card: rgba(14, 26, 56, 0.75);
  --bg-glass: rgba(8, 16, 36, 0.88);

  /* Metallic Gold Brand Palette (Extracted from Logo & PDF) */
  --gold-primary: #f5b82e;
  --gold-light: #ffe082;
  --gold-bright: #ffd700;
  --gold-dark: #b38115;
  --gold-gradient: linear-gradient(135deg, #ffe082 0%, #f5b82e 50%, #b38115 100%);
  --gold-text-gradient: linear-gradient(180deg, #fff7d6 0%, #f5b82e 60%, #b38115 100%);
  --gold-border: rgba(245, 184, 46, 0.35);
  --gold-glow: 0 0 25px rgba(245, 184, 46, 0.4);

  /* Ludo 4-Player Palette */
  --ludo-red: #ef4444;
  --ludo-red-glow: rgba(239, 68, 68, 0.45);
  --ludo-green: #10b981;
  --ludo-green-glow: rgba(16, 185, 129, 0.45);
  --ludo-blue: #3b82f6;
  --ludo-blue-glow: rgba(59, 130, 246, 0.45);
  --ludo-yellow: #f59e0b;
  --ludo-yellow-glow: rgba(245, 158, 11, 0.45);

  /* Typography Colors */
  --text-pure: #ffffff;
  --text-primary: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Typography Fonts */
  --font-brand: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Cinzel', sans-serif;
  --font-serif-gold: 'Cinzel', serif;
  --font-numbers: 'Space Grotesk', 'Outfit', sans-serif;

  /* Layout & Spacing */
  --container-max: 1280px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & GLOBAL BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE & Edge */
  overflow-x: hidden;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0px;
  height: 0px;
}

body {
  font-family: var(--font-brand);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Base Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Utility Helper Classes */
.text-center { text-align: center; }
.gold-text { color: var(--gold-primary); }
.blue-text { color: var(--ludo-blue); }
.green-text { color: var(--ludo-green); }
.red-text { color: var(--ludo-red); }
.silver-text { color: #cbd5e1; }
.bronze-text { color: #d97706; }
.bold { font-weight: 700; }

/* --------------------------------------------------------------------------
   3. PRELOADER: 3D DICE EXPERIENCE
   -------------------------------------------------------------------------- */
.preloader-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0f1c3f 0%, #040814 85%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

.preloader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  max-width: 460px;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.preloader-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem;
}

.preloader-brand-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(245, 184, 46, 0.4));
  margin: 0 auto;
}

/* 3D Dice Scene */
.dice-scene {
  width: 70px;
  height: 70px;
  perspective: 600px;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cube-dice {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(-30deg);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cube-dice.spin-cube {
  animation: rollInfinite3D 2.5s infinite ease-in-out;
}

.cube-face {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(145deg, #ffffff, #e2e8f0);
  border: 2px solid #cbd5e1;
  border-radius: 12px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  padding: 6px;
}

.cube-face .pip {
  display: block;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 35% 35%, #1e293b, #000000);
  border-radius: 50%;
  align-self: center;
  justify-self: center;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.face-front  { transform: rotateY(0deg) translateZ(35px); }
.face-back   { transform: rotateY(180deg) translateZ(35px); }
.face-right  { transform: rotateY(90deg) translateZ(35px); }
.face-left   { transform: rotateY(-90deg) translateZ(35px); }
.face-top    { transform: rotateX(90deg) translateZ(35px); }
.face-bottom { transform: rotateX(-90deg) translateZ(35px); }

/* Pip placements */
.pip-center { grid-column: 2; grid-row: 2; }
.pip-top-left { grid-column: 1; grid-row: 1; }
.pip-top-right { grid-column: 3; grid-row: 1; }
.pip-mid-left { grid-column: 1; grid-row: 2; }
.pip-mid-right { grid-column: 3; grid-row: 2; }
.pip-bottom-left { grid-column: 1; grid-row: 3; }
.pip-bottom-right { grid-column: 3; grid-row: 3; }

/* 3D Rolling Keyframe */
@keyframes rollInfinite3D {
  0%   { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateY(0); }
  25%  { transform: rotateX(180deg) rotateY(90deg) rotateZ(45deg) translateY(-20px); }
  50%  { transform: rotateX(360deg) rotateY(180deg) rotateZ(180deg) translateY(0); }
  75%  { transform: rotateX(540deg) rotateY(270deg) rotateZ(225deg) translateY(-15px); }
  100% { transform: rotateX(720deg) rotateY(360deg) rotateZ(360deg) translateY(0); }
}

.preloader-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.preloader-title {
  font-family: var(--font-numbers);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.preloader-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-align: center;
}

.loader-track {
  width: 260px;
  max-width: 80vw;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(245, 184, 46, 0.3);
  margin: 0 auto;
  position: relative;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px var(--gold-primary);
  transition: width 0.3s ease;
}

/* Sound Toggle Floating Button */
.sound-toggle-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: rgba(14, 26, 56, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition-fast);
}

.sound-toggle-btn:hover {
  background: var(--bg-surface-elevated);
  transform: translateY(-2px);
  border-color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   4. LIVE ACTIVITY MARQUEE TICKER
   -------------------------------------------------------------------------- */
.live-activity-bar {
  background: linear-gradient(90deg, #071126, #0e1e42 50%, #071126);
  border-bottom: 1px solid rgba(245, 184, 46, 0.18);
  font-size: 0.82rem;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.ticker-badge {
  background: var(--bg-primary);
  color: var(--gold-primary);
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.72rem;
  white-space: nowrap;
  border-right: 1px solid rgba(245, 184, 46, 0.2);
  z-index: 2;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulseLight 1.5s infinite;
}

@keyframes pulseLight {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.ticker-content {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  padding-left: 2rem;
}

.ticker-item {
  color: var(--text-primary);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   5. NAVIGATION & FIXED HEADER
   -------------------------------------------------------------------------- */
.site-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  background: rgba(4, 8, 20, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(245, 184, 46, 0.25);
  transition: all var(--transition-fast);
}

body {
  padding-top: 120px; /* 36px ticker + 84px header */
}

.main-header {
  position: relative;
  z-index: 1001;
  background: transparent;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.main-header.scrolled {
  background: transparent;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  gap: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 0 10px rgba(245, 184, 46, 0.4));
  transition: transform var(--transition-fast);
}

.brand-link:hover .brand-logo-img {
  transform: scale(1.05) rotate(-3deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-numbers);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #ffffff;
  line-height: 1.1;
  white-space: nowrap;
}

.gold-glow {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(245, 184, 46, 0.5);
}

.brand-tagline {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  opacity: 0.85;
  white-space: nowrap;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  flex-shrink: 1;
}

.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  position: relative;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.nav-token {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.red-dot { background: var(--ludo-red); box-shadow: 0 0 6px var(--ludo-red); }
.blue-dot { background: var(--ludo-blue); box-shadow: 0 0 6px var(--ludo-blue); }
.green-dot { background: var(--ludo-green); box-shadow: 0 0 6px var(--ludo-green); }
.yellow-dot { background: var(--ludo-yellow); box-shadow: 0 0 6px var(--ludo-yellow); }

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-btn-bonus {
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.nav-btn-play {
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #040814;
  box-shadow: 0 4px 20px rgba(245, 184, 46, 0.35);
  border: 1px solid #ffd700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 184, 46, 0.55);
}

.btn-secondary {
  background: rgba(245, 184, 46, 0.12);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
}

.btn-secondary:hover {
  background: rgba(245, 184, 46, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #f5b82e, #b8860b);
  color: #000000;
  font-weight: 800;
}

.btn-cyan {
  background: linear-gradient(135deg, #06b6d4, #0284c7);
  color: #ffffff;
  font-weight: 800;
}

.btn-sm {
  padding: 5px 12px;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.glow-pulse {
  animation: buttonPulse 2.5s infinite;
}

@keyframes buttonPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(245, 184, 46, 0.3); }
  50% { box-shadow: 0 6px 28px rgba(245, 184, 46, 0.65); }
}

/* Mobile Hamburger Button */
.mobile-menu-btn {
  display: none;
  background: rgba(245, 184, 46, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 8px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
  background: rgba(245, 184, 46, 0.25);
  border-color: var(--gold-primary);
  transform: scale(1.05);
}

.mobile-menu-btn .bar {
  width: 22px;
  height: 2.5px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Drawer Sidebar */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 86vw;
  background: linear-gradient(180deg, #09142e 0%, #030714 100%);
  border-left: 2px solid var(--gold-border);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.98);
  z-index: 100001;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245, 184, 46, 0.2);
  padding-bottom: 1rem;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-drawer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.mobile-brand-title {
  font-family: var(--font-numbers);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  display: block;
}

.mobile-brand-sub {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.mobile-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-close-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: var(--ludo-red);
  color: var(--ludo-red);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(245, 184, 46, 0.1);
  border-color: var(--gold-border);
  color: var(--gold-light);
  transform: translateX(4px);
}

.mobile-drawer-cta {
  margin-top: auto;
  padding-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 2.75rem 0 4.5rem 0;
  overflow: hidden;
  background: radial-gradient(circle at 65% 30%, #10214a 0%, #040814 70%);
}

.hero-bg-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.orb-gold {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #f5b82e 0%, transparent 70%);
  top: 10%;
  right: 5%;
}

.orb-blue {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  bottom: 0%;
  left: 5%;
}

.orb-red {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #dc2626 0%, transparent 70%);
  top: 50%;
  right: 35%;
  opacity: 0.25;
}

.ludo-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(245, 184, 46, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 184, 46, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 184, 46, 0.1);
  border: 1px solid var(--gold-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.badge-crown { font-size: 1rem; }
.badge-tag {
  background: var(--gold-primary);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.hero-headline {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 1.15rem;
  color: #ffffff;
}

.hero-gradient-text {
  display: block;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(245, 184, 46, 0.35);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 0.25rem;
}

.hero-subline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-subline strong {
  color: #ffffff;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 14px 28px;
}

.btn-dice-icon {
  font-size: 1.5rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-title {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.btn-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: none;
  opacity: 0.9;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 1.4rem;
  background: rgba(14, 26, 56, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  max-width: 660px;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.trust-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.86rem;
  color: #ffffff;
  line-height: 1.2;
  white-space: nowrap;
}

.trust-item small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   6.1 HERO 3D LUDO SHOWCASE (BRAND EMBLEM, 3D DICES, PAWNS & AURA)
   -------------------------------------------------------------------------- */
.hero-visual-block {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-top: -2rem;
}

.hero-showcase-stage {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 480px;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  user-select: none;
  transform: translateY(-12px);
}

/* Ambient Portal Ring & Rotating Light Flares */
.showcase-portal-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 2px dashed rgba(245, 184, 46, 0.35);
  box-shadow: 0 0 50px rgba(245, 184, 46, 0.2), inset 0 0 40px rgba(37, 99, 235, 0.2);
  animation: rotatePortal 24s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.showcase-light-rays {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 46, 0.15) 0%, rgba(37, 99, 235, 0.08) 50%, transparent 70%);
  filter: blur(20px);
  animation: pulseRays 5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

.showcase-glow-core {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(220, 38, 38, 0.15) 50%, transparent 75%);
  filter: blur(35px);
  animation: pulseCore 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes rotatePortal {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.03); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes pulseRays {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 0.95; }
}

@keyframes pulseCore {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

/* Central Hero Brand Emblem (logo.png) */
.showcase-main-emblem-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: floatEmblem 4s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-main-emblem-wrap:hover {
  transform: scale(1.04) translateY(-6px);
}

.showcase-logo-img {
  width: 100%;
  max-width: 335px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.9))
         drop-shadow(0 0 35px rgba(245, 184, 46, 0.45));
  transition: filter 0.3s ease;
}

.showcase-main-emblem-wrap:hover .showcase-logo-img {
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.95))
         drop-shadow(0 0 50px rgba(245, 184, 46, 0.75));
}

.emblem-pedestal-shadow {
  width: 240px;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75) 0%, transparent 75%);
  border-radius: 50%;
  margin-top: -10px;
  animation: shadowBreathe 4s ease-in-out infinite;
  filter: blur(4px);
}

@keyframes floatEmblem {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes shadowBreathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(0.85); opacity: 0.4; }
}

/* --------------------------------------------------------------------------
   FLOATING 3D ANIMATED DICES
   -------------------------------------------------------------------------- */
.floating-3d-dice {
  position: absolute;
  perspective: 600px;
  transform-style: preserve-3d;
  cursor: pointer;
  z-index: 15;
  transition: transform 0.25s ease;
}

.floating-3d-dice:hover {
  transform: scale(1.15);
}

/* Dice 1: Top Left Tumbler */
.dice-pos-top-left {
  top: 15px;
  left: 0px;
}

.dice-pos-top-left .cube-dice-floating {
  width: 46px;
  height: 46px;
  animation: tumbleDice1 9s ease-in-out infinite alternate;
}

.dice-pos-top-left .cube-face {
  width: 46px;
  height: 46px;
  padding: 3px;
  border-radius: 10px;
  border: 1.5px solid rgba(245, 184, 46, 0.6);
  box-shadow: inset 0 0 10px rgba(245, 184, 46, 0.3), 0 8px 20px rgba(0, 0, 0, 0.8);
}

.dice-pos-top-left .cube-face .pip {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 35% 35%, #f5b82e, #8c5b05);
}

.dice-pos-top-left .face-front  { transform: rotateY(0deg) translateZ(23px); }
.dice-pos-top-left .face-back   { transform: rotateY(180deg) translateZ(23px); }
.dice-pos-top-left .face-right  { transform: rotateY(90deg) translateZ(23px); }
.dice-pos-top-left .face-left   { transform: rotateY(-90deg) translateZ(23px); }
.dice-pos-top-left .face-top    { transform: rotateX(90deg) translateZ(23px); }
.dice-pos-top-left .face-bottom { transform: rotateX(-90deg) translateZ(23px); }

@keyframes tumbleDice1 {
  0% { transform: translateY(0) rotateX(15deg) rotateY(25deg) rotateZ(10deg); }
  33% { transform: translateY(-16px) rotateX(110deg) rotateY(160deg) rotateZ(-30deg); }
  66% { transform: translateY(-8px) rotateX(230deg) rotateY(290deg) rotateZ(45deg); }
  100% { transform: translateY(0) rotateX(375deg) rotateY(385deg) rotateZ(10deg); }
}

/* Dice 2: Bottom Right Interactive Main Dice */
.dice-pos-bottom-right {
  bottom: 25px;
  right: 5px;
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cube-dice-interactive {
  width: 54px;
  height: 54px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  transform: rotateX(-20deg) rotateY(30deg);
}

.cube-dice-interactive .cube-face {
  width: 54px;
  height: 54px;
  padding: 4px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff 0%, #e2e8f0 70%, #cbd5e1 100%);
  border: 2px solid #ffd700;
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.9), 0 10px 25px rgba(0, 0, 0, 0.9), 0 0 20px rgba(245, 184, 46, 0.5);
}

.cube-dice-interactive .cube-face .pip {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 35% 35%, #dc2626, #7f1d1d);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
}

.cube-dice-interactive .face-front  { transform: rotateY(0deg) translateZ(27px); }
.cube-dice-interactive .face-back   { transform: rotateY(180deg) translateZ(27px); }
.cube-dice-interactive .face-right  { transform: rotateY(90deg) translateZ(27px); }
.cube-dice-interactive .face-left   { transform: rotateY(-90deg) translateZ(27px); }
.cube-dice-interactive .face-top    { transform: rotateX(90deg) translateZ(27px); }
.cube-dice-interactive .face-bottom { transform: rotateX(-90deg) translateZ(27px); }

.dice-click-hint {
  font-family: var(--font-numbers);
  font-size: 0.65rem;
  font-weight: 800;
  color: #000;
  background: var(--gold-gradient);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(245, 184, 46, 0.6);
  letter-spacing: 0.5px;
  animation: bounceHint 2s infinite;
  white-space: nowrap;
}

@keyframes bounceHint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Dice 3: Gold Mini Sparkle Dice Top Right */
.dice-pos-top-right {
  top: 25px;
  right: 15px;
}

.gold-mini-dice-cube {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  border: 1.5px solid #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6);
  animation: floatMiniDice 3.2s ease-in-out infinite;
}

@keyframes floatMiniDice {
  0%, 100% { transform: translateY(0) rotate(10deg); }
  50% { transform: translateY(-10px) rotate(-15deg); }
}

/* --------------------------------------------------------------------------
   4 3D LUDO PAWNS (RED, GREEN, BLUE, YELLOW)
   -------------------------------------------------------------------------- */
.showcase-pawn {
  position: absolute;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-pawn:hover {
  transform: scale(1.25) translateY(-8px);
  z-index: 30;
}

.pawn-3d-shape {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.85));
}

.pawn-head {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.8), inset -2px -2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: -4px;
  z-index: 3;
}

.pawn-collar {
  width: 12px;
  height: 4px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: -2px;
  z-index: 2;
}

.pawn-body {
  width: 18px;
  height: 20px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 100%, 0% 100%);
  border-radius: 2px 2px 4px 4px;
  z-index: 1;
}

.pawn-base {
  width: 24px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  margin-top: -3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.pawn-glow-shadow {
  width: 28px;
  height: 8px;
  border-radius: 50%;
  margin-top: 2px;
  filter: blur(4px);
  opacity: 0.8;
}

/* Pawn Color Variants */
.pawn-shape-red .pawn-head,
.pawn-shape-red .pawn-collar,
.pawn-shape-red .pawn-body,
.pawn-shape-red .pawn-base {
  background: radial-gradient(circle at 35% 30%, #ff4d4d, #b91c1c 70%, #7f1d1d 100%);
}
.glow-red { background: rgba(239, 68, 68, 0.9); box-shadow: 0 0 15px #ef4444; }

.pawn-shape-green .pawn-head,
.pawn-shape-green .pawn-collar,
.pawn-shape-green .pawn-body,
.pawn-shape-green .pawn-base {
  background: radial-gradient(circle at 35% 30%, #34d399, #059669 70%, #064e3b 100%);
}
.glow-green { background: rgba(16, 185, 129, 0.9); box-shadow: 0 0 15px #10b981; }

.pawn-shape-blue .pawn-head,
.pawn-shape-blue .pawn-collar,
.pawn-shape-blue .pawn-body,
.pawn-shape-blue .pawn-base {
  background: radial-gradient(circle at 35% 30%, #60a5fa, #2563eb 70%, #1e3a8a 100%);
}
.glow-blue { background: rgba(59, 130, 246, 0.9); box-shadow: 0 0 15px #3b82f6; }

.pawn-shape-yellow .pawn-head,
.pawn-shape-yellow .pawn-collar,
.pawn-shape-yellow .pawn-body,
.pawn-shape-yellow .pawn-base {
  background: radial-gradient(circle at 35% 30%, #fde047, #d97706 70%, #78350f 100%);
}
.glow-yellow { background: rgba(245, 158, 11, 0.9); box-shadow: 0 0 15px #f59e0b; }

/* Pawn Positions & Bobbing Animations */
.pawn-red {
  top: 130px;
  left: 20px;
  animation: pawnBob1 3.4s ease-in-out infinite;
}

.pawn-green {
  top: 70px;
  right: 70px;
  animation: pawnBob2 3.8s ease-in-out infinite 0.6s;
}

.pawn-blue {
  bottom: 85px;
  left: 45px;
  animation: pawnBob3 4.2s ease-in-out infinite 1.2s;
}

.pawn-yellow {
  bottom: 140px;
  right: 15px;
  animation: pawnBob4 3.6s ease-in-out infinite 1.8s;
}

@keyframes pawnBob1 {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}

@keyframes pawnBob2 {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-14px) rotate(-5deg); }
}

@keyframes pawnBob3 {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(6deg); }
}

@keyframes pawnBob4 {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-13px) rotate(-4deg); }
}

/* --------------------------------------------------------------------------
   FLOATING LUDO BADGES & CHIPS
   -------------------------------------------------------------------------- */
.floating-ludo-badge {
  position: absolute;
  z-index: 18;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(8, 16, 38, 0.85);
  border: 1px solid rgba(245, 184, 46, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(245, 184, 46, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
}

.floating-ludo-badge:hover {
  transform: scale(1.06) translateY(-3px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(245, 184, 46, 0.4);
}

.badge-top-left {
  top: 15px;
  left: 55px;
  animation: floatBadge 4.5s ease-in-out infinite;
}

.badge-bottom-left {
  bottom: 15px;
  left: 10px;
  cursor: pointer;
  border-color: rgba(245, 184, 46, 0.6);
  background: linear-gradient(135deg, rgba(245, 184, 46, 0.15), rgba(8, 16, 38, 0.9));
  animation: floatBadge 4s ease-in-out infinite 1s;
}

.badge-top-right {
  top: 20px;
  right: 60px;
  animation: floatBadge 5s ease-in-out infinite 2s;
}

.badge-icon {
  font-size: 1.1rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text strong {
  font-size: 0.76rem;
  color: #ffffff;
  line-height: 1.1;
  white-space: nowrap;
}

.badge-text small {
  font-size: 0.64rem;
  color: var(--text-muted);
  white-space: nowrap;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --------------------------------------------------------------------------
   LUDO SAFE STARS & FLOATING PARTICLES
   -------------------------------------------------------------------------- */
.showcase-sparkles .ludo-safe-star {
  position: absolute;
  color: var(--gold-primary);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px var(--gold-primary));
  animation: twinkleStar 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 14;
}

.star-1 { top: 90px; left: 100px; animation-delay: 0.3s; }
.star-2 { bottom: 100px; right: 90px; animation-delay: 1.2s; font-size: 1.4rem; }

@keyframes twinkleStar {
  0%, 100% { opacity: 0.4; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.3) rotate(30deg); }
}

.showcase-sparkles .floating-coin {
  position: absolute;
  font-size: 1.25rem;
  filter: drop-shadow(0 0 10px rgba(245, 184, 46, 0.8));
  animation: floatOrb 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 14;
}

.showcase-sparkles .coin-1 { top: 40px; right: 140px; animation-delay: 0.5s; }
.showcase-sparkles .coin-2 { bottom: 60px; left: 130px; animation-delay: 1.8s; font-size: 1.1rem; }
.showcase-sparkles .coin-3 { top: 120px; right: 25px; animation-delay: 2.8s; font-size: 1.3rem; }

/* Dynamic Roll Outcome Toast */
.hero-roll-toast {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px) scale(0.9);
  background: linear-gradient(135deg, #101e42, #040814);
  border: 2px solid var(--gold-primary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.95), 0 0 25px rgba(245, 184, 46, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  white-space: nowrap;
}

.hero-roll-toast.toast-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.hero-roll-toast .toast-emoji {
  font-size: 1.2rem;
}

.hero-roll-toast .toast-text {
  font-family: var(--font-numbers);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.5px;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(10deg); }
}

/* --------------------------------------------------------------------------
   7. KEY PLATFORM STATISTICS SECTION
   -------------------------------------------------------------------------- */
.stats-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 184, 46, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 184, 46, 0.2);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon-wrap {
  width: 46px;
  height: 46px;
  background: rgba(245, 184, 46, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.stat-number-box {
  font-family: var(--font-numbers);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   8. SECTION HEADERS COMMON
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 3.5rem;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-pill.gold-pill {
  background: rgba(245, 184, 46, 0.12);
  border-color: var(--gold-border);
  color: var(--gold-primary);
}

.section-pill.blue-pill {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.section-pill.green-pill {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   9. GAME MODES SECTION
   -------------------------------------------------------------------------- */
.game-modes-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.mode-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.mode-card.featured-mode {
  border-color: var(--gold-primary);
  background: linear-gradient(165deg, rgba(245, 184, 46, 0.1) 0%, rgba(14, 26, 56, 0.9) 100%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 184, 46, 0.15);
}

.mode-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 184, 46, 0.25);
}

.mode-card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.mode-card-badge.squad-badge {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
}

.mode-icon-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
}

.mode-visual-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mode-2v2 span, .mode-4v4 span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.token-red-dot { background: var(--ludo-red); box-shadow: 0 0 8px var(--ludo-red); }
.token-blue-dot { background: var(--ludo-blue); box-shadow: 0 0 8px var(--ludo-blue); }
.token-green-dot { background: var(--ludo-green); box-shadow: 0 0 8px var(--ludo-green); }
.token-yellow-dot { background: var(--ludo-yellow); box-shadow: 0 0 8px var(--ludo-yellow); }

.dice-pip-icon {
  font-size: 1.6rem;
}

.mode-meta {
  display: flex;
  flex-direction: column;
}

.mode-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold-primary);
}

.mode-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.mode-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.mode-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(0, 0, 0, 0.35);
  padding: 10px;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  text-align: center;
}

.mode-stat-col {
  display: flex;
  flex-direction: column;
}

.m-label {
  font-size: 0.68rem;
  color: var(--text-dim);
}

.m-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.mode-cta {
  margin-top: auto;
}

/* In-game HUD Strip */
.dashboard-preview-strip {
  background: linear-gradient(90deg, #09132e 0%, #0d1e47 50%, #09132e 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
  gap: 1.25rem;
}

.dash-pill-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dash-avatar-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #10b981, #047857);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  position: relative;
  color: #fff;
}

.dash-avatar-badge small {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--gold-primary);
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 4px;
}

.dash-currency-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.c-tag { font-size: 0.65rem; color: var(--text-muted); }
.c-val { font-size: 0.95rem; font-weight: 800; font-family: var(--font-numbers); color: #fff; }

.dash-pill-center {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-light);
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

.dash-pill-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.dash-wallet-summary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.w-item small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.w-item strong {
  font-family: var(--font-numbers);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   10. WIN-WIN REVOLUTION & COMPARISON CHART
   -------------------------------------------------------------------------- */
.winwin-section {
  padding: 6rem 0;
  background: radial-gradient(circle at 50% 20%, #0c1836 0%, #040814 80%);
}

.winwin-hero-card {
  background: linear-gradient(135deg, rgba(245, 184, 46, 0.15) 0%, rgba(14, 26, 56, 0.8) 100%);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 184, 46, 0.15);
}

.crown-icon-glow {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 15px var(--gold-primary));
}

.winwin-heading {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.winwin-text {
  font-size: 1.05rem;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto 1.75rem auto;
  line-height: 1.6;
}

.winwin-highlights-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.wh-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
}

.wh-check {
  width: 22px;
  height: 22px;
  background: #10b981;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
}

/* Comparison Matrix */
.comparison-container {
  background: var(--bg-card);
  border: 1px solid rgba(245, 184, 46, 0.3);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.comp-title-bar {
  background: linear-gradient(90deg, #0a142c, #13244e 50%, #0a142c);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(245, 184, 46, 0.2);
}

.comp-title-bar span {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
}

.comp-title-bar strong {
  font-size: 1.05rem;
  color: #ffffff;
}

.comp-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  position: relative;
}

.comp-col {
  padding: 2.25rem 2rem;
}

.comp-market {
  background: rgba(220, 38, 38, 0.04);
}

.comp-inoplex {
  background: rgba(245, 184, 46, 0.05);
  border-left: 1px solid rgba(245, 184, 46, 0.2);
}

.comp-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comp-status-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.bad-icon {
  background: rgba(239, 68, 68, 0.2);
  color: var(--ludo-red);
  border: 1px solid var(--ludo-red);
}

.good-icon {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid #10b981;
}

.comp-col-header h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.comp-col-header small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.badge-num {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  flex-shrink: 0;
}

.badge-num.gold-badge {
  background: rgba(245, 184, 46, 0.2);
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
}

.comp-detail {
  display: flex;
  flex-direction: column;
}

.comp-detail strong {
  font-size: 0.88rem;
  color: #ffffff;
}

.comp-detail span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.comp-detail .good-text {
  color: #34d399;
  font-weight: 600;
}

.comp-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  position: relative;
  z-index: 5;
}

.vs-circle {
  width: 44px;
  height: 44px;
  background: #040814;
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(245, 184, 46, 0.4);
}

/* --------------------------------------------------------------------------
   11. 40% DISTRIBUTION BREAKDOWN & PILLARS
   -------------------------------------------------------------------------- */
.distribution-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.dist-quad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.dist-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.dist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.card-blue { border-top: 4px solid var(--ludo-blue); }
.card-yellow { border-top: 4px solid var(--ludo-yellow); }
.card-green { border-top: 4px solid var(--ludo-green); }
.card-red { border-top: 4px solid var(--ludo-red); }

.dist-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.dist-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.dist-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.dist-summary {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.dist-meta-foot {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.dist-meta-foot span {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.dist-meta-foot strong {
  font-size: 0.88rem;
  color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   12. INCOME TABLE & CALCULATOR
   -------------------------------------------------------------------------- */
.calculator-container {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.calc-header {
  text-align: center;
  margin-bottom: 2rem;
}

.calc-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.calc-title {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.calc-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.table-responsive {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.income-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.income-table th {
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold-light);
  padding: 14px 16px;
  font-weight: 800;
  border-bottom: 2px solid var(--gold-border);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.income-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  white-space: nowrap;
}

.income-table tbody tr:hover {
  background: rgba(245, 184, 46, 0.05);
}

.lvl-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.lvl-1 { background: rgba(239, 68, 68, 0.25); color: #fca5a5; }
.lvl-2 { background: rgba(59, 130, 246, 0.25); color: #93c5fd; }
.lvl-3 { background: rgba(16, 185, 129, 0.25); color: #6ee7b7; }
.lvl-4 { background: rgba(245, 158, 11, 0.25); color: #fcd34d; }
.lvl-5 { background: rgba(168, 85, 247, 0.25); color: #d8b4fe; }
.lvl-6 { background: rgba(236, 72, 153, 0.25); color: #fbcfe8; }

.table-total-row td {
  background: rgba(245, 184, 46, 0.15);
  border-top: 2px solid var(--gold-primary);
  padding: 16px;
  font-size: 1.05rem;
}

.total-highlight {
  text-align: right;
  font-family: var(--font-numbers);
  font-size: 1.35rem !important;
  font-weight: 900;
  color: var(--gold-bright);
}

/* Interactive Calculator Sliders */
.interactive-calc-box {
  background: rgba(4, 8, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.slider-field label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.custom-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
  cursor: pointer;
  border: 2px solid #ffffff;
}

.calc-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(90deg, #10214a, #162b5e);
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  flex-wrap: wrap;
  gap: 1rem;
}

.cr-left span {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.cr-left small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cr-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.est-amount {
  font-family: var(--font-numbers);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-bright);
}

.est-tag {
  font-size: 0.7rem;
  font-weight: 800;
  background: var(--gold-primary);
  color: #000;
  padding: 3px 8px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   13. FREE BONUS SPIN WHEEL ARENA
   -------------------------------------------------------------------------- */
.spinwheel-section {
  padding: 6rem 0;
  background: radial-gradient(circle at center, #0c1b3f 0%, #040814 85%);
}

.spin-arena-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.spin-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bonus-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform var(--transition-smooth);
}

.bonus-box:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
}

.box-welcome { border-left: 4px solid var(--gold-primary); }
.box-invite { border-left: 4px solid var(--ludo-blue); }

.bb-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.bb-icon { font-size: 1.8rem; }

.bb-header h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.bb-header span {
  font-size: 0.8rem;
  font-weight: 700;
}

.bonus-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.spin-security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: #34d399;
}

.sec-icon { font-size: 1.2rem; }

/* Interactive Spin Wheel Stage */
.spin-wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wheel-outer-ring {
  width: 360px;
  height: 360px;
  position: relative;
  border-radius: 50%;
  padding: 12px;
  background: radial-gradient(circle, #2a1f0a, #000);
  box-shadow: 0 0 35px rgba(245, 184, 46, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.9);
  border: 4px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.wheel-pointer-arrow {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid #ffd700;
  z-index: 20;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.7));
}

.wheel-center-cap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: #000000;
  border: 3px solid var(--gold-primary);
  border-radius: 50%;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(245, 184, 46, 0.8);
}

.wheel-cap-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.wheel-controls {
  margin-top: 2rem;
  text-align: center;
}

.btn-spin {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.spin-status-msg {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  min-height: 24px;
}

/* --------------------------------------------------------------------------
   14. DAILY LEADERBOARD & VIP PROFIT BANNER
   -------------------------------------------------------------------------- */
.leaderboard-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.podium-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.5rem;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.podium-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform var(--transition-smooth);
}

.podium-card:hover {
  transform: translateY(-8px);
}

.rank-silver {
  border-top: 4px solid #cbd5e1;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rank-gold {
  border: 2px solid var(--gold-primary);
  background: linear-gradient(170deg, rgba(245, 184, 46, 0.15) 0%, rgba(14, 26, 56, 0.95) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(245, 184, 46, 0.25);
  height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rank-bronze {
  border-top: 4px solid #d97706;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.crown-top {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.2rem;
  filter: drop-shadow(0 0 15px var(--gold-primary));
  animation: floatOrb 3s ease-in-out infinite;
}

.rank-medal {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 auto 0.75rem auto;
}

.gold-medal { background: var(--gold-primary); color: #000; }
.silver-medal { background: #cbd5e1; color: #000; }
.bronze-medal { background: #d97706; color: #fff; }

.podium-avatar {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.podium-player {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.podium-wager {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1.25rem;
}

.podium-payout {
  background: rgba(0, 0, 0, 0.45);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.p-share {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.podium-payout strong {
  font-family: var(--font-numbers);
  font-size: 1.1rem;
}

/* VIP Club Banner */
.vip-club-banner {
  background: linear-gradient(135deg, #101c3d 0%, #070d1e 100%);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.vip-badge-pill {
  position: absolute;
  top: 24px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
  color: #000000;
  font-family: var(--font-numbers);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(245, 184, 46, 0.4), 0 0 10px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  z-index: 5;
  white-space: nowrap;
}

.vip-badge-pill .vip-sparkle {
  font-size: 0.9rem;
}

.vip-content-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: center;
}

.vip-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.vip-desc {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.formula-box {
  background: rgba(0, 0, 0, 0.5);
  border-left: 3px solid var(--gold-primary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.formula-box code {
  color: var(--gold-light);
  font-family: var(--font-numbers);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
}

.formula-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.vip-perk-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.vp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   15. ROADMAP SECTION
   -------------------------------------------------------------------------- */
.roadmap-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-primary) 0%, rgba(245, 184, 46, 0.1) 100%);
}

.roadmap-node {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
}

.node-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #040814;
  border: 3px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-numbers);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(245, 184, 46, 0.4);
  flex-shrink: 0;
  z-index: 5;
}

.node-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  flex-grow: 1;
  transition: transform var(--transition-smooth);
}

.node-card:hover {
  transform: translateX(8px);
  border-color: var(--gold-border);
}

.node-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(245, 184, 46, 0.15);
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.node-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.node-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   16. RULES, SECURITY & TERMS
   -------------------------------------------------------------------------- */
.rules-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.rule-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.rule-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
}

.rule-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.rule-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.rule-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   17. FINAL CALL TO ACTION BANNER
   -------------------------------------------------------------------------- */
.final-cta-section {
  padding: 6rem 0;
  background: radial-gradient(circle at center, #10224d 0%, #040814 80%);
}

.cta-banner-wrapper {
  background: linear-gradient(135deg, #0e1c3e 0%, #060b1b 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 184, 46, 0.25);
}

.cta-inner-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-logo-holder {
  text-align: center;
}

.cta-brand-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 0 25px rgba(245, 184, 46, 0.6));
  animation: floatOrb 4s ease-in-out infinite;
}

.cta-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.cta-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 650px;
}

.cta-button-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-badges {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
  background: #02050e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 2rem 0;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
}

.f-brand-title {
  font-family: var(--font-numbers);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
}

.f-brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-light);
}

.footer-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-official-url {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-official-url a {
  color: var(--gold-primary);
  font-weight: 700;
  margin-left: 4px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links-col a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.responsible-gaming-notice {
  font-size: 0.78rem;
  color: var(--text-dim);
  max-width: 900px;
  margin: 0 auto;
}

.copyright-text {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   19. ANIMATION ARCHITECTURE & REVEAL CLASSES
   -------------------------------------------------------------------------- */
[data-reveal] {
  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: transform, opacity;
}

[data-reveal="fade-up"] { transform: translateY(40px); }
[data-reveal="fade-right"] { transform: translateX(-50px); }
[data-reveal="fade-left"] { transform: translateX(50px); }
[data-reveal="zoom-in"] { transform: scale(0.92); }

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badge, .hero-subline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-strip {
    margin: 0 auto;
  }

  .modes-grid {
    grid-template-columns: 1fr;
  }

  .comp-grid {
    grid-template-columns: 1fr;
  }

  .comp-vs-divider {
    padding: 1rem 0;
  }

  .comp-inoplex {
    border-left: none;
    border-top: 1px solid rgba(245, 184, 46, 0.2);
  }

  .dist-quad-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spin-arena-layout {
    grid-template-columns: 1fr;
  }

  .podium-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 2rem;
  }

  .podium-card {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .rank-gold {
    order: 1;
    height: auto;
  }

  .rank-silver {
    order: 2;
    height: auto;
  }

  .rank-bronze {
    order: 3;
    height: auto;
  }

  .vip-content-grid {
    grid-template-columns: 1fr;
  }

  .rules-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-button-group {
    justify-content: center;
  }

  .cta-badges {
    justify-content: center;
  }

  .footer-top-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .nav-btn-bonus,
  .nav-btn-play {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .dist-quad-grid {
    grid-template-columns: 1fr;
  }

  .calc-row {
    grid-template-columns: 1fr;
  }

  .rules-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-row {
    grid-template-columns: 1fr;
  }

  .dashboard-preview-strip {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem;
    gap: 1rem;
  }

  .dash-pill-left {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .dash-pill-center {
    font-size: 0.75rem;
    padding: 4px 0;
  }

  .dash-pill-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .dash-wallet-summary {
    width: 100%;
    background: rgba(4, 8, 20, 0.65);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-sizing: border-box;
  }

  .dash-wallet-summary .w-item {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .dash-wallet-summary .w-item small {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
  }

  .dash-wallet-summary .w-item strong {
    font-family: var(--font-numbers);
    font-size: 1.15rem;
  }

  .dash-wallet-summary .btn {
    padding: 7px 16px;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 768px) {
  .hero-showcase-stage {
    min-height: 420px;
    transform: scale(0.92);
  }

  /* Compact Padding for Income Table & Referral Calculator Cards */
  .calculator-container {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
  }

  .calc-header {
    margin-bottom: 1.25rem;
  }

  .table-responsive {
    margin-bottom: 1.25rem;
  }

  .income-table th,
  .income-table td {
    padding: 10px 10px;
    font-size: 0.8rem;
  }

  .table-total-row td {
    padding: 12px 10px;
    font-size: 0.92rem;
  }

  .total-highlight {
    font-size: 1.15rem !important;
  }

  .interactive-calc-box {
    padding: 1.15rem 1rem;
    border-radius: var(--radius-md);
  }

  .calc-row {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .calc-result-bar {
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.75rem;
  }

  .cr-right {
    justify-content: center;
  }

  .podium-card {
    width: 100%;
    max-width: 100%;
    padding: 1.75rem 1.25rem;
  }

  /* VIP Club Banner Mobile Layout */
  .vip-club-banner {
    padding: 1.5rem 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .vip-badge-pill {
    position: static;
    margin-bottom: 1rem;
    align-self: flex-start;
    font-size: 0.68rem;
    padding: 5px 12px;
  }

  .vip-title {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  /* Mobile Hero Typography Scaling (768px) */
  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 1rem;
  }

  .badge-crown {
    font-size: 0.85rem;
  }

  .hero-headline {
    font-size: 1.85rem !important;
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }

  .hero-gradient-text {
    font-size: 1.35rem !important;
    line-height: 1.2;
    margin-top: 0.35rem;
  }

  .hero-subline {
    font-size: 0.9rem !important;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .btn-hero-primary {
    padding: 11px 22px;
    width: 100%;
    max-width: 360px;
  }

  .btn-dice-icon {
    font-size: 1.3rem;
  }

  .btn-title {
    font-size: 0.9rem;
  }

  .btn-subtitle {
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .hero-trust-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-divider {
    display: none;
  }

  /* Compact Hero Typography on Small Mobile (480px) */
  .hero-headline {
    font-size: 1.6rem !important;
    line-height: 1.15;
  }

  .hero-gradient-text {
    font-size: 1.18rem !important;
  }

  .hero-subline {
    font-size: 0.84rem !important;
    line-height: 1.5;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  .btn-title {
    font-size: 0.84rem;
  }

  .btn-subtitle {
    font-size: 0.64rem;
  }

  .hero-showcase-stage {
    min-height: 380px;
    transform: scale(0.82);
    transform-origin: center center;
  }

  .dashboard-preview-strip {
    padding: 0.85rem;
  }

  .dash-wallet-summary {
    padding: 8px 12px;
  }

  .dash-wallet-summary .w-item strong {
    font-size: 1.05rem;
  }

  .dash-wallet-summary .btn {
    padding: 6px 12px;
    font-size: 0.72rem;
  }

  .wheel-outer-ring {
    width: 300px;
    height: 300px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .preloader-overlay {
    display: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   21. WATER SCROLL TO TOP COMPONENT
   -------------------------------------------------------------------------- */
@keyframes liquidWaveSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes liquidWaveSpinReverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes liquidBubbleFloat {
  0% {
    transform: translateY(15px) scale(0.6);
    opacity: 0;
  }
  40% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0;
  }
}

.liquid-wave-1 {
  animation: liquidWaveSpin 3.8s linear infinite;
}

.liquid-wave-2 {
  animation: liquidWaveSpinReverse 5.6s linear infinite;
}

.liquid-wave-3 {
  animation: liquidWaveSpin 2.7s linear infinite;
}

.liquid-bubble-1 {
  animation: liquidBubbleFloat 2.2s ease-in infinite;
}

.liquid-bubble-2 {
  animation: liquidBubbleFloat 2.8s ease-in infinite 0.8s;
}

.liquid-bubble-3 {
  animation: liquidBubbleFloat 3.3s ease-in infinite 1.4s;
}

.water-scroll-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  user-select: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.water-scroll-wrap.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

body.drawer-open .water-scroll-wrap,
.mobile-drawer-overlay.active ~ .water-scroll-wrap {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(20px) scale(0.85) !important;
}

.water-tooltip {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(8, 10, 9, 0.95);
  border: 1px solid rgba(0, 168, 107, 0.4);
  font-family: var(--font-numbers);
  font-size: 11px;
  font-weight: 700;
  color: #00c878;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.water-scroll-wrap:hover .water-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.water-halo-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00a86b, #00c878, #d4af37);
  filter: blur(8px);
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0.3;
}

.water-scroll-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #050706;
  border: 2px solid rgba(0, 168, 107, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 138, 76, 0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.water-scroll-btn:hover {
  border-color: #00c878;
  box-shadow: 0 0 35px rgba(34, 168, 102, 0.8);
  transform: scale(1.1);
}

.water-scroll-btn:active {
  transform: scale(0.95);
}

.liquid-wave-layer {
  position: absolute;
  pointer-events: none;
  transition: top 0.2s ease-out;
}

.wave-base {
  left: -55%;
  width: 210%;
  height: 210%;
  border-radius: 43% 39% 45% 40%;
  background: rgba(0, 122, 77, 0.8);
  top: 105%;
}

.wave-middle {
  left: -50%;
  width: 200%;
  height: 200%;
  border-radius: 38% 43% 40% 45%;
  background: linear-gradient(45deg, #00a86b, #0b6b3a, #00c878);
  opacity: 0.95;
  box-shadow: inset 0 0 15px rgba(34, 168, 102, 0.5);
  top: 105%;
}

.wave-foam {
  left: -48%;
  width: 196%;
  height: 196%;
  border-radius: 45% 41% 43% 39%;
  background: linear-gradient(180deg, rgba(255, 215, 106, 0.4), transparent);
  top: 107%;
}

.liquid-bubble-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.liquid-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.liquid-bubble-1 {
  bottom: 12px;
  left: 16px;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
}

.liquid-bubble-2 {
  bottom: 8px;
  right: 16px;
  width: 4px;
  height: 4px;
  background: rgba(255, 215, 106, 0.9);
}

.liquid-bubble-3 {
  bottom: 16px;
  left: 24px;
  width: 4px;
  height: 4px;
  background: rgba(0, 200, 120, 0.8);
}

.water-glass-specular {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 20;
}

.water-arrow-icon {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  pointer-events: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.water-scroll-btn:hover .water-arrow-icon {
  transform: translateY(-3px);
  color: #ffd76a;
}

