/* ============ TYPOGRAPHY ============ */
h1, h2, h3, .font-display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }

.eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-600);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--color-gold-600);
}

.section-title {
  font-size: var(--text-2xl);
  color: var(--color-navy-900);
  margin-block: var(--space-3) var(--space-4);
}
.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.65;
}
.section-head { margin-bottom: var(--space-12); }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .section-subtitle { margin-inline: auto; }

.gold-text {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ LAYOUT ============ */
section { padding-block: var(--space-24); position: relative; }
.section-tight { padding-block: var(--space-16); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: background var(--transition-interactive, var(--transition)), color var(--transition), box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gradient-cta);
  color: var(--color-navy-950);
  box-shadow: var(--shadow-gold);
  border: 1px solid transparent;
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(230, 179, 37, 0.5); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-lg { padding: 1.15rem 2.5rem; font-size: var(--text-base); }

.btn-outline {
  background: transparent;
  color: var(--color-text-inverse);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--color-gold-400); color: var(--color-gold-300); background: rgba(255,255,255,0.05); }

.btn-ghost {
  background: transparent;
  color: var(--color-navy-800);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover { border-color: var(--color-navy-700); background: var(--color-surface-2); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: var(--space-4);
  transition: background var(--transition-slow), box-shadow var(--transition-slow), padding var(--transition-slow), border-color var(--transition-slow);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 19, 48, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding-block: var(--space-3);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); }

.brand { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; }
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-word-svg {
  width: 136px;
  height: 36px;
  color: var(--color-text-inverse);
  flex-shrink: 0;
}
.brand-word-svg text { paint-order: stroke; }
.footer-brand .brand-word-svg { width: 136px; height: 36px; color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  position: relative;
  padding-block: var(--space-1);
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--color-gold-400);
  transition: right var(--transition-interactive, 220ms ease-out);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.link-signin {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 0.6rem 1rem;
}
.link-signin:hover { color: #fff; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  color: #fff;
  align-items: center;
  justify-content: center;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mix-blend-mode: screen;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,11,31,0.96) 0%, rgba(6,11,31,0.75) 45%, rgba(6,11,31,0.35) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-16);
  align-items: center;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-xs);
  font-weight: 500;
}
.trust-chip svg { width: 14px; height: 14px; color: var(--color-gold-400); flex-shrink: 0; }

.hero-title {
  font-size: var(--text-hero);
  color: #fff;
  line-height: 1.02;
  margin-bottom: var(--space-6);
}
.hero-title .line2 { display: block; }

.hero-desc {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: var(--space-8);
  line-height: 1.55;
}

.hero-cta-row { display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; margin-bottom: var(--space-10); }
.cta-note { display: flex; flex-direction: column; gap: 2px; }
.cta-note strong { color: #fff; font-size: var(--text-sm); }
.cta-note span { color: rgba(255,255,255,0.55); font-size: var(--text-xs); }

.hero-stats {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.hero-stat span { font-size: var(--text-xs); color: rgba(255,255,255,0.55); }

/* Hero jackpot card */
.jackpot-card {
  position: relative;
  background: var(--gradient-navy-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  text-align: center;
}
.jackpot-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.18), transparent 60%);
}
.jackpot-card > * { position: relative; z-index: 1; }
.jackpot-label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.jackpot-value {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 2rem + 3vw, 4rem);
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.jackpot-sub { color: rgba(255,255,255,0.65); font-size: var(--text-sm); margin-bottom: var(--space-6); }

.countdown { display: flex; justify-content: center; gap: var(--space-3); margin-bottom: var(--space-8); }
.countdown-unit {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-2);
  min-width: 64px;
}
.countdown-unit strong { display: block; font-family: var(--font-display); font-size: var(--text-lg); color: #fff; font-variant-numeric: tabular-nums; }
.countdown-unit span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); }

.ticket-progress { text-align: left; margin-bottom: var(--space-6); }
.ticket-progress-labels { display: flex; justify-content: space-between; font-size: var(--text-xs); color: rgba(255,255,255,0.7); margin-bottom: var(--space-2); }
.ticket-progress-labels strong { color: var(--color-gold-300); }
.progress-track { height: 8px; border-radius: var(--radius-full); background: rgba(0,0,0,0.25); overflow: hidden; }
.progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--color-gold-300), var(--color-gold-500));
  width: 78%;
}

