/* ===================================
   CSS VARIABLES (DESIGN SYSTEM)
   =================================== */
:root {
  /* Base Layers */
  --bg-primary: #060B18;
  --bg-secondary: #0B1224;
  --bg-elevated: rgba(15, 23, 42, 0.6);
  --bg-glass: rgba(15, 25, 50, 0.45);
  --bg-glass-hover: rgba(20, 32, 60, 0.55);

  /* Accents */
  --accent-primary: #60A5FA;
  --accent-secondary: #38BDF8;
  --accent-highlight: #FDE047;
  --accent-gradient: linear-gradient(135deg, #60A5FA 0%, #38BDF8 50%, #818CF8 100%);
  --accent-gradient-gold: linear-gradient(135deg, #FDE047 0%, #F59E0B 100%);
  --accent-btn: linear-gradient(135deg, #3B82F6 0%, #2563EB 40%, #60A5FA 100%);
  --accent-btn-hover: linear-gradient(135deg, #60A5FA 0%, #3B82F6 40%, #818CF8 100%);

  /* Text */
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-accent: #60A5FA;

  /* Borders */
  --border-subtle: rgba(96, 165, 250, 0.1);
  --border-glow: rgba(96, 165, 250, 0.25);
  --border-glass: rgba(148, 163, 184, 0.08);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(96, 165, 250, 0.1);
  --shadow-glow-strong: 0 0 60px rgba(96, 165, 250, 0.15);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Layout */
  --max-width: 1320px;
  --nav-height: 72px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 150ms var(--ease-smooth);
  --transition-base: 250ms var(--ease-smooth);
  --transition-slow: 400ms var(--ease-smooth);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;
}

/* ===================================
   RESET
   =================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe {
  max-width: 100%;
  display: block;
}

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

a:hover {
  color: var(--accent-secondary);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

/* ===================================
   SKIP LINK
   =================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent-primary);
  color: var(--bg-primary);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  z-index: 10000;
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 16px;
  color: var(--bg-primary);
}

/* ===================================
   CONTAINER
   =================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ===================================
   TEXT UTILITIES
   =================================== */
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--accent-highlight);
}

.required {
  color: #F87171;
}

/* ===================================
   GLASS CARD
   =================================== */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-glow);
}

/* ===================================
   HEADER / GLASS NAV
   =================================== */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(6, 11, 24, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.glass-nav.scrolled {
  background: rgba(6, 11, 24, 0.92);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent-primary);
}

/* Nav Links */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  height: 100dvh;
  background: rgba(6, 11, 24, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 9999;
  transition: right 0.4s var(--ease-smooth);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-inner {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.mobile-close {
  align-self: flex-end;
  font-size: 2rem;
  color: var(--text-secondary);
  padding: 8px;
  transition: color var(--transition-fast);
}

.mobile-close:hover {
  color: var(--text-primary);
}

.mobile-nav-links {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-glass);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--text-primary);
}

.mobile-nav-link.small {
  font-size: 0.95rem;
  font-weight: 400;
}

