:root {
  --bg: #0a0717;
  --panel: #16112f;
  --panel-2: #211a4c;
  --line: #3b2f75;
  --text: #ffffff;
  --muted: #beb8f5;
  --cyan: #00d4ff;
  --red: #ff2e63;
  --gold: #ffc857;
  --purple: #8b5cf6;
  --ink: #070816;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, Arial, "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.top-strip { height: 8px; background: var(--red); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 13, 34, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  max-width: 1264px;
  min-height: 82px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}
.brand b { display: block; font-size: 18px; line-height: 1; }
.brand small { display: block; color: var(--muted); font-size: 11px; margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.nav-links a {
  color: #ddd8ff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 0;
}
.nav-links a.active { color: var(--gold); }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0e0a21;
  white-space: nowrap;
}
.language-switch a {
  min-width: 42px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ddd8ff;
  font-size: 12px;
  font-weight: 900;
  padding: 0 10px;
}
.language-switch a.active {
  background: var(--gold);
  color: #120917;
}
.safety-btn, .menu-btn {
  border: 0;
  border-radius: 8px;
  background: var(--cyan);
  color: var(--ink);
  font-weight: 900;
  padding: 12px 18px;
}
.menu-btn { display: none; }
.hero {
  max-width: 1264px;
  margin: 52px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: 64px;
  align-items: center;
}
.hero-card {
  min-height: 470px;
  border-left: 8px solid var(--red);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 46, 99, .12), transparent 42%),
    var(--panel);
  padding: 40px 34px;
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
}
.eyebrow, .label {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  background: #251b56;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
  max-width: 100%;
  white-space: normal;
}
.hero h1, .page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}
.hero p, .page-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #dad7ff;
  font-size: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 11px 16px;
  font-weight: 900;
  font-size: 13px;
}
.btn.gold { background: var(--gold); color: #120917; }
.btn.red { background: var(--red); color: #fff; }
.btn.dark { background: #1e1746; color: #fff; }
.download-band {
  max-width: 1264px;
  margin: 34px auto 0;
  padding: 0 20px;
}
.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 200, 87, .45);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 200, 87, .14), transparent 32%),
    linear-gradient(90deg, #211238, #171138);
  padding: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}