/* ============ TICKER ============ */
.winner-ticker {
  background: var(--color-navy-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--space-3);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: var(--space-10);
  animation: ticker-scroll 32s linear infinite;
}
.ticker-item { display: inline-flex; align-items: center; gap: var(--space-2); color: rgba(255,255,255,0.78); font-size: var(--text-sm); }
.ticker-item strong { color: var(--color-gold-400); font-weight: 600; }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--color-gold-500); }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ TRUST / HOW-IT-WORKS ============ */
.trust-section { background: var(--color-surface); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.trust-card {
  background: var(--gradient-surface-sheen);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: box-shadow var(--transition-interactive, var(--transition)), transform var(--transition-interactive, var(--transition)), border-color var(--transition);
}
.trust-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--color-gold-300); }
.trust-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-navy-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-sm);
}
.trust-icon svg { width: 28px; height: 28px; color: #fff; }
.trust-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); color: var(--color-navy-900); font-family: var(--font-display); font-weight: 600; }
.trust-card p { color: var(--color-text-muted); font-size: var(--text-sm); line-height: 1.6; }

/* ============ HOW IT WORKS ============ */
.steps-section { background: var(--color-surface-2); }
.steps-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.steps-rail::before {
  content: '';
  position: absolute; top: 28px; left: 6%; right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-gold-400) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.step-card { position: relative; z-index: 1; text-align: left; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-gold-400);
  color: var(--color-navy-800);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-sm);
}
.step-card h3 { font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-2); color: var(--color-navy-900); font-family: var(--font-body); }
.step-card p { color: var(--color-text-muted); font-size: var(--text-sm); line-height: 1.6; }

/* ============ WINNERS TABLE ============ */
.winners-section { background: var(--color-surface); }
.winners-table-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.winners-table { width: 100%; font-size: var(--text-sm); }
.winners-table thead th {
  text-align: left;
  padding: var(--space-4) var(--space-6);
  background: var(--color-navy-900);
  color: rgba(255,255,255,0.7);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.winners-table tbody td {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.winners-table tbody tr:last-child td { border-bottom: none; }
.winners-table tbody tr { transition: background var(--transition); }
.winners-table tbody tr:hover { background: var(--color-surface-2); }
.winner-name { display: flex; align-items: center; gap: var(--space-3); font-weight: 600; }
.winner-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient-navy-gold);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: var(--text-xs); flex-shrink: 0;
}
.winner-amount { font-weight: 700; color: var(--color-gold-700); font-variant-numeric: tabular-nums; }
.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--color-success); font-size: var(--text-xs); font-weight: 600;
}
.verified-badge svg { width: 14px; height: 14px; }

.live-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(28,138,90,0.1); color: var(--color-success);
  padding: 0.35rem 0.85rem; border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 600; margin-bottom: var(--space-4);
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-success); animation: pulse-dot 1.6s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--gradient-hero); position: relative; overflow: hidden; }
.testimonials-section .section-title, .testimonials-section .eyebrow { color: #fff; }
.testimonials-section .eyebrow { color: var(--color-gold-400); }
.testimonials-section .eyebrow::before { background: var(--color-gold-400); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.65); }

.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.testi-thumb {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--color-navy-700), var(--color-navy-900));
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.testi-play {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-interactive, var(--transition));
}
.testi-thumb:hover .testi-play { transform: scale(1.1); }
.testi-play svg { width: 20px; height: 20px; color: var(--color-navy-950); margin-left: 3px; }
.testi-body { padding: var(--space-5); }
.testi-quote { color: rgba(255,255,255,0.82); font-size: var(--text-sm); line-height: 1.6; margin-bottom: var(--space-4); font-style: italic; }
.testi-person { display: flex; align-items: center; gap: var(--space-3); }
.testi-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gradient-navy-gold); flex-shrink: 0; }
.testi-name { font-size: var(--text-xs); font-weight: 600; color: #fff; }
.testi-role { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.testi-stars { color: var(--color-gold-400); font-size: var(--text-xs); margin-bottom: var(--space-3); letter-spacing: 2px; }

/* ============ CHARITY ============ */
.charity-section { background: var(--color-surface-2); }
.charity-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-16); align-items: center; }
.charity-stat-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.charity-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  background: var(--gradient-gold-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
  margin-bottom: var(--space-3);
}
.charity-stat-card p { color: var(--color-text-muted); font-size: var(--text-sm); }

