/* ============================================================================
   PokerSweepStars Landing Page - Modern Dark Theme
   ============================================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --text-primary: #f0f0f5;
  --text-secondary: #9898a8;
  --text-muted: #5c5c6e;

  --accent-cyan: #00d4d4;
  --accent-cyan-glow: rgba(0, 212, 212, 0.15);
  --accent-gold: #fbbf24;
  --accent-gold-glow: rgba(251, 191, 36, 0.15);
  --accent-green: #22c55e;
  --accent-green-glow: rgba(34, 197, 94, 0.15);
  --accent-purple: #a855f7;
  --accent-red: #ef4444;
  --accent-orange: #f97316;

  --gradient-primary: linear-gradient(135deg, #00d4d4 0%, #0088aa 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #0d1b2a 40%, #1a0a1e 100%);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow-cyan: 0 0 40px rgba(0, 212, 212, 0.2);
  --shadow-glow-gold: 0 0 40px rgba(251, 191, 36, 0.2);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 212, 212, 0.3);
  animation: glow-pulse 3s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 212, 212, 0.5), 0 0 60px rgba(0, 212, 212, 0.15);
  animation: none;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(0, 212, 212, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(0, 212, 212, 0.45), 0 0 40px rgba(0, 212, 212, 0.1); }
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: var(--accent-cyan-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-xl {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  overflow: hidden;
  max-height: 50px;
}

.nav-logo .logo-img,
.footer-logo .logo-img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  display: inline-block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--accent-cyan);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 300px;
  margin-top: 24px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-gradient::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 212, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(0, 212, 212, 0.4);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.hero-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  font-size: 64px;
  opacity: 0.04;
  animation: card-float 8s ease-in-out infinite;
}

.card-1 { top: 15%; left: 8%; animation-delay: 0s; }
.card-2 { top: 25%; right: 10%; animation-delay: 2s; color: #ef4444; }
.card-3 { bottom: 20%; left: 15%; animation-delay: 4s; color: #ef4444; }
.card-4 { bottom: 30%; right: 8%; animation-delay: 6s; }

@keyframes card-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  75% { transform: translateY(20px) rotate(-5deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 212, 212, 0.08);
  border: 1px solid rgba(0, 212, 212, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-cyan);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  opacity: 0.6;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(4px, 4px); }
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-cyan-glow);
  border: 1px solid rgba(0, 212, 212, 0.15);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Features Section --- */
.features {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: rgba(22, 22, 31, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(28, 28, 40, 0.8);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-highlight {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(0, 212, 212, 0.06) 0%, var(--bg-card) 100%);
  border-color: rgba(0, 212, 212, 0.12);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.icon-cyan { background: var(--accent-cyan-glow); color: var(--accent-cyan); }
.icon-gold { background: var(--accent-gold-glow); color: var(--accent-gold); }
.icon-green { background: var(--accent-green-glow); color: var(--accent-green); }
.icon-purple { background: rgba(168, 85, 247, 0.15); color: var(--accent-purple); }
.icon-red { background: rgba(239, 68, 68, 0.15); color: var(--accent-red); }
.icon-orange { background: rgba(249, 115, 22, 0.15); color: var(--accent-orange); }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Tournaments Section --- */
.tournaments {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.tournament-schedule {
  max-width: 1000px;
  margin: 0 auto 48px;
}

.schedule-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.schedule-label {
  flex-shrink: 0;
  width: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
}

.currency-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
}

.currency-badge.pkcash {
  background: var(--accent-gold-glow);
  color: var(--accent-gold);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.currency-badge.playcoins {
  background: var(--accent-cyan-glow);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 212, 212, 0.2);
}

.schedule-days {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.schedule-time {
  font-size: 13px;
  color: var(--text-muted);
}

.schedule-tiers {
  display: flex;
  gap: 16px;
  flex: 1;
}

.tier-card {
  flex: 1;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.tier-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.tier-medal {
  font-size: 32px;
  margin-bottom: 8px;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tier-buyin {
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.tier-details {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.tier-bronze { border-color: rgba(205, 127, 50, 0.2); }
.tier-bronze:hover { border-color: rgba(205, 127, 50, 0.4); box-shadow: 0 4px 24px rgba(205, 127, 50, 0.1); }
.tier-silver { border-color: rgba(192, 192, 192, 0.2); }
.tier-silver:hover { border-color: rgba(192, 192, 192, 0.4); box-shadow: 0 4px 24px rgba(192, 192, 192, 0.1); }
.tier-gold { border-color: rgba(255, 215, 0, 0.2); }
.tier-gold:hover { border-color: rgba(255, 215, 0, 0.4); box-shadow: 0 4px 24px rgba(255, 215, 0, 0.1); }

.schedule-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 24px 0;
}

.tournament-info-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.info-card {
  padding: 20px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
}

.info-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.info-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.info-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.section-cta {
  text-align: center;
}

/* --- How It Works --- */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-primary);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), rgba(0, 212, 212, 0.2), var(--border));
  margin-top: 32px;
  flex-shrink: 0;
}

/* --- Game Modes --- */
.game-modes {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mode-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mode-card:hover {
  transform: translateY(-4px);
}

.mode-playcoins {
  background: linear-gradient(135deg, rgba(0, 212, 212, 0.05) 0%, var(--bg-card) 100%);
  border-color: rgba(0, 212, 212, 0.12);
}

.mode-playcoins:hover {
  border-color: rgba(0, 212, 212, 0.25);
  box-shadow: var(--shadow-glow-cyan);
}

.mode-pkcash {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, var(--bg-card) 100%);
  border-color: rgba(251, 191, 36, 0.12);
}

.mode-pkcash:hover {
  border-color: rgba(251, 191, 36, 0.25);
  box-shadow: var(--shadow-glow-gold);
}

.mode-training {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, var(--bg-card) 100%);
  border-color: rgba(168, 85, 247, 0.12);
}

.mode-training:hover {
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.15);
}

