/* DA Forever — responsive mobile → TV 4K, portrait & paysage, sans chevauchement texte */
:root {
  --bg: #170e09;
  --surface: rgba(28, 18, 12, 0.82);
  --panel: rgba(32, 20, 14, 0.9);
  --ink: #ffffff;
  --cream: #f5e5cf;
  --ink-dim: rgba(255, 255, 255, 0.72);
  --muted: rgba(245, 229, 207, 0.55);
  --gold: #f7b90a;
  --gold-hi: #ffd24a;
  --teal: #1a6f73;
  --teal-hi: #248b90;
  --teal-deep: #0f4a4e;
  --sky: #09344c;
  --border: rgba(245, 229, 207, 0.18);
  --glow: rgba(247, 185, 10, 0.22);
  --font-display: "Cinzel", "Palatino Linotype", Palatino, serif;
  --font-body: "Open Sans", Arial, Helvetica, sans-serif;
  --radius: 10px;
  --max: 1180px;
  --chat-col: clamp(240px, 24vw, 340px);
  --pad-inline: clamp(0.75rem, 2.5vw, 1.5rem);
  --space: clamp(0.75rem, 1.5vw, 1.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 42% at 50% -6%, rgba(247, 185, 10, 0.16), transparent 55%),
    radial-gradient(ellipse 48% 36% at 88% 68%, rgba(26, 111, 115, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(23, 14, 9, 0.42) 0%, rgba(23, 14, 9, 0.78) 42%, rgba(23, 14, 9, 0.94) 100%),
    url("/media/bg-cinematic.jpg") center top / cover no-repeat,
    var(--bg);
}

.container {
  width: min(100% - (var(--pad-inline) * 2), var(--max));
  margin: 0 auto;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-hi);
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
p,
li,
a,
span,
time,
.eyebrow,
.countdown-kicker,
.countdown-label,
.countdown-date,
.countdown-value,
.countdown-unit-label,
.brand-sub,
.footer-copy {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(23, 14, 9, 0.94), rgba(23, 14, 9, 0.78));
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1 1 12rem;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand-logo {
  height: clamp(2.1rem, 4.5vw, 3.2rem);
  width: auto;
  max-width: min(52vw, 220px);
  display: block;
  flex-shrink: 1;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
}

.brand-sub {
  font-family: var(--font-display);
  font-size: clamp(0.58rem, 1.2vw, 0.68rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  flex: 1 1 14rem;
  min-width: 0;
}

.site-nav > a:not(.btn-cta) {
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.1rem;
  white-space: nowrap;
}

.site-nav > a:not(.btn-cta):hover {
  color: var(--gold);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.05rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.72rem, 1.3vw, 0.78rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff !important;
  background: linear-gradient(180deg, var(--teal-hi), var(--teal) 55%, var(--teal-deep));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 22px rgba(15, 74, 78, 0.35);
  transition: filter 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #fff !important;
}

.btn-cta-lg {
  padding: 0.75rem 1.35rem;
  font-size: clamp(0.8rem, 1.5vw, 0.88rem);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.72rem, 1.3vw, 0.78rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream) !important;
  background: rgba(23, 14, 9, 0.35);
  border: 1px solid rgba(245, 229, 207, 0.45);
  transition: background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(245, 229, 207, 0.1);
  border-color: var(--cream);
  color: #fff !important;
}

main {
  flex: 1;
  padding: clamp(1rem, 2.5vw, 1.75rem) 0 clamp(2rem, 4vw, 3rem);
  min-width: 0;
}

.banner-note {
  margin: 0 0 1rem;
  padding: 0.65rem 1rem;
  text-align: center;
  border-radius: var(--radius);
  background: rgba(26, 111, 115, 0.22);
  border: 1px solid rgba(247, 185, 10, 0.35);
  color: var(--cream);
  font-size: clamp(0.8rem, 1.5vw, 0.85rem);
}

/* ——— Hero carte ——— */
.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  min-height: clamp(200px, 28vw, 380px);
  margin: 0 auto var(--space);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(247, 185, 10, 0.08);
}

.hero-art,
.hero-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-art {
  background: url("/media/key-alliance.jpg") center 68% / cover no-repeat;
  transform: scale(1.03);
}

.hero-veil {
  background:
    linear-gradient(90deg, rgba(23, 14, 9, 0.15) 0%, rgba(23, 14, 9, 0.42) 45%, rgba(23, 14, 9, 0.78) 100%),
    linear-gradient(0deg, rgba(23, 14, 9, 0.72) 0%, transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  margin-left: auto;
  padding: clamp(1rem, 3.5vw, 2.4rem);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  justify-content: center;
  min-width: 0;
}

.eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 1.3vw, 0.72rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(247, 185, 10, 0.35);
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3.8vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}

.hero-lead {
  margin: 0;
  color: var(--ink-dim);
  font-size: clamp(0.9rem, 1.6vw, 1.08rem);
  max-width: 38ch;
  margin-left: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
  margin-top: 0.35rem;
}

