:root {
  color-scheme: dark;
  --obsidian: #050711;
  --ink: #090b16;
  --coal: #101727;
  --sand: #6ee7ff;
  --sun: #f5c86a;
  --papyrus: #e9f7ff;
  --teal: #31f3ff;
  --jade: #70ffc9;
  --crimson: #ff5d85;
  --blue: #7c8cff;
  --white: #f8fbff;
  --muted: #a9bdd8;
  --line: rgba(169, 221, 255, 0.18);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --header-h: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 12%, rgba(49, 243, 255, 0.16), transparent 32%),
    radial-gradient(circle at 18% 34%, rgba(255, 93, 133, 0.12), transparent 26%),
    linear-gradient(180deg, #040611 0%, #0a1020 42%, #050711 100%);
}

body > * {
  position: relative;
  z-index: 1;
}

.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 18% 20%, rgba(49, 243, 255, 0.08), transparent 24%),
    radial-gradient(circle at 78% 28%, rgba(124, 140, 255, 0.1), transparent 28%),
    radial-gradient(circle at 46% 78%, rgba(255, 93, 133, 0.07), transparent 24%);
  contain: strict;
}

body > .starfield {
  position: fixed;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .starfield {
    opacity: 0.78;
  }
}

body.dialog-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden],
.svg-sprite {
  display: none !important;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 12px 26px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 17, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.1;
  color: var(--sun);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

.brand-glyph {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--teal);
  border: 1px solid rgba(25, 211, 197, 0.45);
  background:
    radial-gradient(circle at 50% 48%, rgba(49, 243, 255, 0.2), transparent 58%),
    linear-gradient(145deg, rgba(49, 243, 255, 0.12), rgba(124, 140, 255, 0.16));
  border-radius: var(--radius);
  overflow: hidden;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(49, 243, 255, 0.22));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  color: #f8e6bd;
  border-radius: var(--radius);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.header-action:hover {
  color: #ffffff;
  background: rgba(244, 225, 182, 0.1);
}

.header-action {
  border: 1px solid rgba(216, 166, 74, 0.48);
  background: rgba(216, 166, 74, 0.12);
}

.hero {
  position: relative;
  min-height: calc(86svh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 17, 0.9), rgba(5, 7, 17, 0.56) 45%, rgba(5, 7, 17, 0.08)),
    linear-gradient(0deg, rgba(5, 7, 17, 0.88), transparent 40%);
}

.hero-inner {
  padding: 74px 0 62px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  color: var(--sun);
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.65);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  color: var(--papyrus);
}

h3 {
  font-size: 1.18rem;
  color: var(--white);
}

.hero-copy {
  max-width: 660px;
  margin: 18px 0 0;
  font-size: 1.17rem;
  color: #f6dfb4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 17px;
  color: #140d12;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: var(--radius);
  background: var(--sun);
  max-width: 100%;
  white-space: normal;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.button.primary {
  background: linear-gradient(180deg, #ffe08a, var(--sand));
  box-shadow: 0 10px 24px rgba(216, 166, 74, 0.28);
}

.button.secondary,
.button.outline {
  color: var(--papyrus);
  background: rgba(18, 13, 22, 0.35);
  border-color: rgba(244, 225, 182, 0.34);
}

.button.mini {
  min-height: 38px;
  padding: 8px 11px;
  font-size: 0.9rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 150px));
  gap: 12px;
  margin-top: 34px;
}

.hero-metrics div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(244, 225, 182, 0.24);
  border-radius: var(--radius);
  background: rgba(18, 13, 22, 0.42);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  display: block;
  font-size: 1.75rem;
  color: var(--teal);
}

.hero-metrics span {
  display: block;
  margin-top: 2px;
  color: #edd5aa;
  font-size: 0.88rem;
}

.notice-band {
  border-top: 1px solid rgba(25, 211, 197, 0.2);
  border-bottom: 1px solid rgba(25, 211, 197, 0.2);
  background: linear-gradient(90deg, rgba(49, 243, 255, 0.16), rgba(124, 140, 255, 0.14), rgba(255, 93, 133, 0.12));
}

.notice-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
}

.notice-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.notice-title .icon {
  color: var(--teal);
}

.notice-grid p {
  margin: 0;
  color: #f1dbb0;
}

.section,
.intro-band {
  padding: 78px 0;
}