.mode-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-cyan-glow);
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mode-badge-gold {
  background: var(--accent-gold-glow);
  color: var(--accent-gold);
}

.mode-badge-purple {
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent-purple);
}

.mode-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.mode-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.mode-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mode-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.mode-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  font-size: 14px;
}

/* --- Standout Features Section --- */
.standout-features {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.standout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.standout-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.standout-voice {
  background: linear-gradient(135deg, rgba(0, 212, 212, 0.05) 0%, var(--bg-card) 100%);
  border-color: rgba(0, 212, 212, 0.12);
}

.standout-voice:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 212, 0.25);
  box-shadow: var(--shadow-glow-cyan);
}

.standout-video {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, var(--bg-card) 100%);
  border-color: rgba(251, 191, 36, 0.12);
}

.standout-video:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.25);
  box-shadow: var(--shadow-glow-gold);
}

.standout-private {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, var(--bg-card) 100%);
  border-color: rgba(168, 85, 247, 0.12);
}

.standout-private:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.15);
}

.standout-logs {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, var(--bg-card) 100%);
  border-color: rgba(34, 197, 94, 0.12);
}

.standout-logs:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.25);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.15);
}

.standout-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.standout-voice .standout-icon {
  background: var(--accent-cyan-glow);
  color: var(--accent-cyan);
}

.standout-video .standout-icon {
  background: var(--accent-gold-glow);
  color: var(--accent-gold);
}

.standout-private .standout-icon {
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent-purple);
}

.standout-logs .standout-icon {
  background: var(--accent-green-glow);
  color: var(--accent-green);
}

.standout-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.standout-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.standout-card .mode-features {
  margin-top: 0;
}

.standout-social {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, var(--bg-card) 100%);
  border-color: rgba(249, 115, 22, 0.12);
}

.standout-social:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.15);
}

.standout-social .standout-icon {
  background: rgba(249, 115, 22, 0.15);
  color: var(--accent-orange);
}

.standout-social-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}

