/* ============================================================
   CSDROP GIVEAWAY — Main Stylesheet
   ============================================================ */

:root {
  --bg-primary: #050508;
  --bg-secondary: #0a0a12;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 107, 53, 0.3);

  --orange: #ff6b35;
  --orange-dark: #e55a25;
  --orange-glow: rgba(255, 107, 53, 0.2);
  --cyan: #00d4ff;
  --cyan-glow: rgba(0, 212, 255, 0.2);
  --gold: #ffd700;
  --gold-glow: rgba(255, 215, 0, 0.2);

  --text-primary: #ffffff;
  --text-secondary: #9a9ab0;
  --text-muted: #5a5a72;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow-orange: 0 0 40px rgba(255, 107, 53, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; font-family: 'Inter', sans-serif; }

.gradient-text {
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 50%, #ff6b35 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.accent { color: var(--orange); }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 16px auto 0;
}

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid var(--border-glow);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #e55a25);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--orange-glow);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,53,0.4); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-glow);
}

.btn-large { padding: 18px 36px; font-size: 1rem; border-radius: var(--radius-lg); }

.pulse-btn { animation: pulseShadow 2.5s ease-in-out infinite; }
@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,107,53,0.3); }
  50% { box-shadow: 0 4px 40px rgba(255,107,53,0.6), 0 0 60px rgba(255,107,53,0.2); }
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.btn-nav-cta {
  background: linear-gradient(135deg, #ff6b35, #e55a25);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: var(--transition);
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,107,53,0.4); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(5, 5, 8, 0.97);
  border-top: 1px solid var(--border-subtle);
}
.nav-mobile-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-mobile-menu a:hover { color: var(--orange); }
.nav-mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
#particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(255,107,53,0.12), transparent),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(0,212,255,0.06), transparent),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(255,215,0,0.06), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(0.85); } }

.hero-title { margin-bottom: 24px; }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ---- COUNTDOWN ---- */
.countdown-container { margin-bottom: 48px; }
.countdown-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  min-width: 80px;
}
.countdown-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.countdown-unit-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.countdown-sep {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-muted);
  align-self: flex-start;
  margin-top: 12px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1.5s both;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(4px); } }

/* ---- STATS BAR ---- */
.stats-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
}
.stats-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 24px;
}
.stat-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 48px; background: var(--border-subtle); }
.live-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34,197,94,0.8);
  animation: dotPulse 1.5s ease-in-out infinite;
}

/* ---- PRIZES ---- */
.prizes-section { background: var(--bg-secondary); }
.total-banner {
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,215,0,0.05));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  margin-bottom: 48px;
}
.total-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.total-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.total-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.total-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---- SKIN CARDS ---- */
.prize-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.bonus-wide { grid-column: span 3; }

.skin-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
}
.skin-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card), var(--shadow-glow-orange);
}
.skin-card-place {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--border-subtle);
  z-index: 2;
}
.skin-card-rarity {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}
.covert-rarity { background: rgba(235,75,75,0.2); color: #eb4b4b; border: 1px solid rgba(235,75,75,0.4); }
.contraband-rarity { background: rgba(228,174,57,0.2); color: #e4ae39; border: 1px solid rgba(228,174,57,0.4); }
.knife-rarity { background: rgba(255,215,0,0.15); color: #ffd700; border: 1px solid rgba(255,215,0,0.4); }
.mixed-rarity { background: rgba(255,107,53,0.15); color: var(--orange); border: 1px solid var(--border-glow); }

/* Skin card visual area */
.skin-card-bg {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.covert .skin-card-bg { background: linear-gradient(135deg, #0d0000, #3d0000, #6b0000, #3d0000); }
.contraband .skin-card-bg { background: linear-gradient(135deg, #0d0800, #3d2000, #6b3500, #3d2000); }
.knife .skin-card-bg { background: linear-gradient(135deg, #0d0a00, #1a1000, #302000, #231800); }
.bonus-pool .skin-card-bg { display: none; }

/* Weapon SVG art */
.weapon-svg {
  max-width: 88%;
  max-height: 74%;
  object-fit: contain;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,0.4));
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), filter 0.35s ease;
}
.skin-card:hover .weapon-svg {
  transform: scale(1.1) translateY(-4px);
  filter: drop-shadow(0 10px 32px rgba(0,0,0,0.55));
}

.skin-card-body {
  padding: 20px 20px 8px;
  flex: 1;
}
.skin-weapon-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.skin-skin-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 6px;
}
.skin-wear { font-size: 0.72rem; color: var(--text-muted); }

.skin-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border-subtle);
}
.skin-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}
.skin-stattrak {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #e4ae39;
  background: rgba(228,174,57,0.1);
  border: 1px solid rgba(228,174,57,0.3);
  padding: 3px 8px;
  border-radius: 4px;
}
.skin-badge-rare {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--cyan);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Bonus pool card */
.bonus-pool-content { padding: 32px; flex: 1; }
.bonus-pool-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bonus-pool-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.bonus-skins { display: flex; flex-wrap: wrap; gap: 8px; }
.bonus-skin-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  padding: 4px 12px;
  border-radius: 50px;
  transition: var(--transition);
}
.bonus-skin-tag:hover { border-color: var(--border-glow); color: var(--text-primary); }

.prizes-cta { text-align: center; }

/* ---- HOW TO ENTER ---- */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step-card {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}
.step-card:hover { border-color: var(--border-glow); background: var(--bg-card-hover); transform: translateY(-4px); }
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: var(--bg-secondary);
  border: 1px solid var(--border-glow);
  padding: 4px 12px;
  border-radius: 50px;
}
.step-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,107,53,0.1);
  border: 1px solid var(--border-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-subtle), var(--border-glow), var(--border-subtle));
  flex-shrink: 0;
  align-self: center;
  position: relative;
  top: -20px;
}

