@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: optional;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #0b0c10;
  --surface: #0f1418;
  --surface-low: #171c20;
  --surface-lowest: #0a0f13;
  --surface-container: #1b2025;
  --surface-high: #262a2f;
  --surface-highest: #31353a;
  --on-surface: #dfe3e9;
  --on-surface-variant: #c7c6cb;
  --secondary: #fff9ef;
  --secondary-container: #ffdb3c;
  --tertiary: #00dddd;
  --on-tertiary: #003737;
  --error: #ffb4ab;
  --yellow: #ffd700;

  --xs: 4px;
  --sm: 8px;
  --md: 16px;
  --lg: 24px;
  --xl: 32px;
  --margin: 40px;

  --shadow: 8px 8px 0 0 #000;
  --shadow-sm: 4px 4px 0 0 #000;
  --ease: cubic-bezier(0, 0, 0.2, 1);
  --cookie-h: 0px;
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--on-surface);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

main { flex: 1; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

p, ul, ol { margin: 0; }
ul { padding: 0; list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
}

button, input {
  font: inherit;
  color: inherit;
  border-radius: 0;
}

button, a, .burger, .opp-chat__toggle {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: var(--margin);
}

/* Type scale */
.t-display { font-size: 48px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.t-headline { font-size: 32px; font-weight: 700; line-height: 1.2; }
.t-title { font-size: 20px; font-weight: 600; line-height: 1.4; }
.t-body-lg { font-size: 18px; line-height: 1.6; }
.t-label { font-size: 12px; font-weight: 600; line-height: 1; letter-spacing: 0.05em; }

/* Retro primitives */
.retro-border { border: 4px solid var(--yellow); }
.retro-shadow { box-shadow: var(--shadow); }
.retro-shadow-sm { box-shadow: var(--shadow-sm); }

.btn-press { transition: transform 150ms var(--ease), box-shadow 150ms var(--ease); }
.btn-press:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 0 #000; }
.btn-press:active { transform: translate(4px, 4px); box-shadow: 0 0 0 0 #000; }

.btn-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--bg);
  padding: var(--md) var(--xl);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  border: 4px solid var(--yellow);
  cursor: pointer;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  background: var(--surface);
  border-bottom: 4px solid var(--on-surface-variant);
  overflow: visible;
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--lg);
  padding-block: var(--md);
}

.brand {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--secondary-container);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--lg);
}

.nav a {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 150ms var(--ease);
}

.nav a:hover { color: var(--tertiary); }

.nav a.is-active {
  color: var(--tertiary);
  border-bottom: 4px solid var(--tertiary);
  padding-bottom: 4px;
}

.burger {
  display: none;
  position: relative;
  z-index: 110;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--surface-high);
  border: 4px solid var(--on-surface-variant);
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 4px;
  background: var(--yellow);
  transition: transform 200ms var(--ease), opacity 150ms var(--ease), top 200ms var(--ease);
}

.burger span:nth-child(1) { top: 11px; }
.burger span:nth-child(2) { top: 18px; }
.burger span:nth-child(3) { top: 25px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

/* Hero */
.opp-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80vh;
  overflow: hidden;
  border-bottom: 4px solid var(--yellow);
  padding-block: var(--xl);
}

.opp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.opp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(1) contrast(1.25);
}

.opp-hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg), transparent 50%);
}

.pixel-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(var(--yellow) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
}

.opp-hero__inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--xl);
}

.opp-hero__badge {
  display: inline-block;
  margin-bottom: var(--md);
  padding: var(--xs) var(--md);
  background: var(--tertiary);
  color: var(--on-tertiary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-sm);
}

.opp-hero__title {
  font-size: 96px;
  font-weight: 900;
  line-height: 0.9;
  font-style: italic;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--lg);
}

.opp-hero__lead {
  max-width: 576px;
  border-left: 4px solid var(--tertiary);
  padding-left: var(--md);
}

.opp-hero__actions { padding-top: var(--lg); }

