/* ═══════════════════════════════════════════════
   DhaniWin Gold Event — Main Stylesheet
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');
@import 'colors.css';
@import 'nav.css';

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ── Scrollbar ───────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--purple-900); }
::-webkit-scrollbar-thumb { background: var(--gold-600); border-radius: 3px; }

/* ── Particles Canvas ───────────────────────── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── Noise Texture Overlay ───────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ── Layout Wrappers ─────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  z-index: 2;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 40px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-base));
  z-index: 1;
}

/* Radial glow behind hero text */
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid var(--border-gold);
  background: rgba(201,168,76,0.08);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s var(--ease-smooth) both;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  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(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  animation: fadeInUp 0.9s 0.1s var(--ease-smooth) both;
}

.hero-title-main {
  display: block;
  color: var(--text-primary);
}

.hero-title-gold {
  display: block;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* shimmer sweep */
.hero-title-gold::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: var(--grad-shimmer);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite 1.5s;
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-month {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold-500);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.2s var(--ease-smooth) both;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
  animation: fadeInUp 0.9s 0.3s var(--ease-smooth) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.4s var(--ease-smooth) both;
}

/* Decorative orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: drift 8s ease-in-out infinite alternate;
}

.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(74, 50, 120, 0.5);
  top: -100px; left: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(201, 168, 76, 0.08);
  bottom: 0px; right: -60px;
  animation-delay: -4s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.05); }
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-bounce);
  letter-spacing: 0.03em;
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--purple-900);
  box-shadow: 0 6px 24px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px var(--gold-glow-strong);
}

.btn-outline {
  background: transparent;
  color: var(--gold-400);
  border: 1.5px solid var(--border-gold-strong);
}

.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-3px);
  border-color: var(--gold-400);
}

/* ── SECTION HEADERS ─────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Gold divider line */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--grad-gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ── HOW IT WORKS ────────────────────────────── */
.how-section {
  padding: 30px 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--purple-900) 50%, var(--bg-base) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-smooth);
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.step-card:hover::before { opacity: 1; }

/* Connector line between steps */
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 1px;
  background: var(--grad-gold);
  opacity: 0.4;
  z-index: 3;
}

@media (max-width: 768px) {
  .step-card:not(:last-child)::after { display: none; }
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.step-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── GOLD TIERS ──────────────────────────────── */
.tiers-section {
  padding: 30px 0;
  position: relative;
}

.tiers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: end;
}

.tier-card {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.tier-card.highlight {
  border-color: var(--gold-500);
  background: linear-gradient(145deg, #1A1030 0%, #251840 100%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.06);
}

.tier-card.highlight::before {
  content: 'GRAND GOLD';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--purple-900);
  background: var(--grad-gold);
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-card:not(.highlight):hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* Shimmer sweep on highlight */
.tier-card.highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-shimmer);
  background-size: 300% 100%;
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  border-radius: 24px;
}

.tier-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--purple-800), var(--purple-700));
  border: 1px solid var(--border-gold);
  position: relative;
}

.tier-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.tier-card:hover .tier-img-wrap img {
  transform: scale(1.06);
}

.tier-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gold-600);
}

.tier-img-placeholder span {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.tier-rank {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff5dd8;
  margin-bottom: 6px;
  font-weight: bold;
}

.tier-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.tier-prize {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.tier-bonus {
  font-size: 0.82rem;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

/* ── LEADERBOARD ─────────────────────────────── */
.leaderboard-section {
  padding: 30px 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--purple-900) 50%, var(--bg-base) 100%);
}

.leaderboard-table {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.leaderboard-head {
  display: grid;
  grid-template-columns: 60px 1fr 120px 140px 120px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border-gold);
  background: rgba(201,168,76,0.06);
}

.lh-cell {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 60px 1fr 120px 140px 120px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
  transition: background 0.2s;
  cursor: default;
}

.leaderboard-row:last-child { border-bottom: none; }
.leaderboard-row:hover { background: rgba(201,168,76,0.04); }

.leaderboard-row.top-1 { background: linear-gradient(90deg, rgba(201,168,76,0.1) 0%, transparent 80%); }
.leaderboard-row.top-2 { background: linear-gradient(90deg, rgba(201,168,76,0.06) 0%, transparent 80%); }
.leaderboard-row.top-3 { background: linear-gradient(90deg, rgba(201,168,76,0.04) 0%, transparent 80%); }

.rank-cell {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.rank-cell.gold   { color: var(--gold-300); }
.rank-cell.silver { color: #C0C8D0; }
.rank-cell.bronze { color: #CD7F32; }
.rank-cell.other  { color: var(--text-muted); }

.agent-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.agent-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.score-cell {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--gold-400);
  font-weight: 500;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .leaderboard-head,
  .leaderboard-row {
    grid-template-columns: 44px 1fr 100px;
  }
  .lh-cell:nth-child(3),
  .leaderboard-row > *:nth-child(4),
  .lh-cell:nth-child(5),
  .leaderboard-row > *:nth-child(5) { display: none; }
}

/* ── PRIZE SHOWCASE ──────────────────────────── */
.prizes-section {
  padding: 30px 0;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.prize-card {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s var(--ease-smooth);
  cursor: default;
}

.prize-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.prize-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--purple-800);
  position: relative;
}

.prize-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.prize-card:hover .prize-img-wrap img {
  transform: scale(1.06);
}

.prize-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-600);
  background: linear-gradient(135deg, var(--purple-800), var(--purple-700));
}