.intro-band {
  background: linear-gradient(180deg, rgba(49, 243, 255, 0.06), rgba(5, 7, 17, 0));
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.intro-layout p:not(.eyebrow),
.section-copy {
  margin: 0;
  color: #d9c49e;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.catalog-section {
  background:
    linear-gradient(180deg, rgba(5, 7, 17, 0.2), rgba(49, 243, 255, 0.05)),
    repeating-linear-gradient(0deg, rgba(169, 221, 255, 0.035) 0, rgba(169, 221, 255, 0.035) 1px, transparent 1px, transparent 92px);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 170px 170px 170px;
  gap: 10px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 13, 22, 0.62);
}

.search-field {
  position: relative;
  display: block;
}

.search-field .icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
}

input,
select {
  width: 100%;
  min-height: 44px;
  color: var(--white);
  border: 1px solid rgba(244, 225, 182, 0.25);
  border-radius: var(--radius);
  background: rgba(10, 7, 13, 0.74);
  outline: none;
}

input {
  padding: 10px 12px 10px 42px;
}

select {
  padding: 10px 12px;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.mood-compass {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 10px;
}

.mood-chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #f1ddba;
  border: 1px solid rgba(244, 225, 182, 0.24);
  border-radius: var(--radius);
  background: rgba(18, 13, 22, 0.66);
}

.mood-chip.is-active {
  color: #130d12;
  border-color: transparent;
  background: var(--teal);
}

.catalog-status {
  min-height: 28px;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.game-card,
.week-card,
.method-card,
.voice-card,
.rating-table,
.portal-scene,
.route-result,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 15, 22, 0.82);
  box-shadow: var(--shadow);
}

.game-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.game-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #09070b;
  overflow: hidden;
}

.game-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 7, 12, 0.86), rgba(11, 7, 12, 0.02) 55%);
}

.game-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card[data-game="darkorbit"] .game-media > img {
  object-position: center top;
}

.game-card[data-game="kingsage"] .game-media > img {
  object-position: center;
}

.logo-plate {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(5, 4, 8, 0.58);
  backdrop-filter: blur(8px);
}

.logo-plate img {
  max-width: 82%;
  max-height: 48px;
  object-fit: contain;
}

.game-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.game-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.game-topline strong {
  min-width: 46px;
  display: inline-grid;
  place-items: center;
  padding: 3px 8px;
  color: var(--ink);
  border-radius: 999px;
  background: var(--sun);
}

.game-body p {
  margin: 0;
  color: #d8c29d;
  font-size: 0.95rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 4px 8px;
  color: #f4e1b6;
  font-size: 0.78rem;
  border: 1px solid rgba(244, 225, 182, 0.2);
  border-radius: 999px;
  background: rgba(244, 225, 182, 0.06);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.week-section {
  background: linear-gradient(180deg, rgba(5, 7, 17, 1), rgba(14, 21, 42, 0.9));
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.week-card {
  overflow: hidden;
}

.week-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.week-card div {
  padding: 16px;
}

.week-card p {
  margin: 10px 0 0;
  color: #d7c09b;
}

.week-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.portal-section {
  background: #040611;
}

.portal-layout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 32px;
  align-items: center;
}

.portal-scene {
  min-height: 360px;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(0deg, rgba(4, 6, 17, 0.3), rgba(4, 6, 17, 0.02)),
    url("../images/generated/galaxy-portal.png") center / cover no-repeat;
}

.portal-copy p:not(.eyebrow) {
  color: #dac5a0;
}

.route-result {
  margin-top: 18px;
  padding: 14px;
  color: #f2dbb0;
  background: rgba(25, 211, 197, 0.08);
}

.route-result strong {
  color: var(--teal);
}

.method-section {
  background: linear-gradient(180deg, rgba(14, 21, 42, 0.9), rgba(5, 7, 17, 1));
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.method-card {
  padding: 20px;
}

.method-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--ink);
  font-weight: 900;
  border-radius: var(--radius);
  background: var(--sun);
}

.method-card p,
.voice-card p,
.faq-list p {
  color: #d7c19c;
}

.ratings-section {
  background: rgba(244, 225, 182, 0.04);
}

.rating-table {
  overflow: hidden;
}

.rating-row {
  display: grid;
  grid-template-columns: 1fr 1fr 92px;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}

.rating-row:first-child {
  border-top: 0;
}

.rating-row.heading {
  color: var(--teal);
  font-weight: 800;
  background: rgba(25, 211, 197, 0.08);
}

