:root {
  --blue-fr: #002395;
  --red-fr: #ed2939;
  --white: #ffffff;
  --bg: #f0f2f8;
  --surface: #ffffff;
  --text: #0f1419;
  --text-muted: #5c6370;
  --border: #dde1ea;
  --accent: #002395;
  --breaking: #dc2626;
  --gold: #eab308;
  --font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --font-head: "Playfair Display", Georgia, serif;
  --max: 1200px;
  --radius: 12px;
  --shadow: 0 12px 40px rgba(0, 35, 149, 0.12);
  --shadow-hover: 0 20px 50px rgba(0, 35, 149, 0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }

.container { width: min(var(--max), 94vw); margin-inline: auto; }

/* Live pulse */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.35); }
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes float-glow {
  0%, 100% { opacity: 0.35; transform: translate(0, 0) scale(1); }
  50% { opacity: 0.55; transform: translate(8px, -8px) scale(1.05); }
}

@keyframes scroll-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Top bar */
.topbar {
  background: linear-gradient(90deg, #001a66, var(--blue-fr), #001a66);
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar strong { color: var(--gold); }

.topbar__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.topbar__dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-dot 1.2s ease infinite;
  box-shadow: 0 0 8px #ef4444;
}

.topbar__readers {
  color: #93c5fd;
  font-size: 0.78rem;
}

/* Alert banner */
.alert-banner {
  background: linear-gradient(90deg, #450a0a, #991b1b, #450a0a);
  color: #fff;
  padding: 14px 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  transition: max-height 0.4s, padding 0.4s, opacity 0.4s;
  overflow: hidden;
}

.alert-banner.is-hidden {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

.alert-banner a {
  color: #fde047;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.alert-banner__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.alert-banner__close:hover { background: rgba(255,255,255,0.3); }

/* Header */
.header {
  background: var(--surface);
  border-bottom: 3px solid var(--blue-fr);
  box-shadow: 0 4px 20px rgba(0, 35, 149, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
}

.logo:hover { text-decoration: none; transform: scale(1.01); transition: transform 0.2s; }

.logo__title {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo__title span {
  background: linear-gradient(135deg, var(--blue-fr), #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo__tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 2px;
}

.nav { display: flex; gap: 6px; flex-wrap: wrap; }

.nav a {
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s;
}

.nav a:hover {
  background: #eef2ff;
  color: var(--blue-fr);
  text-decoration: none;
  transform: translateY(-1px);
}

.nav a.is-active {
  background: var(--blue-fr);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 35, 149, 0.35);
}

/* Ticker */
.ticker {
  background: var(--breaking);
  color: #fff;
  padding: 11px 0;
  overflow: hidden;
  border-bottom: 2px solid #991b1b;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: scroll-ticker 35s linear infinite;
}

.ticker__track:hover { animation-play-state: paused; }

.ticker__inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding-right: 80px;
}

.ticker__label {
  flex-shrink: 0;
  background: #fff;
  color: var(--breaking);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 24px;
  margin-left: max(3vw, 12px);
  animation: pulse-dot 2s ease infinite;
}

.ticker__item {
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  padding-right: 48px;
}

.ticker__item em {
  color: #fde047;
  font-style: normal;
}

/* Stats strip */
.stats-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 8px;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-box {
  text-align: center;
  padding: 16px 12px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f8fafc, #fff);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-box__num {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blue-fr);
  line-height: 1.1;
}

.stat-box__num--red { color: var(--breaking); }

.stat-box__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Countdown */
.countdown-bar {
  background: linear-gradient(135deg, #001a66 0%, var(--blue-fr) 50%, #1e3a8a 100%);
  color: #fff;
  padding: 20px 0;
  margin-bottom: 28px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-inline: 28px;
  box-shadow: var(--shadow);
}

.countdown-bar__text h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.countdown-bar__text p {
  font-size: 0.88rem;
  opacity: 0.85;
}

.countdown {
  display: flex;
  gap: 10px;
}

.countdown span {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 58px;
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.countdown strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.live-score {
  text-align: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  padding: 12px 20px;
  min-width: 180px;
}

.live-score__badge {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.live-score__match {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.live-score__meta {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 4px;
}

.match--done { opacity: 0.72; }

.match--next {
  border: 2px solid var(--blue-fr);
  border-radius: 10px;
  background: #eef2ff;
}

/* Trending */
.trending {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.trending__label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--breaking);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.trending a {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  background: #f1f5f9;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}

.trending a:hover {
  background: var(--blue-fr);
  color: #fff;
  transform: scale(1.04);
  text-decoration: none;
}

/* Hero */
.hero { padding: 8px 0 36px; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 24px;
}

.hero__main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #001247 0%, #002395 45%, #7f1d1d 100%);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.35s, box-shadow 0.35s;
}

.hero__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(237, 41, 57, 0.45) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 40%);
  animation: float-glow 6s ease-in-out infinite;
}

.hero__main::after {
  content: "🇫🇷";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9rem;
  opacity: 0.08;
  pointer-events: none;
}

.hero__main:hover {
  text-decoration: none;
  color: #fff;
  transform: translateY(-6px) scale(1.005);
  box-shadow: var(--shadow-hover);
}

.hero__badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero__badge {
  background: var(--breaking);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  animation: pulse-dot 2.5s ease infinite;
}

.hero__badge--hot {
  background: var(--gold);
  color: #1a1a2e;
  animation: none;
}

.hero__content { position: relative; z-index: 2; }

.hero__main h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.8vw, 2.45rem);
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero__main p {
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 520px;
  line-height: 1.55;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 24px;
  background: #fff;
  color: var(--blue-fr);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero__main:hover .hero__cta {
  transform: translateX(4px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}

.hero__meta {
  margin-top: 16px;
  font-size: 0.82rem;
  opacity: 0.75;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.side-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--blue-fr);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.side-card:hover::before { transform: scaleY(1); }

.side-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-fr);
  text-decoration: none;
  transform: translateX(6px);
}

.side-card__cat {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-fr);
  margin-bottom: 8px;
}

.side-card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.side-card:hover h3 { color: var(--blue-fr); }

.side-card time {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.side-card__views {
  font-size: 0.75rem;
  color: var(--breaking);
  font-weight: 700;
  margin-top: 8px;
}

/* Buzz quotes */
.buzz {
  margin-bottom: 36px;
  padding: 24px;
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border-radius: var(--radius);
  color: #fff;
}

.buzz__title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
  margin-bottom: 16px;
}

.buzz__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.buzz__item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 16px;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.45;
  transition: background 0.2s;
}

.buzz__item:hover { background: rgba(255,255,255,0.14); }

.buzz__author {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.78rem;
  color: #c4b5fd;
}

/* Layout */
.layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  padding-bottom: 48px;
}

.section-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--blue-fr);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--breaking);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}