.btn-mobile-cta {
  margin-top: auto;
  margin-bottom: 32px;
  text-align: center;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* Primary */
.btn-primary {
  background: var(--accent-btn);
  color: #fff;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--accent-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(96, 165, 250, 0.35);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.btn-primary:disabled,
.btn-primary[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Secondary */
.btn-secondary {
  background: rgba(96, 165, 250, 0.1);
  color: var(--accent-primary);
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.btn-secondary:hover {
  background: rgba(96, 165, 250, 0.18);
  transform: translateY(-2px);
  color: var(--accent-secondary);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

/* Sizes */
.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn-nav {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-xl {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Shimmer */
.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transition: none;
}

.btn:hover .btn-shimmer {
  animation: shimmerSlide 0.8s ease forwards;
}

@keyframes shimmerSlide {
  from { left: -100%; }
  to { left: 100%; }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(96, 165, 250, 0.08);
  top: -200px;
  right: -200px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(56, 189, 248, 0.06);
  bottom: -100px;
  left: -100px;
}

.hero-glow-3 {
  width: 300px;
  height: 300px;
  background: rgba(129, 140, 248, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: var(--radius-full);
  color: var(--accent-primary);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

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

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-diamond-display {
  position: relative;
  width: 320px;
  height: 320px;
}

.diamond-hero-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite;
}

.diamond-hero-svg {
  position: relative;
  z-index: 1;
  animation: floatDiamond 6s ease-in-out infinite;
}

.diamond-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(253, 224, 71, 0.8);
  border-radius: 50%;
  animation: sparkle 3s ease-in-out infinite;
}

.sp-1 { top: 15%; left: 50%; animation-delay: 0s; }
.sp-2 { top: 40%; right: 10%; animation-delay: 0.8s; }
.sp-3 { bottom: 20%; left: 20%; animation-delay: 1.6s; }
.sp-4 { top: 35%; left: 15%; animation-delay: 2.4s; }

/* Floating Diamonds */
.floating-diamond {
  position: absolute;
  opacity: 0.6;
  animation: floatParticle 12s ease-in-out infinite;
}

.fd-1 { top: 15%; left: 10%; animation-duration: 14s; }
.fd-2 { top: 60%; right: 15%; animation-duration: 11s; animation-delay: 2s; }
.fd-3 { bottom: 20%; left: 30%; animation-duration: 16s; animation-delay: 4s; }
.fd-4 { top: 30%; right: 25%; animation-duration: 13s; animation-delay: 1s; }
.fd-5 { bottom: 35%; right: 5%; animation-duration: 15s; animation-delay: 3s; }

/* ===================================
   SECTION STYLING
   =================================== */
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: var(--radius-full);
  color: var(--accent-primary);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section spacing */
.wallet-bar { padding: 40px 0 0; }
.game-preview-section { padding: 100px 0; }
.how-it-works { padding: 100px 0; }
.features-section { padding: 100px 0; }
.rewards-preview { padding: 100px 0; }
.leaderboard-section { padding: 100px 0; }
.achievements-section { padding: 100px 0; }
.social-cta-section { padding: 100px 0; }
.testimonials-section { padding: 100px 0; }
.final-cta { padding: 120px 0; }

/* ===================================
   WALLET BAR
   =================================== */
.wallet-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  gap: 24px;
  flex-wrap: wrap;
}

.wallet-balance {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wallet-icon {
  font-size: 2rem;
}

.wallet-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wallet-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.wallet-stats {
  display: flex;
  gap: 32px;
}

.wallet-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wallet-stat-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.wallet-actions {
  display: flex;
  gap: 12px;
}

/* Wallet inline (game page) */
.wallet-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  margin-bottom: 24px;
}

/* ===================================
   GAME SECTION
   =================================== */
.game-container,
.game-container-full {
  display: flex;
  justify-content: center;
}

.game-frame {
  width: 100%;
  max-width: 900px;
  padding: 4px;
  position: relative;
}

.game-frame-full {
  width: 100%;
  padding: 4px;
  position: relative;
}

.game-glow {
  box-shadow: var(--shadow-glow-strong);
  border-color: var(--border-glow);
}

.game-glow:hover {
  box-shadow: 0 0 80px rgba(96, 165, 250, 0.18);
}

.game-iframe {
  width: 100%;
  height: 560px;
  border: none;
  border-radius: calc(var(--radius-xl) - 4px);
  background: var(--bg-primary);
}

.game-iframe-full {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  border: none;
  border-radius: calc(var(--radius-xl) - 4px);
  background: var(--bg-primary);
}

.game-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

/* Game page */
.game-page-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
  min-height: 100vh;
}

.game-page-header {
  text-align: center;
  margin-bottom: 24px;
}

.game-info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.game-info-item {
  padding: 24px;
}

.game-info-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent-primary);
}

.game-info-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.game-page-disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.game-page-disclaimer a {
  color: var(--text-secondary);
  text-decoration: underline;
}

/* ===================================
   HOW IT WORKS
   =================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================
   FEATURES
   =================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================
   REWARDS PREVIEW
   =================================== */
.rewards-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rewards-info .section-title {
  text-align: left;
}

.rewards-info .section-subtitle {
  text-align: left;
  margin: 0 0 24px;
}

.rewards-info .section-badge {
  display: inline-block;
}

.tier-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tier-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
}

.tier-bronze {
  background: rgba(180, 130, 80, 0.15);
  color: #D4A574;
  border: 1px solid rgba(180, 130, 80, 0.3);
}

.tier-silver {
  background: rgba(148, 163, 184, 0.15);
  color: #CBD5E1;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.tier-gold {
  background: rgba(253, 224, 71, 0.1);
  color: #FDE047;
  border: 1px solid rgba(253, 224, 71, 0.25);
}

.tier-diamond {
  background: rgba(96, 165, 250, 0.12);
  color: #60A5FA;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.tier-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Progress Card */
.progress-card {
  padding: 32px;
}

.progress-title {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.progress-tier-current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.progress-xp {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.progress-bar-wrapper {
  margin-bottom: 12px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: var(--radius-full);
  transition: width 1s var(--ease-smooth);
}

.progress-next {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.daily-streak {
  border-top: 1px solid var(--border-glass);
  padding-top: 20px;
}

.streak-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.streak-dots {
  display: flex;
  gap: 8px;
}

.streak-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.08);
  border: 2px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.streak-dot.filled {
  background: rgba(96, 165, 250, 0.25);
  border-color: var(--accent-primary);
}

.streak-dot.bonus {
  border-color: rgba(253, 224, 71, 0.3);
  background: rgba(253, 224, 71, 0.08);
}

/* ===================================
   LEADERBOARD
   =================================== */
.leaderboard-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 8px;
  overflow: hidden;
}

.leaderboard-header-row {
  display: grid;
  grid-template-columns: 60px 1fr 120px;
  padding: 12px 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border-glass);
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 60px 1fr 120px;
  padding: 16px 20px;
  align-items: center;
  border-bottom: 1px solid var(--border-glass);
  transition: background var(--transition-fast);
}

.leaderboard-row:last-child {
  border-bottom: none;
}

.leaderboard-row:hover {
  background: rgba(96, 165, 250, 0.04);
}

.lb-rank {
  font-weight: 700;
  font-size: 1.1rem;
}

.lb-player {
  font-weight: 500;
}

.lb-score {
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent-primary);
}

.lb-gold { background: rgba(253, 224, 71, 0.04); }
.lb-silver { background: rgba(148, 163, 184, 0.04); }
.lb-bronze { background: rgba(180, 130, 80, 0.04); }

.lb-you {
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: var(--radius-md);
}

/* ===================================
   ACHIEVEMENTS
   =================================== */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.achievement-card {
  padding: 24px;
  text-align: center;
}

.achievement-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.locked-icon {
  opacity: 0.3;
  filter: grayscale(0.8);
}

.achievement-name {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.achievement-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.achievement-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: #34D399;
}

.achievement-status.locked {
  color: var(--text-muted);
}

.achievement-card.unlocked {
  border-color: rgba(52, 211, 153, 0.15);
}

/* ===================================
   SOCIAL CTA
   =================================== */
.social-cta-card {
  padding: 48px;
  text-align: center;
}

.social-cta-content .section-title {
  text-align: center;
  margin-bottom: 12px;
}

.social-cta-content .section-subtitle {
  margin-bottom: 24px;
}

.referral-box {
  display: flex;
  gap: 8px;
  max-width: 500px;
  margin: 0 auto 24px;
}

.referral-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.social-share {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.share-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--accent-primary);
  transition: all var(--transition-base);
}