.prize-img-placeholder span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.prize-info {
  padding: 20px 22px;
}

.prize-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.prize-desc {
  font-size: 0.85rem;
  color: var(--gold-500);
  font-weight: 500;
}

/* ── GALLERY ─────────────────────────────────── */
.gallery-section {
  padding: 30px 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--purple-900) 50%, var(--bg-base) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  background: var(--purple-800);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,3,15,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold-600);
  background: linear-gradient(135deg, var(--purple-800), var(--purple-700));
}

.gallery-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:first-child {
    grid-column: span 2;
  }
}

/* ── VIDEO SECTION ───────────────────────────── */
.videos-section {
  padding: 30px 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s var(--ease-smooth);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--purple-800);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.video-card:hover .video-thumb img { transform: scale(1.05); }

.video-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-800), var(--purple-700));
  color: var(--gold-600);
}

.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-900);
  transition: all 0.3s var(--ease-bounce);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold-400);
  box-shadow: 0 8px 28px var(--gold-glow-strong);
}

.video-duration {
  position: absolute;
  bottom: 10px; right: 12px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: white;
  background: rgba(0,0,0,0.65);
  padding: 3px 8px;
  border-radius: 4px;
}

.video-info {
  padding: 18px 20px;
}

.video-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ── VIDEO MODAL ─────────────────────────────── */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7,3,15,0.95);
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(12px);
}

.video-modal.open { display: flex; }

.video-modal-inner {
  width: 100%;
  max-width: 900px;
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: -48px; right: 0;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.video-modal-close:hover {
  background: rgba(201,168,76,0.3);
}

.video-iframe-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.video-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── WINNERS ─────────────────────────────────── */
.winners-section {
  padding: 30px 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--purple-900) 50%, var(--bg-base) 100%);
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.winner-card {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.winner-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.winner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.3s;
}

.winner-card:hover::before { opacity: 1; }

.winner-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 2px solid var(--gold-500);
  overflow: hidden;
  background: var(--purple-700);
  box-shadow: 0 0 20px var(--gold-glow);
}

.winner-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.winner-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  background: linear-gradient(135deg, var(--purple-800), var(--purple-700));
}

.winner-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.winner-month {
  font-size: 0.78rem;
  color: var(--gold-500);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.winner-prize {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.winner-quote {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
  position: relative;
  padding: 0 12px;
}

.winner-quote::before {
  content: '"';
  position: absolute;
  top: -8px; left: -2px;
  font-size: 2.5rem;
  font-family: Georgia, serif;
  color: var(--gold-600);
  opacity: 0.4;
  line-height: 1;
}

/* ── CTA SECTION ─────────────────────────────── */
.cta-section {
  padding: 30px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 65%);
}

.cta-card {
  background: var(--grad-card);
  border: 1px solid var(--border-gold);
  border-radius: 32px;
  padding: 72px 48px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-gold);
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-shimmer);
  background-size: 300% 100%;
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none;
}

.cta-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: rgba(201,168,76,0.12);
  border: 1.5px solid var(--border-gold-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  box-shadow: 0 0 30px var(--gold-glow);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-social-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.25s var(--ease-bounce);
  border: none;
  color: #fff;
}