.opp-hero__art {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.opp-hero__frame { position: relative; }

.opp-hero__glow {
  position: absolute;
  inset: -16px;
  background: var(--tertiary);
  opacity: 0.2;
  transition: opacity 200ms var(--ease);
}

.opp-hero__frame:hover .opp-hero__glow { opacity: 0.4; }

.opp-hero__frame img {
  position: relative;
  z-index: 1;
  width: 500px;
  filter: grayscale(1);
  transition: filter 300ms var(--ease);
}

.opp-hero__frame:hover img { filter: grayscale(0); }

/* About */
.opp-about { padding-block: var(--xl); }

.opp-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.opp-about__shot {
  background: var(--yellow);
  padding: 4px;
}

.opp-about__shot img {
  width: 100%;
  border: 4px solid var(--bg);
}

.opp-about__text > * + * { margin-top: var(--md); }

.opp-about__rule {
  width: 96px;
  height: 8px;
  background: var(--tertiary);
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--yellow);
}

.section-title--center {
  text-align: center;
  margin-bottom: var(--xl);
}

/* Mechanics */
.opp-mechanics {
  padding-block: var(--xl);
  background: var(--surface-container);
}

.opp-mechanics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--lg);
}

.opp-card {
  background: var(--bg);
  border: 4px solid var(--on-surface-variant);
  padding: var(--lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 150ms var(--ease);
}

.opp-card:hover { border-color: var(--yellow); }

.opp-card--featured {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
}

.opp-card img {
  width: 64px;
  height: 64px;
  margin-bottom: var(--md);
  filter: grayscale(1);
  transition: filter 200ms var(--ease);
}

.opp-card:hover img,
.opp-card--featured img { filter: grayscale(0); }

.opp-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--tertiary);
  margin-bottom: var(--sm);
}

.opp-card--featured h3 { color: var(--yellow); }

.opp-mechanics__tip {
  display: flex;
  align-items: center;
  gap: var(--md);
  margin-top: var(--xl);
  padding: var(--md);
  background: var(--tertiary);
  color: var(--on-tertiary);
  border: 4px solid var(--on-tertiary);
  box-shadow: var(--shadow);
}

.opp-mechanics__tip strong {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.opp-mechanics__tip p {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

/* Graphics */
.opp-graphics {
  padding-block: var(--xl);
  overflow: hidden;
}

.opp-graphics__row {
  display: flex;
  gap: var(--xl);
  align-items: center;
}

.opp-graphics__col { flex: 1; }
.opp-graphics__col > * + * { margin-top: var(--md); }

.opp-graphics__quote {
  font-style: italic;
  color: var(--tertiary);
}

.opp-graphics__list { display: grid; gap: var(--sm); }

.opp-graphics__list li {
  display: flex;
  align-items: center;
  gap: var(--md);
  font-size: 18px;
}

.opp-graphics__list img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.opp-graphics__panel {
  position: relative;
  background: var(--surface-container);
  border: 4px solid var(--yellow);
  padding: var(--xl);
  box-shadow: var(--shadow);
}

.opp-graphics__panel .opp-graphics__flag {
  position: absolute;
  top: 0;
  right: 0;
  padding: var(--xs);
  background: var(--yellow);
  color: var(--bg);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.opp-graphics__bars {
  display: flex;
  flex-direction: column;
  gap: var(--sm);
}

.opp-graphics__bars span { height: 8px; }
.opp-graphics__bars span:nth-child(1) { width: 100%; background: var(--tertiary); }
.opp-graphics__bars span:nth-child(2) { width: 75%; background: var(--on-surface-variant); }
.opp-graphics__bars span:nth-child(3) { width: 50%; background: var(--yellow); }

.opp-graphics__panel p {
  margin-top: var(--md);
  color: var(--on-surface-variant);
}

/* Game modes */
.opp-modes {
  padding-block: var(--xl);
  background: var(--surface-low);
}

.opp-modes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--lg);
}

.opp-mode {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg);
  border: 4px solid var(--on-surface-variant);
  padding: var(--lg);
  box-shadow: var(--shadow-sm);
}

.opp-mode__num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--on-surface-variant);
  opacity: 0.2;
  margin-bottom: var(--md);
}

