/* ═══════════════════════════════════════════════════════════════════════════
   La Grande Dictée de l'Amazone — Styles globaux
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --color-royale:         #10172A;
  --color-royale-light:   #1A2544;
  --color-royale-lighter: #1F2C51;
  --color-amazone:        #FA6A0F;
  --color-amazone-light:  #FB914D;
  --color-amazone-dark:   #D2590D;
  --color-foret:          #2F7A66;
  --color-sable:          #D6D9E0;
  --gradient-hero: var(--color-royale);
  --gradient-gold: var(--color-amazone);
  --shadow-card:   0 2px 14px rgba(16,23,42,0.08), 0 1px 3px rgba(16,23,42,0.05);
  --shadow-hover:  0 10px 28px rgba(16,23,42,0.14), 0 2px 8px rgba(16,23,42,0.07);
}

/* ── Scrollbar ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f4f4f6; }
::-webkit-scrollbar-thumb { background: var(--color-amazone); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-amazone-dark); }

/* ── Selection ──────────────────────────────────────────────────────────────── */
::selection { background: rgba(250,106,15,0.25); color: var(--color-royale); }

/* ── Navigation ─────────────────────────────────────────────────────────────── */
.nav-container {
  max-width: 1280px;
  transition: all 0.4s ease;
}

#main-header.header-solid {
  background: #0052A3;
  box-shadow: 0 1px 14px rgba(0,0,0,0.15);
  border-bottom: 1px solid #ffffff;
}
#main-header.header-solid .nav-link {
  color: rgba(255,255,255,0.85);
}
#main-header.header-solid .nav-link:hover,
#main-header.header-solid .nav-link.active {
  color: #ffffff;
  background: rgba(255,255,255,0.14);
}
#main-header.header-solid .btn-outline-sm {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.3);
}
#main-header.header-solid .btn-outline-sm:hover {
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
}
#main-header.header-solid .nav-brand-title { color: #ffffff; }
#main-header.header-solid .nav-brand-sub   { color: rgba(255,255,255,0.7); }
#main-header.header-solid #mobile-menu-btn { color: #ffffff; }
#main-header.header-solid #mobile-menu-btn:hover { background: rgba(255,255,255,0.14); }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-amazone);
  background: rgba(255,255,255,0.06);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--color-amazone);
  border-radius: 2px;
}

.btn-primary-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #0052A3;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(250,106,15,0.25);
}
.btn-primary-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(0,0,0,0.2);
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-outline-sm:hover { border-color: rgba(255,255,255,0.5); color: white; }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(16,23,42,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(250,106,15,0.2);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.25s ease;
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.group:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.dropdown-item:hover { color: var(--color-amazone); background: rgba(250,106,15,0.1); }

/* Mobile nav */
.mobile-nav-link {
  display: block;
  color: rgba(16,23,42,0.75);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: all 0.2s;
}
.mobile-nav-link:hover { color: var(--color-amazone); background: rgba(250,106,15,0.08); }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-gold);
  color: white;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(250,106,15,0.25);
  font-size: 1rem;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(250,106,15,0.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  background: #d1d5db;
  color: #6b7280;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-royale);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  transition: all 0.3s;
}
.btn-dark:hover { background: var(--color-royale-light); transform: translateY(-1px); }

/* ── Cards ───────────────────────────────────────────────────────────────────── */
.card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-premium {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(250,106,15,0.1);
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  overflow: hidden;
  position: relative;
}
.card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}
.card-premium:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(250,106,15,0.3);
}