.cta-social-btn:hover {
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.1);
}

/* Telegram CTA */
.cta-telegram-btn {
  background: #2AABEE;
  box-shadow: 0 4px 16px rgba(42,171,238,0.35);
}

/* WhatsApp CTA */
.cta-whatsapp-btn {
  background: #25D366;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

/* ── GRAND PRIZE CARD ────────────────────────── */
.grand-prize-section {
  padding: 0 0 80px;
  position: relative;
  z-index: 2;
}

.grand-prize-card {
  background: linear-gradient(135deg, #1A0F05 0%, #2A1A08 40%, #1A0F05 100%);
  border: 2px solid var(--gold-500);
  border-radius: 28px;
  padding: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 80px rgba(201,168,76,0.3), 0 20px 60px rgba(0,0,0,0.7);
}

.grand-prize-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.grand-prize-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-shimmer);
  background-size: 300% 100%;
  animation: shimmer 5s ease-in-out infinite;
  pointer-events: none;
  border-radius: 28px;
}

.grand-prize-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  min-height: 320px;
}

.grand-prize-info {
  padding: 52px 48px;
}

.grand-prize-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-900);
  background: var(--grad-gold);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.grand-prize-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 8px;
}

.grand-prize-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
}

.grand-prize-req {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-gold);
  padding: 8px 16px;
  border-radius: 50px;
}

.grand-prize-img {
  position: relative;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.grand-prize-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  filter: drop-shadow(0 20px 40px rgba(201,168,76,0.25));
  animation: float 4s ease-in-out infinite;
}

.grand-prize-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gold-600);
  padding: 40px;
  text-align: center;
}

.grand-prize-img-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@media (max-width: 680px) {
  .grand-prize-inner {
    grid-template-columns: 1fr;
  }
  .grand-prize-img {
    min-height: 200px;
    order: -1;
  }
  .grand-prize-info {
    padding: 32px 28px;
  }
}

/* ── TIER GRID — 9 prizes ────────────────────── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Last item (Consolation) spans full width of last row */
.tier-card:last-child {
  grid-column: 1 / -1;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 900px) {
  .tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-card:last-child { grid-column: 1 / -1; max-width: 360px; }
}

@media (max-width: 480px) {
  .tiers-grid { grid-template-columns: 1fr; }
  .tier-card:last-child { grid-column: auto; max-width: 100%; }
}

/* compact tier card for 9-up layout */
.tier-card {
  padding: 28px 20px;
}

.tier-prize {
  font-size: 1.4rem;
}

/* ── LOCAL VIDEO PLAYER — 9:16 vertical ─────── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 9:16 aspect — vertical video */
.video-thumb {
  aspect-ratio: 9 / 16;
}

.video-modal-inner {
  max-width: 420px; /* narrow for 9:16 */
}

.video-iframe-wrap {
  aspect-ratio: 9 / 16;
}

/* native <video> inside card */
.video-native {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* play overlay on native video */
.video-thumb .video-play-btn {
  pointer-events: none;
}

.video-card.playing .video-play-btn {
  display: none;
}

/* modal for local video */
.video-modal-local {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: block;
}

@media (max-width: 860px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .videos-grid { grid-template-columns: 1fr; }
  .video-modal-inner { max-width: 95vw; }
}

/* ── TERMS & CONDITIONS ──────────────────────── */
.terms-section {
  padding: 30px 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--purple-900) 50%, var(--bg-base) 100%);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.term-card {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 28px 28px 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.term-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.term-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-gold);
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.term-card:hover::before { opacity: 1; }

.term-number {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-top: 2px;
}

.term-body {}

.term-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.term-content {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 700px) {
  .terms-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── FLOAT BUTTONS ───────────────────────────── */
.float-actions {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-bounce);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  text-decoration: none;
  color: #fff;
}

.float-btn:hover {
  transform: scale(1.14);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}