.opp-mode h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--md);
}

.opp-mode p {
  flex-grow: 1;
  color: var(--on-surface-variant);
}

.opp-mode--popular {
  position: relative;
  background: var(--surface-highest);
  border-color: var(--yellow);
  box-shadow: var(--shadow);
}

.opp-mode--popular .opp-mode__num { color: var(--yellow); }
.opp-mode--popular h3 { color: var(--yellow); }
.opp-mode--popular p { color: var(--on-surface); }

.opp-mode .opp-mode__flag {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--xs) var(--md);
  background: var(--yellow);
  color: var(--bg);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 4px solid var(--yellow);
  white-space: nowrap;
}

.opp-mode__cta {
  display: block;
  margin-top: var(--md);
  width: 100%;
  text-align: center;
  padding-block: var(--sm);
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms var(--ease), color 150ms var(--ease);
}

.opp-mode__cta:hover {
  background: var(--yellow);
  color: var(--bg);
}

/* Verdict */
.opp-verdict { padding-block: var(--xl); }

.opp-verdict__box {
  position: relative;
  overflow: hidden;
  border: 8px solid var(--yellow);
  padding: var(--xl);
  background: var(--surface);
}

.opp-verdict__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: var(--yellow);
  transform: translate(64px, -64px) rotate(-45deg);
}

.opp-verdict__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: var(--xl);
  align-items: center;
}

.opp-verdict__score {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.opp-verdict__badge {
  width: 192px;
  height: 192px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 8px solid var(--tertiary);
  box-shadow: var(--shadow);
}

.opp-verdict__badge b {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--tertiary);
}

.opp-verdict__badge span {
  font-size: 32px;
  font-weight: 700;
  color: var(--on-surface-variant);
  margin-top: -10px;
}

.opp-verdict__score p {
  margin-top: var(--md);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.opp-verdict__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--lg);
}

.opp-verdict__cols h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: var(--md);
}

.opp-verdict__pros h3 { color: var(--tertiary); }
.opp-verdict__cons h3 { color: var(--error); }
.opp-verdict__cols li { font-size: 18px; }
.opp-verdict__cons li { opacity: 0.7; }

/* CTA */
.opp-cta {
  padding-block: var(--xl);
  background: var(--yellow);
  color: var(--bg);
  text-align: center;
}

.opp-cta h2 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: var(--lg);
}

.opp-cta__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--md);
}

.opp-cta__badge {
  display: inline-block;
  transition: transform 150ms var(--ease);
}

.opp-cta__badge:hover { transform: scale(1.05); }
.opp-cta__badge:active { transform: scale(0.95); }

.opp-cta__badge img {
  width: 240px;
  box-shadow: var(--shadow);
}

.opp-cta__note {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

/* Dispatch (newsletter) */
.opp-dispatch {
  padding-block: var(--xl);
  border-top: 4px solid var(--on-surface-variant);
}

.opp-dispatch__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.opp-dispatch h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--md);
}

.opp-dispatch p { color: var(--on-surface-variant); }

.opp-dispatch__form {
  display: flex;
  gap: var(--xs);
  margin-top: var(--lg);
}

.opp-dispatch__form input {
  flex-grow: 1;
  min-width: 0;
  background: var(--surface);
  border: 4px solid var(--yellow);
  color: var(--yellow);
  font-weight: 700;
  padding: var(--md);
}

.opp-dispatch__form input::placeholder { color: rgba(255, 215, 0, 0.5); }
.opp-dispatch__form input:focus { outline: 4px solid var(--tertiary); outline-offset: 0; }

.opp-dispatch__form button {
  background: var(--yellow);
  color: var(--bg);
  border: 0;
  padding: var(--md) var(--xl);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--surface-lowest);
  border-top: 4px solid var(--on-surface-variant);
  padding-block: var(--xl);
}

.site-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--xl);
}

.site-footer__brand {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-container);
  margin-bottom: var(--md);
}

.site-footer__about p {
  max-width: 448px;
  color: var(--on-surface-variant);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sm);
}

.site-footer__links h2 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tertiary);
}