.page-title {
  font-family: var(--font-display);
  color: var(--cream);
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0 0 var(--space);
  font-size: clamp(1.2rem, 2.6vw, 1.95rem);
  text-shadow: 0 0 24px rgba(247, 185, 10, 0.18);
  text-transform: uppercase;
  padding-inline: 0.25rem;
}

/* ——— Grilles ——— */
.home-top,
.home-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--chat-col);
  gap: var(--space);
  align-items: stretch;
  width: 100%;
  margin: 0 auto var(--space);
  min-width: 0;
}

.home-bottom {
  align-items: start;
  margin-bottom: 0;
}

.stream-panel,
.chat-panel,
.panel-box,
.latest-news,
.news-card,
.tool-links a {
  min-width: 0;
}

.stream-panel {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(247, 185, 10, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 40px var(--glow), 0 14px 40px rgba(0, 0, 0, 0.45);
}

.stream-panel:has(.countdown) {
  aspect-ratio: auto;
  min-height: clamp(260px, 38vw, 460px);
}

.chat-panel {
  min-height: 100%;
  background: #120c08;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.stream-panel iframe,
.chat-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ——— Countdown ——— */
.countdown {
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.35rem, 1.2vw, 0.65rem);
  padding: clamp(0.85rem, 2.5vw, 1.4rem);
  text-align: center;
  background:
    linear-gradient(160deg, rgba(26, 111, 115, 0.35), rgba(23, 14, 9, 0.88)),
    url("/media/bg-cinematic.jpg") center / cover no-repeat;
}

.countdown-logo {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin: 0 auto 0.15rem;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.55));
}

.countdown-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 1.4vw, 0.72rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  max-width: 100%;
}

.countdown-label {
  margin: 0;
  color: var(--ink-dim);
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.35rem, 1.2vw, 0.65rem);
  width: min(100%, 36rem);
  margin: 0.2rem 0;
}

.countdown-unit {
  background: rgba(9, 52, 76, 0.45);
  border: 1px solid rgba(245, 229, 207, 0.22);
  border-radius: 8px;
  padding: clamp(0.45rem, 1.4vw, 0.75rem) clamp(0.2rem, 0.8vw, 0.4rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  min-width: 0;
}

.countdown-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
}

.countdown-unit-label {
  display: block;
  margin-top: 0.25rem;
  font-size: clamp(0.55rem, 1.2vw, 0.68rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
}

.countdown-date {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  color: var(--gold);
  letter-spacing: 0.04em;
}

.chat-placeholder {
  height: 100%;
  min-height: clamp(180px, 28vh, 280px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(0.9rem, 2vw, 1.2rem);
  text-align: center;
  background: linear-gradient(160deg, rgba(26, 111, 115, 0.28), rgba(23, 14, 9, 0.94));
  color: var(--ink-dim);
}

.chat-placeholder p {
  margin: 0;
  max-width: 100%;
  text-wrap: balance;
}

.chat-placeholder .eyebrow {
  text-shadow: none;
}

.chat-placeholder strong {
  color: var(--cream);
}

.panel-box {
  background: linear-gradient(160deg, rgba(26, 111, 115, 0.18), rgba(28, 18, 12, 0.94));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(0.9rem, 2vw, 1.2rem);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(245, 229, 207, 0.08);
}

.panel-box > h2,
.panel-head-row h2 {
  margin: 0 0 1rem;
  text-align: center;
  font-family: var(--font-display);
  color: var(--cream);
  letter-spacing: 0.06em;
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  text-transform: uppercase;
}

.panel-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 0.75rem;
  margin-bottom: 1rem;
}

.panel-head-row h2 {
  margin: 0;
  text-align: left;
  flex: 1 1 12rem;
  min-width: 0;
}

.panel-more {
  font-size: clamp(0.65rem, 1.3vw, 0.72rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-dim);
  flex: 0 1 auto;
  max-width: 100%;
}

.panel-more:hover {
  color: var(--gold);
}

.tool-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tool-links a {
  display: block;
  text-align: center;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(26, 111, 115, 0.28), rgba(23, 14, 9, 0.92));
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(0.78rem, 1.5vw, 0.86rem);
  line-height: 1.35;
}

.tool-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 18px rgba(247, 185, 10, 0.18);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 0.85rem;
}

.news-card {
  position: relative;
  min-height: clamp(140px, 22vw, 180px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.news-card:hover {
  transform: translateY(-2px);
  color: inherit;
  box-shadow: 0 0 22px rgba(247, 185, 10, 0.25);
}

.news-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 18%, rgba(23, 14, 9, 0.94));
}

.news-card-content {
  position: relative;
  z-index: 1;
  padding: 0.85rem;
  width: 100%;
  min-width: 0;
}