.download-copy {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.download-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--red);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.16);
}
.download-copy h2 { font-size: 28px; margin-bottom: 8px; }
.download-copy p { max-width: 760px; }
.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.download-meta span {
  border-radius: 999px;
  background: #0e0a21;
  border: 1px solid var(--line);
  color: #ddd8ff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}
.hero-visual {
  display: grid;
  place-items: center;
  position: relative;
  min-width: 0;
}
.hero-art {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 18px;
  opacity: .42;
  margin-bottom: -72px;
}
.slot-machine {
  position: relative;
  width: min(430px, 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #140f2f;
  padding: 28px 38px 34px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 24px 60px rgba(0,0,0,.4);
}
.machine-top {
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}
.reel-window {
  position: relative;
  margin: 24px 0;
  padding: 28px;
  border-radius: 16px;
  background: #070816;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.symbol {
  height: 150px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #f6f8ff;
  color: var(--red);
  font-size: 56px;
  font-weight: 900;
}
.symbol.star { background: #fff2c2; color: var(--purple); }
.symbol.blue { color: #00a7c9; }
.payline {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 50%;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}
.meter {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 7px;
  background: var(--panel-2);
  padding: 0 16px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
}
.meter span { color: var(--muted); }
.meter b { color: var(--gold); }
.meter b.danger { color: var(--red); }
.lever {
  position: absolute;
  right: -16px;
  top: 132px;
  width: 18px;
  height: 124px;
  border-radius: 999px;
  background: var(--gold);
}
.lever span {
  position: absolute;
  top: -34px;
  left: -14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
}
main { max-width: 1264px; margin: 0 auto; padding: 70px 20px 80px; }
.page-index {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #120d2a;
  padding: 34px;
}
h2 { margin: 0 0 12px; font-size: 32px; line-height: 1.1; }
p { color: var(--muted); margin: 0; }
.page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.page-tile {
  min-height: 68px;
  border-radius: 10px;
  background: var(--panel-2);
  padding: 14px 18px;
  border-left: 6px solid var(--cyan);
}
.page-tile.gold { border-left-color: var(--gold); }
.page-tile.red { border-left-color: var(--red); }
.page-tile.purple { border-left-color: var(--purple); }
.page-tile b { display: block; }
.page-tile small { color: var(--muted); }
.section-head { margin-top: 72px; max-width: 860px; }
.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 26px;
}
.topic-card, .panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}
.topic-card {
  min-height: 220px;
  padding: 24px;
  border-top: 7px solid var(--cyan);
}
.topic-card.gold { border-top-color: var(--gold); }
.topic-card.red { border-top-color: var(--red); }
.topic-card.purple { border-top-color: var(--purple); }
.topic-card span { color: var(--cyan); font-size: 28px; font-weight: 900; }
.topic-card.gold span { color: var(--gold); }
.topic-card.red span { color: var(--red); }
.topic-card.purple span { color: var(--purple); }
.topic-card h3 { margin: 18px 0 8px; font-size: 22px; }
.topic-card p { min-height: 66px; font-size: 14px; }
.topic-card b { display: inline-flex; margin-top: 18px; border-radius: 7px; background: var(--cyan); color: var(--ink); padding: 9px 13px; font-size: 12px; }
.topic-card.gold b { background: var(--gold); }
.topic-card.red b { background: var(--red); color: #fff; }
.topic-card.purple b { background: var(--purple); color: #fff; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 80px;
}
.panel { padding: 28px; }
.term-list, .app-list, .faq-list, .question-list { display: grid; gap: 12px; margin-top: 20px; }
.term-list p, .app-list p {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 38px;
  border-radius: 8px;
  background: var(--panel-2);
  padding: 0 16px;
}
.term-list b { color: var(--cyan); }
.term-list p:nth-child(2n) b { color: var(--gold); }
.term-list p:nth-child(3n) b { color: var(--red); }
.app-list p { grid-template-columns: 16px 140px 1fr 130px; }
.dot { width: 14px; height: 14px; border-radius: 50%; }
.cyan-bg { background: var(--cyan); }
.gold-bg { background: var(--gold); }
.red-bg { background: var(--red); }
.purple-bg { background: var(--purple); }
.app-list strong { color: var(--cyan); font-size: 12px; }
.news-qa { margin-top: 80px; }
.red-text { color: var(--red); background: transparent; padding: 0; }
.cyan-text { color: var(--cyan); background: transparent; padding: 0; }
.inline-link {
  display: inline-flex;
  margin-top: 22px;
  border-radius: 999px;
  padding: 8px 14px;
  background: #251b56;
  color: var(--gold);
  font-weight: 900;
  font-size: 12px;
}
.qa-mini { display: grid; gap: 12px; margin-top: 18px; }
.qa-mini a, .question-list article {
  border-bottom: 1px solid #342a66;
  padding-bottom: 12px;
  font-weight: 800;
}
.page-main { padding-top: 48px; }
.page-hero {
  border-left: 8px solid var(--red);
  border-radius: 16px;
  background: var(--panel);
  padding: 42px 36px;
}
.page-hero h1 { font-size: clamp(38px, 5vw, 62px); }
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  margin-top: 32px;
}
.content-panel { margin-bottom: 22px; }
.content-panel ul { margin: 14px 0 0; padding-left: 22px; color: var(--muted); }
.content-panel li { margin: 8px 0; }
.content-panel a { color: var(--cyan); font-weight: 800; }
details {
  border-radius: 8px;
  background: var(--panel-2);
  padding: 15px 18px;
}
summary { cursor: pointer; font-weight: 900; }
details p { margin-top: 10px; }
.side-panel {
  position: sticky;
  top: 110px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #120d2a;
  padding: 22px;
}
.side-panel .slot-machine {
  width: 100%;
  padding: 18px;
  margin-bottom: 24px;
}
.side-panel .reel-window { gap: 8px; padding: 18px; }
.side-panel .symbol { height: 86px; font-size: 34px; }
.side-panel .lever { display: none; }
.side-panel a {
  display: block;
  border-radius: 8px;
  background: var(--panel-2);
  margin-top: 10px;
  padding: 12px;
  color: #fff;
  font-weight: 800;
}
.question-list article { background: var(--panel-2); border: 0; border-radius: 10px; padding: 18px; }
.question-list h3 { margin: 0 0 8px; color: var(--gold); }
.channel-hero { background:
  linear-gradient(135deg, rgba(255, 46, 99, .16), rgba(0, 212, 255, .07) 46%, transparent),
  var(--panel);
}
.news-layout, .qa-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  margin-top: 32px;
}
.news-feed, .qa-feed { display: grid; gap: 22px; min-width: 0; }
.featured-news, .news-card, .question-card, .ask-card, .topic-sidebar {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
}
.featured-news {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 330px;
}
.featured-news img, .news-card img, .question-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.08);
}
.featured-news > div { padding: 28px; align-self: center; }
.featured-news h2 { font-size: 34px; }
.news-kicker, .news-date {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.tag-row span {
  border: 1px solid #453984;
  border-radius: 999px;
  background: #251b56;
  color: #efeaff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.news-card img { aspect-ratio: 16 / 9; }
.news-card { padding-bottom: 20px; }
.news-card > :not(img) { margin-left: 20px; margin-right: 20px; }
.news-card .news-date { margin-top: 18px; color: var(--gold); }
.news-card h3 { margin: 0 20px 8px; font-size: 22px; line-height: 1.15; }
.news-card p { font-size: 14px; }
.topic-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 22px;
  background: #120d2a;
}
.topic-sidebar a {
  display: block;
  border-radius: 8px;
  background: var(--panel-2);
  margin-top: 10px;
  padding: 12px;
  color: #fff;
  font-weight: 800;
}
.sidebar-note {
  margin-top: 20px;
  border-left: 5px solid var(--red);
  border-radius: 10px;
  background: #1c1640;
  padding: 16px;
}
.sidebar-note b { color: var(--gold); }
.sidebar-note p { margin-top: 8px; font-size: 13px; }
.ask-card {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 24px;
  padding: 24px;
  align-items: center;
  border-left: 7px solid var(--cyan);
}
.ask-input {
  min-height: 52px;
  display: flex;
  align-items: center;
  border: 1px solid #4a3c8f;
  border-radius: 10px;
  background: #0d0a20;
  color: #cbc5ff;
  padding: 0 16px;
  font-weight: 800;
}
.question-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 116px;
  gap: 20px;
  padding: 18px;
  align-items: stretch;
}
.question-media {
  min-height: 150px;
  border-radius: 10px;
  overflow: hidden;
  background: #0d0a20;
}
.question-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}
.question-head small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.question-card h2 { font-size: 24px; margin-bottom: 8px; }
.answer-preview { font-size: 15px; }
.qa-stats {
  display: grid;
  align-content: center;
  gap: 12px;
  border-left: 1px solid #342a66;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.qa-stats b {
  display: inline-flex;
  justify-content: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  padding: 9px 10px;
  font-size: 12px;
}
.footer {
  border-top: 1px solid var(--line);
  background: #070816;
  padding: 34px 20px;
}
.footer-grid {
  max-width: 1264px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}