.share-btn:hover {
  background: rgba(96, 165, 250, 0.2);
  transform: translateY(-2px);
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

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

/* ===================================
   FINAL CTA
   =================================== */
.final-cta {
  text-align: center;
  position: relative;
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.final-cta-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.footer-copy p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===================================
   PAGE HERO (Inner pages)
   =================================== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 60px) 0 60px;
  overflow: hidden;
}

.page-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================
   LEGAL CONTENT
   =================================== */
.legal-content {
  padding: 60px 0 100px;
}

.legal-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
}

.legal-card h2 {
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-card ul,
.legal-card ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-card ol {
  list-style: decimal;
}

.legal-card li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-card a {
  color: var(--accent-primary);
}

.legal-card a:hover {
  text-decoration: underline;
}

.responsible-callout {
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.responsible-callout p {
  color: var(--text-primary);
  margin-bottom: 0;
}

/* ===================================
   REWARDS PAGE
   =================================== */
.rewards-daily {
  padding: 60px 0 80px;
}

.daily-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.daily-card {
  padding: 20px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.daily-day {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.daily-reward {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.daily-status {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.daily-card.claimed {
  border-color: rgba(52, 211, 153, 0.15);
}

.daily-card.claimed .daily-status {
  color: #34D399;
}

.daily-card.available {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.daily-card.locked {
  opacity: 0.5;
}

.daily-card.bonus-day .daily-reward {
  color: var(--accent-highlight);
}

.daily-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent-highlight);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Loyalty Tiers */
.loyalty-tiers {
  padding: 60px 0 80px;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tier-card {
  padding: 32px 24px;
  position: relative;
}

.tier-card-badge {
  margin-bottom: 16px;
}

.current-tier-label {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(96, 165, 250, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 12px;
}

.tier-card h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.tier-perks {
  list-style: none;
  margin-bottom: 16px;
}

.tier-perks li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-glass);
  line-height: 1.5;
}

.tier-perks li:last-child {
  border-bottom: none;
}

.tier-req {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.tier-card.active-tier {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.rewards-progress {
  padding: 0 0 80px;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-content {
  padding: 60px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card {
  padding: 36px;
}

.about-card h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-values {
  list-style: none;
}

.about-values li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.about-values li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 0.7rem;
  top: 4px;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
  padding: 60px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrapper {
  padding: 40px;
}

.contact-form-wrapper h2 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.form-input.error {
  border-color: #F87171;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-error {
  display: block;
  font-size: 0.75rem;
  color: #F87171;
  margin-top: 4px;
  min-height: 1em;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent-primary);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  padding: 28px;
}

.contact-info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-glass);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-method-icon {
  font-size: 1.5rem;
}

.contact-method-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-method-value {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-quick-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-quick-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.contact-quick-links a:hover {
  color: var(--accent-primary);
}

/* ===================================
   TOAST NOTIFICATIONS
   =================================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 16px 24px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.85rem;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.4s var(--ease-smooth) forwards;
  max-width: 360px;
}

.toast.success {
  border-color: rgba(52, 211, 153, 0.3);
}

.toast.info {
  border-color: var(--border-glow);
}

.toast.removing {
  animation: toastOut 0.3s var(--ease-smooth) forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(40px);
  }
}
/* ENDFILE */