/* ---- ODDS ---- */
.odds-section { background: var(--bg-secondary); }
.odds-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 20px;
}
.odds-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.featured-odds {
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,215,0,0.05));
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-orange);
}
.odds-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.featured-odds .odds-value { color: var(--gold); font-size: 2.4rem; }
.odds-label { font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; }
.odds-sub { font-size: 0.78rem; color: var(--text-muted); }

/* ---- ELIGIBILITY ---- */
.eligibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.eligibility-text .section-tag { display: inline-block; margin-bottom: 16px; }
.eligibility-text h2 { margin-bottom: 16px; }
.eligibility-text > p { color: var(--text-secondary); margin-bottom: 32px; }
.eligibility-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.eligibility-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.eligibility-list svg { flex-shrink: 0; }

/* Steam card visual */
.steam-card {
  background: #1b2838;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}
.steam-card-header {
  background: linear-gradient(135deg, #2a475e, #1b2838);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.steam-status {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid var(--border-glow);
  padding: 3px 10px;
  border-radius: 50px;
}
.steam-card-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }
.steam-field { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.steam-field-label { color: #8f98a0; }
.steam-field-value { color: #c7d5e0; font-weight: 600; }
.eligibility-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border-glow); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-icon { flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- TERMS ---- */
.terms-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.terms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.terms-header:hover { background: var(--bg-card-hover); }
.terms-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.terms-toggle-icon { transition: var(--transition); color: var(--text-muted); }
.terms-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid transparent;
}
.terms-content.open {
  max-height: 3000px;
  border-top-color: var(--border-subtle);
}
.terms-body {
  padding: 32px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.terms-body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin: 24px 0 10px;
}
.terms-body h4:first-child { margin-top: 0; }
.terms-body p { margin-bottom: 0; }
.terms-footer-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- FOOTER ---- */
.footer {
  background: #03030a;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo { margin-bottom: 16px; display: inline-flex; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; max-width: 280px; }
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
}
.footer-links h4, .footer-info h4, .footer-cta-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.footer-links ul, .footer-info ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-info li { font-size: 0.85rem; color: var(--text-muted); }
.footer-cta-col p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.footer-countdown-mini {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-countdown-mini span { color: var(--orange); font-weight: 700; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: #0e0e18;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--border-subtle) transparent;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transition: var(--transition);
  z-index: 1;
}
.modal-close:hover { color: var(--text-primary); background: rgba(255,255,255,0.1); }
.modal-header {
  text-align: center;
  padding: 40px 40px 0;
}
.modal-logo { margin-bottom: 20px; }
.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- FORM ---- */
.modal-form { padding: 32px 40px 40px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.required { color: var(--orange); }
.optional { color: var(--text-muted); font-weight: 400; font-size: 0.75rem; }
.input-wrapper { position: relative; }
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.input-wrapper input, .modal-form input[type="text"], .modal-form input[type="email"] {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  padding: 12px 14px 12px 42px;
  outline: none;
  transition: var(--transition);
}
.input-wrapper input:focus, .modal-form input:focus {
  border-color: var(--orange);
  background: rgba(255,107,53,0.04);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}
.input-wrapper input::placeholder { color: var(--text-muted); }
.input-wrapper input.error { border-color: #ef4444; }
.field-hint {
  margin-top: 6px;
  font-size: 0.73rem;
  color: var(--text-muted);
}
.field-error {
  margin-top: 6px;
  font-size: 0.73rem;
  color: #ef4444;
  font-weight: 500;
  min-height: 16px;
}

/* Checkboxes */
.form-checkboxes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 2px 0;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-subtle);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-top: 1px;
  background: rgba(255,255,255,0.03);
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--orange);
  border-color: var(--orange);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(1px, -1px);
  display: block;
}
.checkbox-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.checkbox-text a { color: var(--orange); }
.checkbox-text a:hover { text-decoration: underline; }
.checkbox-text strong { color: var(--text-primary); }

.modal-entry-count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding: 10px 14px;
  background: rgba(0,212,255,0.04);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: var(--radius-sm);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  position: relative;
}
.submit-spinner { display: none; }
.btn-submit.loading .submit-text { opacity: 0; }
.btn-submit.loading .submit-spinner { display: flex; position: absolute; }
.spin { animation: spinAnim 0.8s linear infinite; }
@keyframes spinAnim { to { transform: rotate(360deg); } }

.modal-fine-print {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .prize-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .eligibility-grid { grid-template-columns: 1fr; gap: 40px; }
  .odds-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .prize-grid { grid-template-columns: 1fr; }
  .bonus-wide { grid-column: span 1; }
  .steps-grid { flex-direction: column; gap: 24px; }
  .step-connector { width: 2px; height: 32px; align-self: center; background: linear-gradient(180deg, var(--border-subtle), var(--border-glow), var(--border-subtle)); top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .countdown { gap: 4px; }
  .countdown-unit { min-width: 64px; padding: 12px; }
  .countdown-value { font-size: 1.8rem; }
  .stats-bar-container { gap: 16px; }
  .stat-divider { display: none; }
  .modal-header { padding: 32px 24px 0; }
  .modal-form { padding: 24px; }
  .odds-grid { grid-template-columns: 1fr; }
  .total-banner-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-large { text-align: center; justify-content: center; }
  .hero-trust { gap: 16px; }
  .modal { border-radius: var(--radius-lg); }
}