.site-footer__links a {
  color: var(--on-surface-variant);
  text-decoration: underline;
  transition: color 150ms var(--ease);
}

.site-footer__links a:hover { color: var(--secondary); }

.site-footer__meta { text-align: right; }
.site-footer__meta p { color: var(--on-surface-variant); }

.site-footer__squares {
  display: flex;
  justify-content: flex-end;
  gap: var(--md);
  margin-top: var(--md);
}

.site-footer__squares span {
  width: 32px;
  height: 32px;
  background: var(--on-surface-variant);
  opacity: 0.2;
}

/* Cookie banner */
.opp-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--surface-high);
  border-top: 4px solid var(--yellow);
  padding: var(--md);
}

.opp-cookie__row {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--md);
}

.opp-cookie__actions {
  display: flex;
  gap: var(--md);
  flex-shrink: 0;
}

.opp-cookie__actions button {
  padding: var(--sm) var(--lg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: 2px solid var(--on-surface);
  transition: background 150ms var(--ease);
}

.opp-cookie__actions button:hover { background: var(--surface-highest); }

.opp-cookie__actions button[data-cookie="accept"] {
  background: var(--yellow);
  color: var(--bg);
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
}

/* Support chat */
.opp-chat {
  position: fixed;
  right: 24px;
  bottom: calc(24px + var(--cookie-h));
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sm);
  transition: bottom 200ms var(--ease);
}

.opp-chat__toggle {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--tertiary);
  border: 4px solid var(--bg);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 150ms var(--ease), box-shadow 150ms var(--ease);
}

.opp-chat__toggle:hover {
  transform: scale(1.06);
  box-shadow: 6px 6px 0 0 #000;
}

.opp-chat__toggle svg {
  width: 30px;
  height: 30px;
  fill: var(--on-tertiary);
}

.opp-chat__panel {
  width: 360px;
  height: 460px;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 4px solid var(--yellow);
  box-shadow: var(--shadow);
}

.opp-chat__head {
  display: flex;
  align-items: center;
  gap: var(--sm);
  padding: var(--sm) var(--md);
  background: var(--yellow);
  color: var(--bg);
}

.opp-chat__avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--yellow);
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}

.opp-chat__head b {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.opp-chat__head span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.opp-chat__close {
  margin-left: auto;
  width: 28px;
  height: 28px;
  background: var(--bg);
  color: var(--yellow);
  border: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.opp-chat__log {
  flex: 1;
  overflow-y: auto;
  padding: var(--md);
  display: flex;
  flex-direction: column;
  gap: var(--sm);
  font-size: 14px;
}

.opp-chat__msg {
  max-width: 85%;
  padding: var(--sm) var(--md);
  border: 2px solid var(--on-surface-variant);
  background: var(--surface-container);
}

.opp-chat__msg--user {
  align-self: flex-end;
  background: var(--tertiary);
  color: var(--on-tertiary);
  border-color: var(--on-tertiary);
}

.opp-chat__form {
  display: flex;
  gap: var(--xs);
  padding: var(--sm);
  border-top: 4px solid var(--on-surface-variant);
}

.opp-chat__form input {
  flex: 1;
  min-width: 0;
  background: var(--bg);
  border: 2px solid var(--on-surface-variant);
  color: var(--on-surface);
  padding: var(--sm);
  font-size: 14px;
}

.opp-chat__form input:focus {
  outline: 0;
  border-color: var(--tertiary);
}

.opp-chat__form button {
  background: var(--yellow);
  color: var(--bg);
  border: 0;
  padding-inline: var(--md);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

/* Toast */
.opp-toast {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: var(--md);
  background: rgba(11, 12, 16, 0.7);
}

.opp-toast__box {
  max-width: 420px;
  background: var(--surface);
  border: 4px solid var(--tertiary);
  box-shadow: var(--shadow);
  padding: var(--lg);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--on-surface);
}

/* Document pages */
.doc-section { padding-block: var(--xl); }

.page-stack > * + * { margin-top: var(--xl); }

.page-head {
  border-left: 8px solid var(--yellow);
  padding-left: var(--md);
}

.page-head h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--yellow);
}

