/* =====================================================
   TEBRY INTERACTIVE — Modernist Public Site
   Dark default (4b) + light theme toggle (4a)
   Font: Archivo · Radius: 0 · 2px dividers · left-aligned
   This file is PUBLIC-SITE ONLY. Admin panel keeps main.css.
   ===================================================== */

/* ---------- TOKENS: DARK (default / 4b) ---------- */
:root {
  --bg: #201e1d;
  --surface: #2a2725;          /* card / hover ground */
  --surface-2: #322f2c;
  --text: #f3f2f2;
  --text-secondary: #a5a2a0;
  --text-body: #c9c6c4;        /* long-form copy (legal) */
  --faint: #6b6867;
  --fainter: #4a4846;
  --divider-thin: #3a3735;     /* 1px list rows */
  --divider-bold: #f3f2f2;     /* 2px section rules (dark: light line) */

  --accent: #9c200e;           /* accent-700, user-chosen (not too bright) */
  --accent-hover: #ec3013;     /* accent-500, hover only */
  --accent-bright: #f4674f;    /* accent-400, light highlight text */
  --on-accent: #f3f2f2;

  --font: "Archivo", system-ui, -apple-system, sans-serif;
  --maxw: 1200px;
  --nav-h: 64px;
}

/* ---------- TOKENS: LIGHT (toggle / 4a) ---------- */
:root[data-theme="light"] {
  --bg: #f3f2f2;
  --surface: #e9e7e6;
  --surface-2: #ffffff;
  --text: #201e1d;
  --text-secondary: #6b6867;
  --text-body: #322f2c;
  --faint: #6b6867;
  --fainter: #bab6b6;
  --divider-thin: #d7d3d3;
  --divider-bold: #201e1d;     /* 2px section rules (light: dark line) */

  --accent: #9c200e;
  --accent-hover: #ec3013;
  --accent-bright: #c0341f;
  --on-accent: #f3f2f2;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .3s ease, color .3s ease;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font); font-weight: 900; line-height: 1.1; letter-spacing: -.5px; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 2px; }
::selection { background: var(--accent); color: #fff; }
.grayscale, .gs { filter: grayscale(1) contrast(1.06); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.kicker { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-bright); }
.muted { color: var(--text-secondary); }
.hidden { display: none !important; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: stretch;
  background: var(--bg);
  border-bottom: 2px solid var(--divider-bold);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; width: 100%; display: flex; align-items: stretch; }
.nav-logo {
  display: flex; align-items: center; padding: 0 28px;
  font-weight: 900; font-size: 19px; letter-spacing: -.5px; color: var(--text);
}
.nav-logo .dot { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: 8px; }
.nav-links a {
  position: relative; font-size: 13px; font-weight: 500; color: var(--text-secondary);
  padding: 6px 0;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--accent);
}
.nav-right { margin-left: auto; display: flex; align-items: stretch; }
.nav-cell {
  display: flex; align-items: center; padding: 0 18px;
  border-left: 2px solid var(--divider-bold);
  font-size: 13px; font-weight: 600; color: var(--text-secondary); background: transparent;
}
.nav-cell button, .nav-cell a { color: inherit; font-weight: 600; font-size: 13px; }
.nav-toggle-group { display: flex; align-items: center; gap: 10px; }
.nav-toggle-group .seg-btn { color: var(--text-secondary); background: none; border: 0; font-weight: 600; font-size: 13px; padding: 2px 4px; }
.nav-toggle-group .seg-btn.on { color: var(--text); }
.nav-theme { background: none; border: 0; color: var(--text-secondary); display: flex; align-items: center; }
.nav-theme:hover { color: var(--text); }
.nav-cta {
  display: flex; align-items: center; gap: 8px; padding: 0 22px;
  background: var(--accent); color: var(--on-accent);
  border-left: 2px solid var(--divider-bold);
  font-weight: 700; font-size: 13px; text-transform: none;
}
.nav-cta:hover { background: var(--accent-hover); color: #fff; }
.nav-burger { display: none; background: none; border: 0; color: var(--text); padding: 0 22px; }

/* mobile menu (full-screen, tur 7) */
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; z-index: 999;
  background: var(--bg); padding: 24px 24px 40px; overflow-y: auto; flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile-links { display: flex; flex-direction: column; }
.nav-mobile-links a { display: flex; align-items: center; justify-content: space-between; padding: 18px 2px; font-size: 28px; font-weight: 900; letter-spacing: -1px; text-transform: uppercase; color: var(--text); border-bottom: 1px solid var(--divider-thin); }
.nav-mobile-links a span svg { width: 22px; height: 22px; color: var(--accent-bright); }
.nav-mobile-foot { margin-top: auto; padding-top: 28px; }
.nav-mobile-langs { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--divider-bold); margin-bottom: 12px; }
.nav-mobile-langs button { padding: 14px; font-weight: 700; font-size: 15px; background: none; border: 0; color: var(--text-secondary); font-family: var(--font); }
.nav-mobile-langs button + button { border-left: 1px solid var(--divider-bold); }
.nav-mobile-langs button.on { background: var(--text); color: var(--bg); }
.nav-mobile-theme { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px; background: none; border: 1px solid var(--divider-thin); color: var(--text); font-family: var(--font); font-weight: 600; font-size: 14px; margin-bottom: 12px; }
.nav-mobile-theme span svg { width: 18px; height: 18px; }

/* ---------- MARQUEE (news ticker) ---------- */
.marquee { overflow: hidden; background: var(--accent); border-bottom: 2px solid var(--divider-bold); }
.marquee-track { display: inline-flex; white-space: nowrap; animation: tbMarquee 22s linear infinite; }
.marquee-track span { display: inline-block; padding: 8px 0; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.marquee-track span::after { content: "◆"; margin: 0 28px; opacity: .6; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 14px; line-height: 1.2;
  padding: 13px 22px; border: 1px solid transparent; border-radius: 0;
  background: transparent; color: var(--text); text-align: left;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-outline { border-color: var(--divider-bold); color: var(--text); }
.btn-outline:hover { background: color-mix(in srgb, var(--text) 10%, transparent); }
.btn-ghost { color: var(--accent-bright); padding: 6px 2px; }
.btn-ghost:hover { color: var(--accent-hover); }
.btn-block { width: 100%; justify-content: flex-start; }
.btn-join { /* adjacent primary+outline with shared border */ }
.btn-row { display: flex; gap: 0; flex-wrap: wrap; }
.btn-row .btn-primary + .btn-outline { border-left: 0; }

/* ---------- TAGS / STATUS ---------- */
.tag { display: inline-flex; align-items: center; font-size: 11px; font-weight: 600; letter-spacing: .5px; padding: 4px 10px; text-transform: uppercase; border: 1px solid var(--fainter); color: var(--text-secondary); }
.tag-accent { border: 0; background: var(--accent); color: #fff; }
.status { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; }
.status.beta, .status.testing { background: var(--accent); color: #fff; }
.status.released, .status.published { background: var(--text); color: var(--bg); }
.status.coming, .status.upcoming, .status.draft { background: transparent; border: 1px solid var(--faint); color: var(--text-secondary); }

/* ---------- FORMS ---------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; color: var(--text-secondary); }
.input {
  width: 100%; min-height: 44px; padding: 10px 14px; font: inherit; font-size: 14px;
  color: var(--text); background: var(--surface); border: 1px solid var(--divider-thin); border-radius: 0;
  caret-color: var(--accent); transition: border-color .2s ease;
}
.input:hover { border-color: var(--faint); }
.input:focus-visible { border-color: var(--accent); outline: none; }
textarea.input { min-height: 120px; resize: vertical; }
.seg { display: inline-flex; border: 1px solid var(--divider-bold); }
.seg button { padding: 8px 16px; font-size: 13px; font-weight: 600; background: none; border: 0; color: var(--text-secondary); }
.seg button + button { border-left: 1px solid var(--divider-bold); }
.seg button.on { background: var(--text); color: var(--bg); }

/* ---------- SECTIONS ---------- */
.section { padding: 80px 0; border-top: 2px solid var(--divider-bold); }
.section:first-of-type { border-top: 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.section-title { font-size: 24px; font-weight: 900; letter-spacing: -.5px; text-transform: uppercase; }
.page-hero { padding: 96px 0 56px; border-bottom: 2px solid var(--divider-bold); }
.page-hero h1 { font-size: clamp(40px, 6vw, 52px); letter-spacing: -2px; text-transform: uppercase; margin-top: 10px; }

/* ---------- HERO (home, 4b red poster) ---------- */
.hero { border-bottom: 2px solid var(--divider-bold); }
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; min-height: 560px; }
.hero-copy { padding: 64px 40px; display: flex; flex-direction: column; justify-content: center; background: var(--accent); color: #fff; }
.hero-copy .kicker { color: rgba(255,255,255,.85); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.hero-badge .pulse { width: 8px; height: 8px; background: #fff; animation: tbPulse 1.6s infinite; }
.hero h1 { font-size: clamp(48px, 8vw, 88px); letter-spacing: -3px; text-transform: uppercase; line-height: .95; margin-bottom: 20px; }
.hero p { font-size: 16px; max-width: 480px; margin-bottom: 28px; color: rgba(255,255,255,.9); }
.hero-media { position: relative; overflow: hidden; background: var(--surface); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scan::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 40%; background: linear-gradient(to bottom, rgba(255,255,255,.12), transparent); animation: tbScan 7s linear infinite; pointer-events: none; }
/* striped placeholder media (no real images yet) */
.ph-media { background-image: repeating-linear-gradient(45deg, var(--surface) 0 14px, var(--surface-2) 14px 28px); }
.ph-media::before { content: attr(data-label); position: absolute; bottom: 16px; left: 16px; z-index: 1; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); }
.platform-tags { display: flex; gap: 0; margin-top: 24px; }
.platform-tags span { font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 6px 14px; border: 1px solid rgba(255,255,255,.5); }
.platform-tags span + span { border-left: 0; }
/* buttons on the red hero need contrast (not red-on-red) */
.hero-copy .btn-primary { background: #fff; color: var(--accent); }
.hero-copy .btn-primary:hover { background: #efeceb; color: var(--accent); }
.hero-copy .btn-outline { border-color: rgba(255,255,255,.8); color: #fff; }
.hero-copy .btn-outline:hover { background: rgba(255,255,255,.14); }

/* ---------- GAMES ---------- */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.game-card { display: flex; flex-direction: column; cursor: pointer; background: var(--surface); border: 1px solid var(--divider-thin); transition: background .2s ease; }
.game-card:hover { background: var(--surface-2); }
.game-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.game-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.06); transition: filter .3s ease; }
.game-card:hover .game-thumb img { filter: grayscale(0) contrast(1); }
.game-thumb .status { position: absolute; top: 0; left: 0; }
.game-info { padding: 18px; }
.game-info .g-genre { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); }
.game-info h3 { font-size: 18px; font-weight: 800; margin: 6px 0; }
.game-info p { font-size: 13px; color: var(--text-secondary); }
.game-plats { display: flex; gap: 8px; margin-top: 12px; }
.game-plats span { font-size: 10px; font-weight: 600; letter-spacing: .5px; color: var(--faint); border: 1px solid var(--divider-thin); padding: 2px 8px; }
.game-next { display: flex; align-items: center; justify-content: center; text-align: center; border: 1px dashed var(--fainter); color: var(--text-secondary); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; min-height: 160px; animation: tbFloat 4s ease-in-out infinite; }

/* full-width game band (games page) */
.game-band { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; padding: 40px 0; border-top: 1px solid var(--divider-thin); }
.game-band:first-child { border-top: 0; }
.game-band .gb-media { aspect-ratio: 16/10; overflow: hidden; }
.game-band .gb-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.06); }
.game-band h2 { font-size: 32px; text-transform: uppercase; margin-bottom: 12px; }

/* ---------- NEWS ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { cursor: pointer; border: 1px solid var(--divider-thin); background: var(--surface); transition: background .2s ease; }
.news-card:hover { background: var(--surface-2); }
.news-thumb { aspect-ratio: 16/9; overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.06); }
.news-body { padding: 18px; }
.news-cat { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent-bright); }
.news-date { font-size: 12px; color: var(--text-secondary); margin: 6px 0; }
.news-body h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.news-body p { font-size: 13px; color: var(--text-secondary); }
.news-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-bottom: 40px; }
.news-feature .nf-media { aspect-ratio: 16/10; overflow: hidden; }
.news-feature .nf-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.06); }

/* ---------- STATS STRIP ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--divider-bold); border-bottom: 2px solid var(--divider-bold); }
.stat { padding: 40px; border-left: 2px solid var(--divider-bold); }
.stat:first-child { border-left: 0; }
.stat .num { font-size: 36px; font-weight: 900; color: var(--accent-bright); letter-spacing: -1px; }
.stat .lbl { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); margin-top: 6px; }

/* ---------- STUDIO / VALUES ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 28px; border: 1px solid var(--divider-thin); background: var(--surface); }
.value-card .vnum { font-size: 12px; font-weight: 900; color: var(--accent-bright); letter-spacing: 1px; }
.value-card h3 { font-size: 18px; margin: 10px 0; text-transform: uppercase; }
.value-card p { font-size: 14px; color: var(--text-secondary); }

/* ---------- CAREERS ---------- */
.jobs { border-top: 2px solid var(--divider-bold); }
.job { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--divider-thin); }
.job h3 { font-size: 18px; text-transform: uppercase; }
.job .j-req { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }
.job .j-type { font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--text-secondary); border: 1px solid var(--divider-thin); padding: 6px 12px; }

/* ---------- SUPPORT / FAQ ---------- */
.topics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.topic { padding: 24px; border: 1px solid var(--divider-thin); background: var(--surface); }
.topic h3 { font-size: 15px; text-transform: uppercase; margin-bottom: 6px; }
.topic p { font-size: 13px; color: var(--text-secondary); }
.faq-item { border-bottom: 1px solid var(--divider-thin); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; background: none; border: 0; color: var(--text); font-family: var(--font); font-size: 16px; font-weight: 800; text-align: left; }
.faq-q::after { content: "+"; color: var(--accent-bright); font-size: 20px; font-weight: 400; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { display: none; padding: 0 0 20px; color: var(--text-secondary); font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ---------- LEGAL ---------- */
.legal-grid { display: grid; grid-template-columns: 280px 1fr; gap: 48px; }
.legal-toc { position: sticky; top: calc(var(--nav-h) + 24px); align-self: start; }
.legal-toc a { display: block; padding: 8px 0 8px 16px; font-size: 13px; color: var(--text-secondary); border-left: 2px solid transparent; }
.legal-toc a.active, .legal-toc a:hover { color: var(--text); border-left-color: var(--accent); }
.legal-body { max-width: 640px; color: var(--text-body); font-size: 14px; line-height: 1.75; }
.legal-body h2 { font-size: 20px; color: var(--text); margin: 32px 0 12px; text-transform: uppercase; }
.legal-body p { margin-bottom: 16px; }

/* ---------- AUTH / CONTACT ---------- */
.auth-wrap { max-width: 440px; margin: 80px auto; padding: 0 40px; }
.auth-card { border: 1px solid var(--divider-thin); background: var(--surface); padding: 40px; }
.auth-card h1 { font-size: 28px; text-transform: uppercase; margin-bottom: 8px; }
.auth-sub { color: var(--text-secondary); font-size: 14px; margin-bottom: 28px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info { border: 1px solid var(--divider-thin); background: var(--surface); padding: 28px; }
.contact-info .ci-item { padding: 14px 0; border-bottom: 1px solid var(--divider-thin); }
.contact-info .ci-item:last-child { border-bottom: 0; }
.contact-info .ci-lbl { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); }

/* ---------- CTA BAND ---------- */
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 48px 0; border-top: 2px solid var(--divider-bold); flex-wrap: wrap; }
.cta-band h2 { font-size: 28px; text-transform: uppercase; }

/* ---------- FOOTER ---------- */
.footer { border-top: 2px solid var(--divider-bold); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding: 56px 0; }
.footer-brand { font-size: 20px; font-weight: 900; letter-spacing: -.5px; }
.footer-brand .dot { color: var(--accent); }
.footer-desc { font-size: 13px; color: var(--text-secondary); margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; padding: 5px 0; color: var(--text); }
.footer-col a:hover { color: var(--accent-bright); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; border-top: 2px solid var(--divider-bold); font-size: 12px; color: var(--text-secondary); flex-wrap: wrap; }
.footer-social { display: flex; gap: 18px; font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--text-secondary); }

/* ---------- TOAST ---------- */
.toast { position: fixed; bottom: 24px; right: 24px; z-index: 9999; padding: 14px 22px; font-weight: 600; font-size: 14px; color: #fff; border-radius: 0; background: var(--accent); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.toast-error { background: #b3261e; }
.toast-success { background: var(--accent); }

/* ---------- SKELETON ---------- */
.skeleton { background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%); background-size: 200% 100%; animation: tbSkeleton 1.5s infinite; }

/* ---------- ANIMATIONS ---------- */
@keyframes tbMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tbPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.75); } }
@keyframes tbFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tbFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes tbScan { 0% { transform: translateY(-100%); } 100% { transform: translateY(600%); } }
@keyframes tbSkeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.fade-up { animation: tbFadeUp .6s ease-out both; }
.fade-up.d1 { animation-delay: .15s; } .fade-up.d2 { animation-delay: .3s; } .fade-up.d3 { animation-delay: .45s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .container { padding: 0 24px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 280px; }
  .games-grid, .news-grid, .topics { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; align-items: center; }
  .games-grid, .news-grid, .topics, .values, .stats, .contact-grid, .news-feature, .game-band { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 2px solid var(--divider-bold); }
  .stat:first-child { border-top: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .job { grid-template-columns: 1fr; gap: 12px; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .btn-row .btn-primary + .btn-outline { border-left: 1px solid var(--divider-bold); border-top: 0; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