.rating-row strong {
  justify-self: end;
  color: var(--sun);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.voice-card {
  margin: 0;
  padding: 22px;
}

.voice-card p {
  margin: 0;
  font-size: 1.03rem;
}

.voice-card cite {
  display: block;
  margin-top: 16px;
  color: var(--teal);
  font-style: normal;
  font-weight: 800;
}

.faq-section {
  background: linear-gradient(180deg, rgba(5, 7, 17, 1), rgba(13, 15, 31, 1));
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
  box-shadow: none;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: var(--papyrus);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

.game-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: calc(100svh - 42px);
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(244, 225, 182, 0.3);
  border-radius: var(--radius);
  background: #050711;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.game-dialog::backdrop {
  background: rgba(4, 3, 6, 0.74);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.45);
}

.dialog-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
}

.dialog-layout > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.dialog-copy {
  padding: 34px;
}

.dialog-copy p {
  color: #dec8a2;
}

.score-bars {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.score-line {
  display: grid;
  grid-template-columns: 110px 1fr 34px;
  gap: 10px;
  align-items: center;
  color: #e9d4ad;
  font-size: 0.9rem;
}

.score-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244, 225, 182, 0.14);
}

.score-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--sun));
}

.dialog-note {
  padding: 12px;
  border: 1px solid rgba(25, 211, 197, 0.24);
  border-radius: var(--radius);
  background: rgba(25, 211, 197, 0.07);
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: #040611;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: start;
}

.footer-grid p {
  margin: 14px 0 0;
  color: #cdbb99;
}

.footer-grid nav {
  display: grid;
  gap: 10px;
}

.footer-grid nav a {
  color: var(--papyrus);
}

.footer-small {
  text-align: right;
  font-size: 0.88rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px;
  color: var(--white);
  border: 1px solid rgba(244, 225, 182, 0.28);
  border-radius: var(--radius);
  background: rgba(16, 11, 18, 0.96);
  box-shadow: var(--shadow);
  overflow-wrap: break-word;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: #d8c19c;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-banner > div {
  min-width: 0;
}

.legal-main {
  padding: 72px 0;
  background:
    linear-gradient(180deg, rgba(49, 243, 255, 0.12), rgba(5, 7, 17, 0)),
    #050711;
}

.legal-hero {
  padding: 62px 0 30px;
}

.legal-hero h1 {
  font-size: 3.4rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 15, 22, 0.82);
}

.legal-toc a {
  color: var(--papyrus);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 15, 22, 0.82);
}

.legal-block h2 {
  font-size: 1.75rem;
}

.legal-block p,
.legal-block li {
  color: #dac5a0;
}

.legal-block a {
  color: var(--teal);
  text-decoration: underline;
}

.legal-block table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.legal-block th,
.legal-block td {
  padding: 12px;
  text-align: left;
  vertical-align: top;
  border: 1px solid rgba(244, 225, 182, 0.18);
}

.legal-block th {
  color: var(--teal);
  background: rgba(25, 211, 197, 0.07);
}

@media (max-width: 1120px) {
  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 10px 16px;
  }

  .main-nav {
    display: none;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .notice-grid,
  .intro-layout,
  .section-head,
  .portal-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }

  .game-grid,
  .week-grid,
  .voices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-scene {
    min-height: 280px;
  }

  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .dialog-layout > img {
    min-height: 250px;
    max-height: 320px;
  }

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

  .footer-small {
    text-align: left;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 32px);
    max-width: 560px;
  }

  .hero {
    min-height: calc(88svh - var(--header-h));
  }

  .hero-inner {
    padding: 54px 0 46px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2,
  .legal-block h2 {
    font-size: 1.62rem;
  }

  .hero-actions,
  .cookie-actions {
    flex-direction: column;
  }

  .header-action {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .filter-bar,
  .game-grid,
  .week-grid,
  .voices-grid,
  .method-grid,
  .rating-row,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .rating-row strong {
    justify-self: start;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 12px;
    width: auto;
  }

  .dialog-copy {
    padding: 24px;
  }

  .legal-hero h1 {
    font-size: 2.3rem;
  }

  .legal-block {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(300px, calc(100% - 32px));
  }

  .cookie-banner {
    left: 50%;
    right: auto;
    width: min(300px, calc(100% - 32px));
    transform: translateX(-50%);
  }
}