.news-card-content h3 {
  margin: 0 0 0.3rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.5vw, 0.92rem);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-content time {
  display: block;
  color: var(--muted);
  font-size: clamp(0.65rem, 1.2vw, 0.72rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.empty-hint {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.actus-page {
  max-width: min(100%, 960px);
  margin: 0 auto;
}

.actus-page h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.75rem);
  color: var(--cream);
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.actus-date {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(0.8rem, 1.5vw, 0.88rem);
}

.actus-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(247, 185, 10, 0.35);
  margin-bottom: 1rem;
  box-shadow: 0 0 30px var(--glow);
}

.actus-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.actus-desc {
  margin: 0 0 1.15rem;
  color: var(--ink-dim);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.actus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(28, 18, 12, 0.75), rgba(23, 14, 9, 0.96));
  padding: clamp(1.1rem, 2.5vw, 1.75rem) 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1 1 16rem;
  min-width: 0;
}

.footer-logo {
  height: clamp(1.8rem, 3vw, 2.2rem);
  width: auto;
  display: block;
  margin-bottom: 0.55rem;
  opacity: 0.9;
}

.footer-copy {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(0.7rem, 1.3vw, 0.78rem);
  line-height: 1.45;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  flex: 1 1 12rem;
  justify-content: flex-end;
}

.footer-nav a {
  color: var(--ink-dim);
  font-weight: 700;
  font-size: clamp(0.7rem, 1.3vw, 0.78rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--gold);
}

/* ——— Tablette / petit laptop ——— */
@media (max-width: 1100px) {
  :root {
    --chat-col: clamp(220px, 28vw, 300px);
  }
}

/* ——— Mobile & tablette portrait ——— */
@media (max-width: 900px) {
  :root {
    --chat-col: 1fr;
  }

  .brand-sub {
    display: none;
  }

  .header-inner {
    align-items: stretch;
  }

  .brand {
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .site-nav {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero {
    min-height: 0;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(23, 14, 9, 0.55) 0%, rgba(23, 14, 9, 0.72) 45%, rgba(23, 14, 9, 0.88) 100%);
  }

  .hero-copy {
    width: 100%;
    margin-left: 0;
    text-align: left;
    max-width: none;
  }

  .hero-lead {
    margin-left: 0;
    max-width: none;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .home-top,
  .home-bottom {
    grid-template-columns: 1fr;
  }

  .stream-panel:not(:has(.countdown)) {
    min-height: 200px;
  }

  .stream-panel:has(.countdown) {
    min-height: clamp(240px, 58vw, 420px);
  }

  .chat-panel {
    min-height: clamp(220px, 42vh, 360px);
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 22rem);
  }

  .panel-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel-head-row h2 {
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

/* ——— Téléphone étroit ——— */
@media (max-width: 560px) {
  .site-nav {
    gap: 0.35rem 0.55rem;
  }

  .site-nav > a:not(.btn-cta) {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .btn-cta,
  .btn-ghost {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .countdown-unit-label {
    letter-spacing: 0.02em;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Paysage court (téléphone / tablette couchée) ——— */
@media (orientation: landscape) and (max-height: 520px) {
  .site-header {
    position: relative;
  }

  .header-inner {
    padding: 0.45rem 0;
  }

  .brand-logo {
    height: 2rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 0.85rem 1rem;
    gap: 0.35rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.2rem, 4vh, 1.7rem);
  }

  .hero-lead {
    font-size: 0.88rem;
  }

  .stream-panel:has(.countdown) {
    min-height: clamp(200px, 70vh, 320px);
  }

  .countdown {
    padding: 0.65rem;
    gap: 0.3rem;
  }

  .countdown-logo {
    width: min(100%, 180px);
  }

  .countdown-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 28rem);
  }

  .chat-panel {
    min-height: clamp(160px, 55vh, 260px);
  }

  main {
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
  }
}

/* ——— Portrait TV / tablette haute ——— */
@media (orientation: portrait) and (min-width: 700px) and (min-height: 1000px) {
  :root {
    --chat-col: 1fr;
  }

  .home-top,
  .home-bottom {
    grid-template-columns: 1fr;
  }

  .stream-panel:has(.countdown) {
    min-height: clamp(320px, 36vh, 520px);
  }

  .chat-panel {
    min-height: clamp(280px, 30vh, 420px);
  }

  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* ——— Desktop large / TV HD ——— */
@media (min-width: 1400px) {
  :root {
    --max: 1320px;
    --chat-col: 340px;
  }
}

/* ——— QHD / TV 1440p ——— */
@media (min-width: 1800px) {
  :root {
    --max: 1560px;
    --chat-col: 380px;
  }

  .hero {
    min-height: clamp(320px, 22vw, 440px);
  }
}

/* ——— 4K / TV UHD ——— */
@media (min-width: 2500px) {
  :root {
    --max: 1920px;
    --chat-col: 420px;
    --radius: 14px;
  }

  body {
    font-size: 1.05rem;
  }

  .brand-logo {
    height: 3.6rem;
    max-width: 280px;
  }

  .hero {
    min-height: clamp(380px, 18vw, 520px);
  }

  .hero-copy {
    width: min(100%, 40rem);
  }

  .countdown-grid {
    width: min(100%, 44rem);
  }

  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (min-width: 3500px) {
  :root {
    --max: 2400px;
    --chat-col: 480px;
  }

  body {
    font-size: 1.12rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn-cta,
  .news-card {
    transition: none;
  }
}