.footer h2 { font-size: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.footer-links a { color: #ddd8ff; font-weight: 800; font-size: 14px; }
.disclaimer {
  max-width: 1264px;
  margin: 24px auto 0;
  color: #afa5ff;
  font-size: 12px;
}
@media (max-width: 980px) {
  .nav { flex-wrap: wrap; position: relative; }
  .menu-btn { display: inline-flex; margin-left: 0; position: absolute; left: 250px; top: 20px; }
  .safety-btn { display: none; }
  .language-switch { margin-left: auto; }
  .nav-links {
    display: none;
    width: 100%;
    margin: 12px 0 0;
    padding: 12px;
    border-radius: 10px;
    background: var(--panel);
  }
  .nav-links.open { display: grid; }
  .hero, .download-panel, .page-index, .topic-grid, .split, .content-layout, .footer-grid, .news-layout, .qa-layout, .featured-news, .ask-card, .question-card { grid-template-columns: 1fr; }
  .hero > *, .page-index > *, .split > *, .content-layout > * { min-width: 0; }
  .hero { gap: 28px; }
  .page-grid { grid-template-columns: 1fr 1fr; }
  .side-panel, .topic-sidebar { position: static; }
  .news-card-grid { grid-template-columns: 1fr; }
  .question-media { min-height: 210px; }
  .qa-stats { border-left: 0; border-top: 1px solid #342a66; padding: 16px 0 0; display: flex; align-items: center; }
  .download-actions { justify-content: flex-start; }
}
@media (max-width: 560px) {
  body { max-width: 100vw; overflow-x: hidden; }
  .brand { min-width: 0; }
  .brand { flex: 1 1 auto; }
  .brand b { font-size: 16px; }
  .brand small { display: none; }
  .hero { margin-top: 28px; }
  .hero, main, .nav { width: 100%; max-width: 100vw; overflow-x: hidden; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero, main { justify-items: start; }
  .hero-card { min-height: 0; padding: 30px 22px; }
  .hero-card, .hero-visual, .page-hero, .page-index, .panel, .topic-card, .content-panel, .side-panel, .featured-news, .news-card, .question-card, .ask-card, .topic-sidebar {
    max-width: 330px;
  }
  .download-band { padding-left: 20px; padding-right: 20px; }
  .download-panel { max-width: 330px; padding: 20px; }
  .download-copy { grid-template-columns: 1fr; }
  .download-copy h2 { font-size: 24px; }
  .hero h1, .page-hero h1 { font-size: 38px; }
  .page-grid { grid-template-columns: 1fr; }
  .topic-card { min-height: 0; }
  .term-list p, .app-list p { grid-template-columns: 1fr; padding: 12px 16px; }
  .slot-machine { width: 100%; max-width: 330px; padding: 18px; overflow: hidden; }
  .slot-machine .lever { display: none; }
  .hero-art { max-width: 330px; margin-bottom: -34px; border-radius: 12px; }
  .hero-visual, .hero-card, .page-hero, .panel, .page-index, .news-feed, .qa-feed, .featured-news, .news-card, .question-card, .ask-card, .topic-sidebar { width: 100%; }
  .page-hero { padding: 30px 22px; }
  .featured-news > div, .ask-card, .question-card { padding: 18px; }
  .featured-news h2 { font-size: 26px; }
  .question-card h2 { font-size: 22px; }
  .question-media { min-height: 170px; }
  .nav { gap: 10px; padding-left: 20px; padding-right: 20px; justify-content: flex-start; }
  .menu-btn { flex: 0 0 auto; left: 252px; top: 22px; margin-left: 0; padding: 10px 14px; }
  .reel-window { padding: 18px; gap: 10px; }
  .symbol { min-width: 0; height: 96px; font-size: 42px; }
.meter { padding: 0 12px; }
}
.brand-logo.full-logo { width: auto; max-width: 230px; height: 48px; object-fit: contain; }
.topic-card img.card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}
.topic-card.spotlight { border-top-color: var(--red); }
.article-list.compact { display: grid; gap: 14px; margin-top: 18px; }
.article-list.compact .article-row {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 10px;
  background: var(--panel-2);
  padding: 12px;
}
.article-list.compact .article-row small { display: block; color: var(--muted); margin-top: 4px; }
.article-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}
.article-list {
  display: grid;
  gap: 18px;
}
.article-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 18px;
}
.article-row h2 { margin: 0 0 8px; font-size: 24px; }
.article-row p { font-size: 15px; }
.date {
  min-height: 86px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--panel-2);
  color: var(--gold);
  font-weight: 900;
  text-align: center;
}
.article-content {
  max-width: 860px;
  margin: 0 auto;
}
.article-content .hero-image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin: 28px 0;
}
.prose {
  color: #ddd8ff;
  font-size: 17px;
}
.prose h2, .prose h3 { color: #fff; margin-top: 28px; }
.prose p, .prose li { color: #ddd8ff; }
.prose a { color: var(--cyan); font-weight: 800; }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px; text-align: left; }
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pagination a {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--panel-2);
  color: #fff;
  font-weight: 900;
}
.pagination a.active { background: var(--gold); color: var(--ink); }
.ask-input input, .search-form input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  outline: 0;
}
.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin: 24px 0;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.footer-columns h3 { margin: 0 0 8px; font-size: 16px; }
.footer-columns a { display: block; color: #ddd8ff; font-weight: 800; margin: 7px 0; }
@media (max-width: 980px) {
  .footer-columns, .search-form { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .article-list.compact .article-row, .article-row { grid-template-columns: 1fr; }
}