/* Article cards */
.articles { display: flex; flex-direction: column; gap: 20px; }

.article-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s;
}

.article-card:hover {
  box-shadow: var(--shadow-hover);
  text-decoration: none;
  transform: translateY(-4px);
  border-color: var(--blue-fr);
}

.article-card__thumb {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  transition: transform 0.4s;
}

.article-card:hover .article-card__thumb { transform: scale(1.06); }

.article-card__hot {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--breaking);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

.article-card__body { padding: 22px 24px; }

.article-card__cat {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red-fr);
  margin-bottom: 8px;
}

.article-card h3 {
  font-size: 1.12rem;
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.article-card:hover h3 { color: var(--blue-fr); }

.article-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.article-card__views {
  color: var(--breaking);
  font-weight: 700;
}

/* Sidebar */
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s;
}

.sidebar-widget:hover { box-shadow: var(--shadow); }

.sidebar-widget--accent {
  background: linear-gradient(160deg, #001a66, #1e40af);
  color: #fff;
  border: none;
}

.sidebar-widget--accent h4 {
  color: #93c5fd;
  border-bottom-color: rgba(255,255,255,0.15);
}

.sidebar-widget--accent .stat-box__num { color: #fde047; }

.sidebar-widget h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-fr);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
}

.match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  transition: background 0.2s;
}

.match:hover { background: #f8fafc; margin: 0 -12px; padding-inline: 12px; border-radius: 8px; }

.match:last-child { border-bottom: none; }

.match__teams { font-weight: 700; }

.match__info {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: right;
}

.poll-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  margin-bottom: 8px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.poll-option:hover {
  border-color: var(--blue-fr);
  background: #eef2ff;
  transform: translateX(4px);
}

.poll-thanks {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--blue-fr);
  font-weight: 700;
}

.chiffre-big {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fde047;
  line-height: 1;
  margin-bottom: 8px;
}

/* Article pages */
.article-header {
  padding: 40px 0 32px;
  max-width: 780px;
  animation: fade-up 0.6s ease;
}

.article-header__cat {
  color: var(--breaking);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.article-header h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.article-header__chapo {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.article-header__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.article-body {
  max-width: 680px;
  margin: 0 auto 48px;
}

.article-body p { margin-bottom: 1.25em; }

.article-body h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin: 2em 0 0.75em;
  color: var(--blue-fr);
}

.article-body blockquote {
  border-left: 4px solid var(--blue-fr);
  padding: 16px 20px;
  margin: 1.5em 0;
  background: #eef2ff;
  font-style: italic;
}

.article-body .quote-author {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
}

.highlight-box {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid #f0d78c;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px;
  margin: 1.5em 0;
}

.highlight-box strong { color: #92400e; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }

.tag {
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-fr);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0f1419, #1a1a2e);
  color: #cbd5e1;
  padding: 48px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer h4 {
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer ul { list-style: none; }
.footer li + li { margin-top: 8px; }
.footer a { color: #94a3b8; font-size: 0.9rem; }
.footer a:hover { color: #fff; }

.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid #334155;
  font-size: 0.8rem;
  text-align: center;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 12px;
  max-width: 640px;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .layout { grid-template-columns: 1fr; }
  .article-card { grid-template-columns: 1fr; }
  .article-card__thumb { min-height: 120px; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .buzz__grid { grid-template-columns: 1fr; }
  .countdown-bar { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .nav { width: 100%; justify-content: center; }
  .stats-strip__grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