/* --- Influencer Section --- */
.influencers {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.influencer-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.influencer-content {
  max-width: 600px;
}

.influencer-content .section-tag {
  margin-bottom: 16px;
}

.influencer-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.influencer-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.influencer-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.perk-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.perk strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.perk span {
  font-size: 14px;
  color: var(--text-muted);
}

.influencer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.influencer-contact {
  font-size: 14px;
  color: var(--text-muted);
}

.influencer-contact a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.influencer-contact a:hover {
  color: #fff;
}

.influencer-visual {
  position: relative;
  height: 400px;
}

.influencer-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.inf-card {
  position: absolute;
  width: 280px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.inf-card:hover {
  transform: translateX(-8px) !important;
  border-color: var(--accent-cyan);
}

.inf-1 { top: 40px; left: 20px; transform: rotate(-2deg); }
.inf-2 { top: 160px; left: 60px; transform: rotate(1deg); }
.inf-3 { top: 280px; left: 30px; transform: rotate(-1deg); }

.inf-avatar {
  font-size: 32px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-cyan-glow);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.inf-name {
  font-weight: 600;
  font-size: 15px;
}

/* --- Social Proof --- */
.social-proof {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.proof-stars {
  color: var(--accent-gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.proof-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.proof-author {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Final CTA --- */
.final-cta {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 212, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-fine-print {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Footer --- */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================================
   Responsive Design
   ============================================================================ */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-highlight {
    grid-column: span 1;
  }

  .modes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modes-grid .mode-card:last-child {
    grid-column: span 2;
  }

  .standout-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .influencer-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .influencer-visual {
    display: none;
  }

  .influencer-content .section-title {
    text-align: center;
  }

  .influencer-content {
    max-width: 100%;
    text-align: center;
  }

  .influencer-desc {
    max-width: 600px;
    margin: 0 auto 36px;
  }

  .influencer-perks {
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: left;
  }

  .influencer-cta {
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .tournament-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: 100svh;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .schedule-row {
    flex-direction: column;
    gap: 16px;
  }

  .schedule-label {
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding-top: 0;
    gap: 12px;
    flex-wrap: wrap;
  }

  .schedule-tiers {
    flex-direction: column;
  }

  .tournament-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    margin-top: 0;
  }

  .step-card {
    max-width: 400px;
  }

  .modes-grid {
    grid-template-columns: 1fr;
  }

  .modes-grid .mode-card:last-child {
    grid-column: span 1;
  }

  .standout-grid {
    grid-template-columns: 1fr;
  }

  .standout-social {
    grid-column: span 1;
  }

  .standout-social-features {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .features, .tournaments, .how-it-works, .game-modes, .standout-features, .influencers, .final-cta {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .tier-card {
    padding: 16px;
  }

  .feature-card {
    padding: 24px;
  }
}

/* --- Store Buttons --- */
.store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.store-buttons-center {
  margin-top: 32px;
  margin-bottom: 24px;
}

.store-btn {
  display: inline-flex;
  transition: all 0.25s ease;
  border-radius: 8px;
  overflow: hidden;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  opacity: 0.9;
}

.store-btn svg {
  display: block;
}

/* --- Trust Bar --- */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-icon {
  font-size: 16px;
}

/* --- Sticky CTA (appears after scroll) --- */
.nav.scrolled .nav-actions .btn-primary {
  box-shadow: 0 2px 16px rgba(0, 212, 212, 0.35);
}

/* --- Hero Bonus Amount --- */
.hero-bonus {
  margin-bottom: 16px;
}

.bonus-amount {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 3s linear infinite;
  display: block;
  line-height: 1.1;
  filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.3));
}

@keyframes gold-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.bonus-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 4px;
}

/* --- Flip Cards --- */
.flip-card {
  perspective: 1000px;
  height: 260px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.flip-card-front {
  z-index: 2;
}

.flip-card-front .feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.flip-hint {
  margin-top: auto;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.5;
}

.flip-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, rgba(0, 212, 212, 0.08) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(0, 212, 212, 0.15);
  padding: 32px;
  justify-content: center;
  gap: 16px;
}

.flip-card-back h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-cyan);
}

.flip-card-back p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.flip-card-back .btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  align-self: flex-start;
}

/* Touch devices: tap to flip */
@media (hover: none) {
  .flip-card {
    cursor: pointer;
  }

  .flip-hint {
    display: block;
  }

  .flip-hint::after {
    content: ' (tap)';
  }
}

/* --- Sticky Mobile CTA --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  animation: none;
  font-size: 15px;
  padding: 14px 24px;
}

/* --- Social Proof Toast --- */
/* --- Floating Chat Bubble --- */
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 212, 212, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(0, 212, 212, 0.7), 0 0 15px rgba(0, 212, 212, 0.3); }
}

@keyframes chatBounceIn {
  0% { transform: scale(0) translateY(20px); opacity: 0; }
  50% { transform: scale(1.1) translateY(-5px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* --- Available States Section --- */
.states-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.states-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.states-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.states-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.states-count {
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0, 212, 212, 0.1);
  color: var(--accent-cyan);
}

.states-restricted .states-count {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.states-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.states-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 36px;
  background: rgba(0, 212, 212, 0.08);
  border: 1px solid rgba(0, 212, 212, 0.15);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.5px;
}

.states-list-restricted span {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.states-eligible-note,
.states-restricted-note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

.states-info {
  margin-top: 32px;
  padding: 24px;
  background: rgba(0, 212, 212, 0.04);
  border: 1px solid rgba(0, 212, 212, 0.1);
  border-radius: var(--radius-md);
}

.states-info-item {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.states-info-item strong {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .states-grid {
    grid-template-columns: 1fr;
  }

  .states-list span {
    width: 42px;
    height: 32px;
    font-size: 12px;
  }
}

/* Inline partner/influencer form */
.partner-form {
  margin-top: 32px;
  max-width: 520px;
  background: rgba(22, 22, 31, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  animation: chatBounceIn 0.3s ease-out;
}

.partner-form-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.partner-form-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-form-inner p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.partner-form-inner input,
.partner-form-inner textarea {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.partner-form-inner input:focus,
.partner-form-inner textarea:focus {
  border-color: var(--accent-cyan);
}

.partner-form-inner textarea {
  resize: vertical;
  min-height: 80px;
}

.partner-form-inner .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.partner-form-success {
  text-align: center;
  padding: 24px 20px;
}

.partner-form-success .success-icon {
  font-size: 36px;
  margin-bottom: 8px;
}

.partner-form-success p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* --- Mid-Scroll CTA Bar --- */
.mid-scroll-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12) 0%, rgba(10, 10, 15, 0.98) 100%);
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.mid-scroll-cta.visible {
  transform: translateY(0);
}

.mid-scroll-cta span {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-gold);
}

.mid-scroll-cta .btn-sm {
  padding: 8px 18px;
  font-size: 13px;
  animation: none;
}

.mid-scroll-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}

.mid-scroll-close:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }


  .mid-scroll-cta span {
    font-size: 12px;
  }

  .flip-card {
    height: 240px;
  }

  .mid-scroll-cta {
    gap: 10px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .flip-card {
    height: auto;
    min-height: 220px;
  }
}

/* --- Animations for scroll-in --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   Sweepstakes Disclosure Bar (fixed at top, above nav)
   ============================================================================ */
.sweeps-disclosure-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #0a0a12;
  border-bottom: 1px solid rgba(0, 212, 212, 0.25);
  color: #e5e5ee;
  font-size: 12.5px;
  line-height: 1.5;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.sweeps-disclosure-bar.dismissed {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.sweeps-disclosure-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 44px 8px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 12px;
  text-align: center;
}

.sweeps-disclosure-close {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #b5b5c2;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.sweeps-disclosure-close:hover,
.sweeps-disclosure-close:focus-visible {
  color: #fff;
  border-color: rgba(0, 212, 212, 0.6);
  background: rgba(0, 212, 212, 0.08);
  outline: none;
}

.sweeps-disclosure-inner strong {
  color: #fff;
  font-weight: 700;
}

.sweeps-disclosure-inner a {
  color: #00d4d4;
  text-decoration: underline;
  white-space: nowrap;
}

.sweeps-disclosure-inner a:hover {
  color: #5ef2f2;
}

/* Nav and hero get offset by the disclosure bar height (set by JS). */
.nav {
  top: var(--disclosure-h, 44px) !important;
}

.hero {
  padding-top: calc(120px + var(--disclosure-h, 44px)) !important;
}

@media (max-width: 768px) {
  .sweeps-disclosure-inner {
    padding: 8px 14px;
    font-size: 11.5px;
    gap: 2px 10px;
  }
  .hero {
    padding-top: calc(100px + var(--disclosure-h, 64px)) !important;
  }
}

/* ============================================================================
   Hero Sweepstakes Clarification Note
   ============================================================================ */
.hero-sweeps-note {
  max-width: 640px;
  margin: 10px auto 4px;
  padding: 10px 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #c9c9d3;
  background: rgba(0, 212, 212, 0.05);
  border: 1px solid rgba(0, 212, 212, 0.18);
  border-radius: var(--radius-md);
  text-align: center;
}

.hero-sweeps-note strong {
  color: #fff;
  font-weight: 700;
}

/* ============================================================================
   Sweepstakes Terms & Disclosures Section
   ============================================================================ */
.sweeps-terms {
  padding: 80px 0 60px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sweeps-terms-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.sweeps-terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.sweeps-term-card {
  padding: 24px;
  background: #0f0f17;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.sweeps-term-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.sweeps-term-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}

.sweeps-term-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #b5b5c2;
  margin: 0;
}

.sweeps-term-card p strong {
  color: #fff;
}

.sweeps-term-card a {
  color: #00d4d4;
  text-decoration: underline;
}

.sweeps-term-card a:hover {
  color: #5ef2f2;
}

.sweeps-terms-footnote {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 18px 22px;
  border: 1px dashed var(--border-hover);
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
}

.sweeps-terms-footnote strong {
  color: #e7e7ee;
}

@media (max-width: 640px) {
  .sweeps-disclosure-inner {
    padding: 8px 14px;
    font-size: 12px;
  }
  .sweeps-terms {
    padding: 60px 0 40px;
  }
  .sweeps-term-card {
    padding: 20px;
  }
}