/* Telegram — brand blue */
.float-telegram { background: #2AABEE; }
.float-telegram:hover { background: #1E96D4; }

/* WhatsApp — brand green */
.float-whatsapp { background: #25D366; }
.float-whatsapp:hover { background: #1DB954; }

/* Support — gold accent */
.float-support { background: var(--grad-gold); color: var(--purple-900); }
.float-support:hover { filter: brightness(1.1); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .tiers-grid { grid-template-columns: 1fr 1fr; }
  .tier-card.highlight { transform: scale(1.03); }
  .cta-card { padding: 48px 28px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .tiers-grid, .steps-grid { grid-template-columns: 1fr; }
  .tier-card.highlight { transform: scale(1); }
  .nav-badge { display: none; }
}

/* ── Extra scroll offset for mobile toggle bar ── */
@media (max-width: 1020px) {
  html { scroll-padding-top: 115px; }
  .hero { padding-top: 135px; }
}

/* ── ABOUT THE EVENT ─────────────────────────── */
.about-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--purple-900) 50%, var(--bg-base) 100%);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.82;
  margin-bottom: 18px;
}

.about-desc strong {
  color: var(--gold-300);
  font-weight: 600;
}

/* Prize pool stat bar */
.about-prize-pool {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 18px 24px;
  margin: 20px 0 28px;
}

.app-pool-item {
  flex: 1;
  text-align: center;
  padding: 4px 8px;
}

.app-pool-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}

.app-pool-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.app-pool-divider {
  width: 1px;
  height: 36px;
  background: var(--border-gold);
  flex-shrink: 0;
}

.about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Right column */
.about-prizes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Grand prize card */
.about-prize-card.about-prize-grand {
  background: linear-gradient(135deg, #1A0F05, #2A1A08);
  border: 2px solid var(--gold-500);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(201,168,76,0.2), 0 8px 32px rgba(0,0,0,0.5);
}

.about-prize-card.about-prize-grand::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-shimmer);
  background-size: 300% 100%;
  animation: shimmer 5s ease-in-out infinite;
  pointer-events: none;
}

.apg-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-900);
  background: var(--grad-gold);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.apg-icon {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

.apg-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.apg-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1;
}

.apg-req {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Prize list */
.about-prize-list {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
}

.apl-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.2s;
}

.apl-item:last-child { border-bottom: none; }
.apl-item:hover { background: rgba(201,168,76,0.04); }

.apl-rank {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-500);
  width: 36px;
  flex-shrink: 0;
}

.apl-rank--more {
  font-size: 0.72rem;
  color: var(--text-muted);
  width: auto;
  font-family: var(--font-body);
  font-weight: 500;
}

.apl-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  gap: 8px;
}

.apl-info span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.apl-info strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-prize-pool {
    padding: 14px 16px;
  }
}

@media (max-width: 480px) {
  .about-section { padding: 30px 0; }
  .app-pool-value { font-size: 1rem; }
}

/* ── COUNTDOWN SECTION ───────────────────────── */
.countdown-section {
  padding: 0 0 60px;
  position: relative;
  z-index: 2;
}

.countdown-inner {
  background: linear-gradient(145deg, #0D0719, #180F30);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 24px;
  padding: 44px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(201,168,76,0.08), 0 8px 40px rgba(0,0,0,0.5);
}

.countdown-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 2px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}

.countdown-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.countdown-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cd-flip {
  width: 108px;
  height: 108px;
  background: linear-gradient(180deg, #1E1235 0%, #130924 50%, #0E0620 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,0.6),
    inset 0 -1px 2px rgba(201,168,76,0.06),
    0 6px 24px rgba(0,0,0,0.4),
    0 0 0 1px rgba(201,168,76,0.06);
  transition: border-color 0.15s;
}

.cd-flip::after {
  content: '';
  position: absolute;
  left: 10px; right: 10px;
  top: 50%; transform: translateY(-50%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
}

.cd-flip span {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(180deg, #F5D06A 0%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  transition: opacity 0.12s;
}

.cd-flip.tick {
  border-color: rgba(201,168,76,0.5);
}
.cd-flip.tick span { opacity: 0.3; }

.cd-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cd-sep {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(201,168,76,0.35);
  margin-bottom: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.countdown-deadline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.countdown-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .cd-flip { width: 60px; height: 80px; border-radius: 14px; }
  .cd-flip span { font-size: 2.1rem; }
  .cd-sep { font-size: 1.6rem; }
  .countdown-inner { padding: 32px 16px; }
  .countdown-timer { gap: 8px; }
}

@media (max-width: 380px) {
  .cd-flip { width: 68px; height: 68px; }
  .cd-flip span { font-size: 1.8rem; }
  .countdown-timer { gap: 5px; }
  .cd-sep { font-size: 1.3rem; }
}