/* Flat card for dark sections (formerly glassmorphism) */
.card-glass {
  background: rgba(6,9,18,0.6);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.card-glass:hover {
  background: rgba(6,9,18,0.72);
  border-color: rgba(250,106,15,0.4);
}

/* ── Stats Counter ───────────────────────────────────────────────────────────── */
.stat-counter {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Headings ────────────────────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-amazone);
  padding: 0.35rem 1rem;
  background: rgba(250,106,15,0.1);
  border-radius: 50px;
  border: 1px solid rgba(250,106,15,0.25);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-royale);
}
.section-title span { color: var(--color-amazone); }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero-gradient {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.hero-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FA6A0F' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Floating pattern elements */
.hero-pattern {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

/* ── Category Cards ──────────────────────────────────────────────────────────── */
.category-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(250,106,15,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
}
.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--cat-color, var(--color-amazone));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.category-card:hover {
  box-shadow: 0 12px 32px rgba(16,23,42,0.10);
  transform: translateY(-4px);
  border-color: transparent;
}
.category-card:hover::after { transform: scaleX(1); }

/* ── Form Styles ─────────────────────────────────────────────────────────────── */
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.375rem;
}
.form-label .required { color: #ef4444; margin-left: 2px; }

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9375rem;
  color: #111827;
  background: white;
  transition: all 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--color-amazone);
  box-shadow: 0 0 0 3px rgba(250,106,15,0.1);
}
.form-input.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.form-input:disabled { background: #f9fafb; color: #9ca3af; }

.form-select {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9375rem;
  color: #111827;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") right 0.75rem center no-repeat;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.2s;
  outline: none;
  cursor: pointer;
}
.form-select:focus {
  border-color: var(--color-amazone);
  box-shadow: 0 0 0 3px rgba(250,106,15,0.1);
}

.form-error {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Badges & Tags ───────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}
.badge-pending  { background: #fef9c3; color: #854d0e; }
.badge-validated { background: #dcfce7; color: #166534; }
.badge-rejected { background: #fee2e2; color: #991b1b; }
.badge-paid     { background: #d1fae5; color: #065f46; }
.badge-draft    { background: #f3f4f6; color: #374151; }
.badge-published{ background: #dcfce7; color: #166534; }
.badge-gold     { background: #fde68a; color: #92400e; border: 1px solid #f59e0b; }

/* ── Countdown Timer ─────────────────────────────────────────────────────────── */
.countdown-unit {
  text-align: center;
  min-width: 80px;
}
.countdown-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.countdown-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.countdown-separator {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: rgba(250,106,15,0.5);
  line-height: 1;
  padding-bottom: 0.5rem;
}

/* ── Gallery ─────────────────────────────────────────────────────────────────── */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--color-royale);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16,23,42,0.6);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Article Cards ───────────────────────────────────────────────────────────── */
.article-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.article-img {
  height: 220px;
  overflow: hidden;
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-img img { transform: scale(1.05); }

/* ── Step Progress ───────────────────────────────────────────────────────────── */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s;
}
.step-circle.active { background: var(--color-royale); color: white; box-shadow: 0 4px 12px rgba(16,23,42,0.3); }
.step-circle.completed { background: var(--gradient-gold); color: white; }
.step-circle.inactive { background: #f3f4f6; color: #9ca3af; border: 2px solid #e5e7eb; }
.step-connector { flex: 1; height: 2px; background: #e5e7eb; }
.step-connector.completed { background: var(--color-amazone); }

/* ── Table ───────────────────────────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #6b7280; padding: 1rem 1.25rem; background: #f9fafb; border-bottom: 2px solid #e5e7eb; text-align: left; }
.data-table td { padding: 1rem 1.25rem; font-size: 0.875rem; color: #374151; border-bottom: 1px solid #f3f4f6; vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: #fafafa; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer-link {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  transition: all 0.2s;
  padding: 0.125rem 0;
}
.footer-link:hover { color: var(--color-amazone); transform: translateX(4px); }

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  transition: all 0.25s;
}
.social-icon:hover { background: rgba(250,106,15,0.2); border-color: rgba(250,106,15,0.4); color: var(--color-amazone); }

/* ── Prix & Cartes Mystère ──────────────────────────────────────────────────── */
.prize-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  text-align: center;
  padding: 2.25rem 1.25rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
}
.prize-card:hover { transform: translateY(-6px); border-color: rgba(250,106,15,0.4); }
.prize-card--gold::before,
.prize-card--silver::before,
.prize-card--bronze::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.prize-card--gold::before   { background: #f5c040; }
.prize-card--silver::before { background: #c3cad6; }
.prize-card--bronze::before { background: #cb8a49; }

.prize-rank-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}
.prize-rank-pill--gold   { color: #f5c040; background: rgba(245,192,64,0.12); border: 1px solid rgba(245,192,64,0.3); }
.prize-rank-pill--silver { color: #e5e9f0; background: rgba(229,233,240,0.10); border: 1px solid rgba(229,233,240,0.25); }
.prize-rank-pill--bronze { color: #e0a15c; background: rgba(224,161,92,0.12); border: 1px solid rgba(224,161,92,0.28); }

.prize-mystery-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1.5px dashed rgba(255,255,255,0.28);
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.55);
}
.prize-mystery-icon::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(250,106,15,0.3);
  animation: prizePulse 2.6s ease-in-out infinite;
}
@keyframes prizePulse {
  0%, 100% { transform: scale(1);    opacity: 0.65; }
  50%      { transform: scale(1.15); opacity: 0; }
}

.prize-special-banner {
  position: relative;
  border-radius: 28px;
  padding: 3rem 2rem;
  text-align: center;
  overflow: hidden;
  background: rgba(16,23,42,0.4);
  border: 1px solid rgba(250,106,15,0.3);
}

/* ── Podium des prix (page d'accueil) ───────────────────────────────────────── */
.prize-medal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--color-royale);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.4);
}
.prize-medal--gold   { background: #f0af1f; }
.prize-medal--silver { background: #c3cad6; }
.prize-medal--bronze { background: #cb8a49; }

.prize-podium-card {
  position: relative;
  text-align: center;
  border-radius: 22px;
  padding: 2rem 1.25rem 1.75rem;
  background: white;
  border: 1px solid rgba(16,23,42,0.08);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.prize-podium-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); }
.prize-podium-card--featured {
  border-color: rgba(200,134,10,0.35);
  background: #fdf6e6;
  box-shadow: 0 20px 50px rgba(200,134,10,0.16);
}
@media (min-width: 640px) {
  .prize-podium-card--featured { transform: translateY(-1.25rem); padding-top: 2.5rem; padding-bottom: 2.25rem; }
  .prize-podium-card--featured:hover { transform: translateY(-1.75rem); }
}

.prize-podium-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-royale);
  background: #f0af1f;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(200,134,10,0.4);
  white-space: nowrap;
}

.prize-guess-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.1rem;
  border-radius: 14px;
  border: 1.5px dashed rgba(16,23,42,0.18);
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(16,23,42,0.25);
}

/* ── Decorative ──────────────────────────────────────────────────────────────── */
.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 1rem auto;
}
.divider-gold.left { margin-left: 0; }

/* ── Animations ──────────────────────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(1deg); }
  66% { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes counting {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-reveal-up {
  animation: reveal-up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-delay-100 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-200 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-300 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-400 { animation-delay: 0.4s; opacity: 0; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .section-title { font-size: 1.75rem; }
  .countdown-number { font-size: 2.25rem; }
  .countdown-unit { min-width: 60px; }
}

/* ── Print ───────────────────────────────────────────────────────────────────── */
@media print {
  header, footer, .no-print { display: none !important; }
  body { background: white; }
}