.page-head p {
  margin-top: var(--sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tertiary);
}

.doc-body > * + * { margin-top: var(--md); }

.doc-body h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--secondary-container);
  margin-top: var(--xl);
}

.doc-body h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--tertiary);
  margin-top: var(--lg);
}

.doc-body p { font-size: 18px; }

.doc-body ul {
  display: grid;
  gap: var(--sm);
  border-left: 4px solid var(--on-surface-variant);
  padding-left: var(--md);
}

.doc-body li {
  font-size: 18px;
  position: relative;
  padding-left: var(--lg);
}

.doc-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
}

.doc-body a { color: var(--tertiary); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 1220px) {
  .burger { display: block; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--md) var(--margin) var(--lg);
    background: var(--surface-low);
    border-bottom: 4px solid var(--yellow);
    max-height: calc(100dvh - var(--header-offset, 72px));
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 200ms var(--ease), opacity 200ms var(--ease), visibility 0s linear 200ms;
  }

  .nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 200ms var(--ease), opacity 200ms var(--ease), visibility 0s linear 0s;
  }

  .nav a {
    padding: var(--md) 0;
    border-bottom: 4px solid var(--surface-highest);
  }

  .nav a.is-active {
    border-bottom-color: var(--tertiary);
    padding-bottom: var(--md);
  }

  .opp-hero__title { font-size: 72px; }
  .opp-hero__frame img { width: 100%; max-width: 420px; }
  .opp-about__grid { gap: var(--xl); }
  .opp-cta h2 { font-size: 56px; }
  .opp-verdict__grid { grid-template-columns: 1fr; }
  .opp-verdict__score { align-items: flex-start; }
}

@media (max-width: 820px) {
  :root { --margin: 16px; }

  .brand { font-size: 24px; }

  .opp-hero { min-height: 0; }
  .opp-hero__inner { grid-template-columns: 1fr; }
  .opp-hero__title { font-size: 64px; }
  .opp-hero__art { justify-content: center; }
  .opp-hero__fade { background: linear-gradient(to bottom, var(--bg), transparent 70%); }

  .opp-about__grid { grid-template-columns: 1fr; }
  .opp-about__media { order: 2; }
  .opp-about__text { order: 1; }

  .opp-mechanics__grid,
  .opp-modes__grid { grid-template-columns: 1fr; }

  .opp-mode--popular { margin-top: var(--lg); }

  .opp-mechanics__tip { flex-direction: column; align-items: flex-start; }
  .opp-graphics__row { flex-direction: column; align-items: stretch; }
  .opp-graphics__col { width: 100%; }

  .opp-verdict__cols { grid-template-columns: 1fr; }
  .opp-cta h2 { font-size: 40px; }
  .opp-dispatch__form { flex-direction: column; }

  .site-footer__row { flex-direction: column; }
  .site-footer__meta { text-align: left; }
  .site-footer__squares { justify-content: flex-start; }

  .opp-cookie__row { flex-direction: column; align-items: flex-start; }

  .opp-chat { right: 16px; bottom: calc(16px + var(--cookie-h)); }
  .opp-chat__panel { width: calc(100vw - 32px); max-width: 360px; }
}

@media (max-width: 520px) {
  .opp-hero__title { font-size: 48px; }
  .section-title,
  .doc-body h2,
  .opp-dispatch h2,
  .opp-verdict__cols h3,
  .opp-mechanics__tip strong { font-size: 24px; }
  .page-head h1 { font-size: 32px; }
  .opp-cta h2 { font-size: 32px; }
  .opp-verdict__box { padding: var(--md); }
  .opp-verdict__badge { width: 160px; height: 160px; }
  .opp-verdict__badge b { font-size: 48px; }
  .site-footer__brand { font-size: 24px; }
}

@media (max-width: 380px) {
  .opp-hero__title { font-size: 40px; }
  .brand { font-size: 20px; }
  .opp-cookie__actions { flex-direction: column; width: 100%; }
  .opp-cookie__actions button { width: 100%; }
}