.timeline { position: relative; padding-left: var(--space-8); }
.timeline::before { content: ''; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: var(--color-border); }
.timeline-item { position: relative; padding-bottom: var(--space-8); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -34px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--color-gold-500); border: 3px solid var(--color-surface-2);
  box-shadow: 0 0 0 2px var(--color-gold-400);
}
.timeline-date { font-size: var(--text-xs); color: var(--color-gold-700); font-weight: 700; letter-spacing: 0.04em; margin-bottom: var(--space-1); }
.timeline-item h4 { font-size: var(--text-base); font-weight: 600; color: var(--color-navy-900); margin-bottom: var(--space-2); font-family: var(--font-body); }
.timeline-item p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ============ FAQ / SECURITY STRIP ============ */
.security-strip { background: var(--color-navy-950); padding-block: var(--space-16); }
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.security-item { display: flex; align-items: flex-start; gap: var(--space-4); }
.security-item svg { width: 32px; height: 32px; color: var(--color-gold-400); flex-shrink: 0; }
.security-item strong { display: block; color: #fff; font-size: var(--text-sm); margin-bottom: 2px; }
.security-item span { color: rgba(255,255,255,0.55); font-size: var(--text-xs); }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--gradient-navy-gold);
  border-radius: var(--radius-xl);
  margin-inline: clamp(1.25rem, 4vw, 2.5rem);
  padding: var(--space-16) var(--space-10);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.15), transparent 65%); }
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.final-cta p { color: rgba(255,255,255,0.75); max-width: 520px; margin-inline: auto; margin-bottom: var(--space-8); font-size: var(--text-base); }

/* ============ FOOTER ============ */
.site-footer { background: var(--color-navy-950); color: rgba(255,255,255,0.6); padding-top: var(--space-20); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: var(--text-sm); line-height: 1.6; max-width: 300px; margin-top: var(--space-4); }
.footer-col h4 { color: #fff; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-4); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: var(--text-sm); }
.footer-col a:hover { color: var(--color-gold-400); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: var(--space-6); font-size: var(--text-xs); flex-wrap: wrap; gap: var(--space-3);
}
.footer-social { display: flex; gap: var(--space-3); }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover { background: var(--color-gold-500); color: var(--color-navy-950); }

.age-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md); padding: 0.5rem 0.85rem; font-size: var(--text-xs); font-weight: 600; color: rgba(255,255,255,0.7);
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 82vw);
  height: 100dvh;
  background: var(--color-navy-950);
  z-index: 200;
  padding: var(--space-24) var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: -20px 0 60px rgba(0,0,0,0.4);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: var(--text-lg); font-weight: 500; }
.mobile-menu a.btn { text-align: center; }
.mobile-menu hr { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin-block: var(--space-2); }

.menu-scrim {
  position: fixed; inset: 0; background: rgba(6,11,31,0.6);
  z-index: 199; opacity: 0; pointer-events: none; transition: opacity var(--transition-slow);
}
.menu-scrim.open { opacity: 1; pointer-events: auto; }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 1; }
@supports (animation-timeline: scroll()) {
  .reveal {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }
}
@keyframes reveal-fade { to { opacity: 1; } }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav-links, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.25rem, 6vw, 3.25rem); }
  .trust-grid { grid-template-columns: 1fr; }
  .steps-rail { grid-template-columns: 1fr 1fr; row-gap: var(--space-10); }
  .steps-rail::before { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .charity-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .winners-table-wrap { overflow-x: auto; position: relative; -webkit-overflow-scrolling: touch; }
  .winners-table { min-width: 640px; }
  .winners-section .section-head::after {
    content: '→ Листайте таблицу вправо';
    display: block;
    font-size: var(--text-xs);
    color: var(--color-gold-700);
    font-weight: 600;
    margin-top: var(--space-3);
  }
}

@media (max-width: 600px) {
  section { padding-block: var(--space-16); }
  .hero { padding-top: 88px; }
  .hero-stats { flex-wrap: wrap; gap: var(--space-6); }
  .testi-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .countdown-unit { min-width: 52px; }
  .final-cta { padding: var(--space-10) var(--space-5); }
}
