@charset "UTF-8";

:root {
  --bg: #090b0a;
  --surface: #111412;
  --surface-2: #171b18;
  --surface-3: #202521;
  --text: #f4f5ef;
  --muted: #979d97;
  --line: #303630;
  --lime: #37C6E3;
  --ocean-light: #8EE8F5;
  --accent-ink: #FFFFFF;
  --blue: #68b7ff;
  --red: #ff625a;
  --gold: #ffca45;
  --width: 1180px;
  --header: 72px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-stretch: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1.58;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

::selection { color: var(--accent-ink); background: var(--lime); }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  width: min(calc(100% - 48px), var(--width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--accent-ink);
  background: var(--lime);
  transform: translateY(-150%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: none; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  height: var(--header);
  background: rgba(9,11,10,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
  flex: 0 0 32px;
  overflow: hidden;
  color: transparent;
  background: transparent url("/img/icon.png") center / cover no-repeat;
  border-radius: 8px;
  font-size: 0;
}

.page-indicator {
  color: var(--muted);
  font: 700 10px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.menu-toggle {
  justify-self: end;
  min-width: 94px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 14px;
  color: var(--accent-ink);
  background: var(--lime);
  border: 1px solid var(--lime);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.menu-toggle:hover { color: var(--bg); background: var(--text); border-color: var(--text); }
.menu-lines { position: relative; width: 17px; height: 12px; }
.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  right: 0;
  width: 17px;
  height: 2px;
  background: currentColor;
}
.menu-lines::before { top: 2px; }
.menu-lines::after { bottom: 2px; width: 11px; }

.menu-overlay {
  position: fixed;
  z-index: 200;
  inset: 0;
  color: var(--text);
  background: #0d100e;
  overflow-y: auto;
  animation: menu-in .28s var(--ease) both;
}
.menu-overlay[hidden] { display: none !important; }
.menu-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  background-image:
    linear-gradient(var(--text) 1px, transparent 1px),
    linear-gradient(90deg, var(--text) 1px, transparent 1px);
  background-size: 64px 64px;
}
.menu-top {
  position: relative;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 18px;
  background: #121613;
  border: 1px solid #404840;
  border-top: 0;
}
.menu-close {
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--text);
  background: #1a1f1b;
  border: 1px solid #596259;
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
}
.menu-close:hover { color: var(--accent-ink); background: var(--lime); }
.menu-content { position: relative; padding: 58px 0 72px; }
.menu-kicker,
.kicker,
.card-index,
.micro-label {
  margin: 0;
  color: var(--muted);
  font: 700 10px/1.3 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu-content h2 {
  margin: 18px 0 42px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -.035em;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.menu-grid a {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: var(--text);
  background: #171c18;
  border: 1px solid #424b43;
  box-shadow: inset 0 3px 0 rgba(142,232,245,.16);
  transition: transform .2s var(--ease), color .2s ease, background .2s ease, border-color .2s ease;
}
.menu-grid a:hover,
.menu-grid a[aria-current="page"] { color: var(--accent-ink); background: var(--lime); border-color: var(--lime); transform: translateY(-3px); }
.menu-grid a span { font-size: 22px; font-weight: 720; letter-spacing: -.025em; }
.menu-grid a small { color: #b3bcb4; font-size: 11px; }
.menu-grid a:hover small,
.menu-grid a[aria-current="page"] small { color: rgba(255,255,255,.78); }

.page-main { min-height: calc(100vh - 100px); padding-top: var(--header); }

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .07;
  background-image:
    linear-gradient(var(--text) 1px, transparent 1px),
    linear-gradient(90deg, var(--text) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 95%);
}
.hero-layout {
  position: relative;
  width: min(calc(100% - 48px), var(--width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  align-items: center;
  gap: 8vw;
  padding: 86px 0;
}
.hero h1,
.page-hero h1 {
  margin: 22px 0 26px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-stretch: normal;
  font-style: normal;
  font-weight: 780;
  line-height: .99;
  letter-spacing: -.035em;
}
.hero h1 { max-width: 690px; font-size: clamp(56px, 7vw, 96px); }
.hero h1 em { display: block; color: var(--lime); font-style: normal; }
.hero-lead { max-width: 590px; margin: 0; color: var(--muted); font-size: clamp(17px, 1.55vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 760;
  transition: transform .2s var(--ease), color .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--accent-ink); background: var(--lime); border-color: var(--lime); }
.button-secondary:hover { color: var(--bg); background: var(--text); border-color: var(--text); }

.hero-poster {
  position: relative;
  min-height: 440px;
  padding: 20px;
  color: var(--bg);
  background: var(--blue);
  border: 1px solid var(--text);
  box-shadow: 14px 14px 0 var(--lime);
  transform: rotate(1.5deg);
  overflow: hidden;
}
.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(var(--bg) .8px, transparent .8px);
  background-size: 6px 6px;
}
.poster-meta,
.poster-foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  font: 750 10px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .1em;
}
.poster-title {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 54px;
  font-size: clamp(92px, 11vw, 160px);
  font-weight: 840;
  line-height: .72;
  letter-spacing: -.08em;
}
.poster-number {
  position: absolute;
  z-index: 2;
  top: 42px;
  right: 4px;
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(235px, 24vw, 360px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 3px var(--bg);
  transform: rotate(-7deg);
}
.poster-foot { position: absolute; inset: auto 20px 18px; padding-top: 10px; border-top: 2px solid var(--bg); }
.poster-ip { max-width: 310px; padding: 0; color: inherit; background: transparent; border: 0; cursor: pointer; font: inherit; letter-spacing: .04em; overflow-wrap: anywhere; text-align: right; }
.poster-ip:hover { text-decoration: underline; text-underline-offset: 3px; }

.facts {
  position: relative;
  width: min(calc(100% - 48px), var(--width));
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.5fr .6fr .8fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.fact { min-height: 94px; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 16px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact span { color: var(--muted); font: 700 9px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; text-transform: uppercase; }
.fact strong { font-size: 14px; font-weight: 700; }
.fact .ip-copy { width: fit-content; max-width: 100%; padding: 0; color: var(--text); background: transparent; border: 0; cursor: pointer; font-size: 14px; font-weight: 700; overflow-wrap: anywhere; text-align: left; }
.fact .ip-copy:hover { text-decoration: underline; text-underline-offset: 3px; }

.section { padding: 64px 0 72px; border-top: 1px solid var(--line); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  align-items: end;
  column-gap: 7vw;
  row-gap: 16px;
  margin-bottom: 32px;
}
.section-head .kicker { grid-column: 1 / -1; }
.section-head h2 {
  margin: 0;
  font-size: clamp(42px, 5.7vw, 74px);
  font-weight: 760;
  line-height: .98;
  letter-spacing: -.05em;
}
.section-head > p:last-child { margin: 0; color: var(--muted); }

.home-navigation { padding-top: 36px; }
.section-head-compact {
  grid-template-columns: 1fr;
  row-gap: 8px;
  margin-bottom: 22px;
}
.section-head-compact .kicker { grid-column: 1; }
.section-head-compact > p:last-child { grid-column: 1; max-width: 620px; }

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.hub-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: transform .22s var(--ease), color .2s ease, background .2s ease;
}
.hub-card:hover { z-index: 2; color: var(--accent-ink); background: var(--lime); transform: translateY(-5px); }
.hub-card-blue:hover { background: var(--blue); }
.hub-card-red:hover { background: var(--red); }
.hub-card h3 { margin: auto 0 8px; font-size: 27px; font-weight: 730; line-height: 1.08; letter-spacing: -.035em; }
.hub-card p { margin: 0; color: var(--muted); font-size: 13px; }
.hub-card:hover p,
.hub-card:hover .card-index { color: rgba(255,255,255,.76); }
.hub-arrow { position: absolute; top: 16px; right: 18px; font-size: 22px; }

.page-hero { position: relative; padding: 100px 0 70px; overflow: hidden; }
.page-hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 380px); align-items: end; gap: 8vw; }
.page-hero h1 { max-width: 820px; font-size: clamp(54px, 7.6vw, 104px); }
.page-hero p:last-child { margin: 0 0 12px; color: var(--muted); font-size: 18px; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: var(--muted); font-size: 12px; }
.breadcrumbs a:hover { color: var(--ocean-light); }

.content-section { padding: 70px 0 100px; border-top: 1px solid var(--line); }
.compact-content-section { padding-top: 42px; }
.compact-breadcrumbs { margin-bottom: 28px; }
.content-grid { display: grid; grid-template-columns: .66fr 1.34fr; gap: 8vw; }
.content-aside h2 { margin: 15px 0 18px; font-size: clamp(34px, 4vw, 54px); font-weight: 740; line-height: 1.02; letter-spacing: -.045em; }
.content-aside p { color: var(--muted); }

.rules-section { padding-top: 42px; }
.rules-breadcrumbs { margin-bottom: 18px; }
.rules-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(300px, .52fr);
  gap: 1px;
  margin-bottom: 22px;
  background: var(--line);
  border: 1px solid var(--line);
}
.rules-overview-main {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 28px;
  background: var(--surface);
}
.rules-overview-index {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--accent-ink);
  background: var(--lime);
  font: 800 16px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}
.rules-overview h2 { margin: 6px 0 12px; font-size: clamp(27px, 3vw, 38px); line-height: 1.05; letter-spacing: -.04em; }
.rules-overview-main > div > p:last-child { max-width: 760px; margin: 0; color: var(--muted); font-size: 14px; }
.rules-overview-side { min-width: 0; display: grid; grid-template-rows: auto 1fr; gap: 1px; background: var(--line); }
.rules-edition {
  position: relative;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(55,198,227,.17), rgba(55,198,227,.035) 64%),
    var(--surface);
}
.rules-edition::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -32px;
  width: 104px;
  height: 104px;
  border: 20px solid rgba(55,198,227,.09);
  transform: rotate(45deg);
}
.rules-edition > span {
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
  color: var(--ocean-light);
  font: 700 9px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.rules-edition strong { position: relative; z-index: 1; font-size: clamp(22px, 2.3vw, 29px); line-height: 1.08; letter-spacing: -.03em; }
.rules-edition p { position: relative; z-index: 1; margin: 7px 0 0; color: var(--muted); font-size: 11px; }
.rules-legend { display: grid; align-content: center; gap: 14px; padding: 20px 28px; background: var(--surface); }
.rules-legend > div { display: grid; grid-template-columns: 10px minmax(0, 1fr); align-items: start; gap: 11px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.rules-legend strong { display: block; color: var(--text); }
.rules-legend-dot { width: 8px; height: 8px; margin-top: 4px; background: var(--red); }
.rules-legend-dot.is-note { background: var(--gold); }

.rules-toolbar {
  margin-bottom: 18px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.search-label { display: block; }
.search-label span { display: block; margin-bottom: 8px; color: var(--muted); font: 700 9px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; text-transform: uppercase; }
.search-label input {
  width: 100%;
  height: 60px;
  padding: 0 18px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.search-label input:focus { border-color: var(--lime); outline: 0; box-shadow: 0 0 0 3px rgba(55,198,227,.12); }
.search-label input::placeholder { color: #656b65; }
.filter-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.filter-row button {
  min-height: 38px;
  padding: 0 13px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.filter-row button:hover { color: var(--text); border-color: #566057; }
.filter-row button.is-active { color: var(--accent-ink); background: var(--lime); border-color: var(--lime); }
.rule-status { margin: 12px 0 0; color: var(--muted); font-size: 11px; }

.rule-groups { display: grid; gap: 10px; }
.rule-group { overflow: hidden; background: var(--surface); border: 1px solid var(--line); transition: border-color .22s ease, background .22s ease; }
.rule-group[open] { border-color: rgba(142,232,245,.35); background: #121614; }
.rule-group[hidden] { display: none; }
.rule-group summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto 38px;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  list-style: none;
  cursor: pointer;
  user-select: none;
  transition: color .2s ease, background .2s ease;
}
.rule-group summary::-webkit-details-marker { display: none; }
.rule-group summary::after {
  content: "";
  width: 36px;
  height: 36px;
  justify-self: center;
  border: 1px solid rgba(142,232,245,.3);
  background:
    linear-gradient(var(--ocean-light), var(--ocean-light)) center / 12px 1px no-repeat,
    linear-gradient(var(--ocean-light), var(--ocean-light)) center / 1px 12px no-repeat;
  transition: background-color .2s ease, border-color .2s ease;
}
.rule-group[open] summary::after {
  border-color: rgba(142,232,245,.5);
  background:
    linear-gradient(var(--ocean-light), var(--ocean-light)) center / 12px 1px no-repeat,
    rgba(55,198,227,.1);
}
.rule-group[data-accordion-state="closing"] summary::after {
  background:
    linear-gradient(var(--ocean-light), var(--ocean-light)) center / 12px 1px no-repeat,
    linear-gradient(var(--ocean-light), var(--ocean-light)) center / 1px 12px no-repeat;
}
.rule-group summary:hover { color: var(--ocean-light); background: rgba(55,198,227,.06); }
.rule-group[data-accordion-state="opening"] > :not(summary) { animation: accordion-content-in .34s var(--ease) both; }
.rule-group[data-accordion-state="closing"] > :not(summary) { opacity: .35; transform: translateY(-6px); transition: opacity .24s ease, transform .24s var(--ease); }
.rule-group summary > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  justify-self: center;
  color: var(--ocean-light);
  background: rgba(55,198,227,.08);
  border: 1px solid rgba(142,232,245,.18);
  font: 700 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}
.rule-group summary strong { font-size: clamp(17px, 2vw, 23px); font-weight: 710; line-height: 1.16; letter-spacing: -.02em; }
.rule-group summary small { color: var(--muted); font-size: 10px; white-space: nowrap; }
.rule-group-intro {
  margin: 0 22px 8px 86px;
  padding: 14px 16px;
  color: #b8c0b9;
  background: rgba(55,198,227,.06);
  border-left: 2px solid var(--lime);
  font-size: 13px;
}
.rule-list { margin: 0; padding: 0 22px 22px; list-style: none; }
.rule-list > li {
  display: grid;
  grid-template-columns: 50px minmax(0,1fr);
  gap: 14px;
  padding: 19px 0;
  border-top: 1px solid #252b26;
}
.rule-list > li[hidden] { display: none; }
.rule-list > li > span {
  padding-top: 2px;
  color: var(--ocean-light);
  font: 700 10px/1.6 ui-monospace, SFMono-Regular, Consolas, monospace;
}
.rule-content { min-width: 0; }
.rule-content > p { max-width: 920px; margin: 0; color: #d0d4cf; font-size: 14px; line-height: 1.62; }
.rule-callout {
  position: relative;
  max-width: 920px;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  padding: 15px 16px;
  overflow: hidden;
  background: rgba(255,98,90,.065);
  border: 1px solid rgba(255,98,90,.28);
  border-left: 3px solid var(--red);
}
.rule-callout-wide { grid-template-columns: 184px minmax(0, 1fr); }
.rule-callout strong {
  color: #ff9b95;
  font: 750 9px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rule-callout strong span { display: block; margin-top: 3px; }
.rule-callout p { margin: 0; color: #dcccca; font-size: 13px; line-height: 1.52; }
.rule-callout.rule-note { background: rgba(255,202,69,.065); border-color: rgba(255,202,69,.28); border-left-color: var(--gold); }
.rule-callout.rule-note strong { color: #ffdc82; }
.rule-callout.rule-note p { color: #d8cfb7; }
.rule-sublist {
  max-width: 920px;
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 16px 18px;
  color: #c7ccc7;
  background: rgba(255,255,255,.025);
  border: 1px solid #293029;
  list-style: none;
}
.rule-sublist li { position: relative; padding-left: 18px; font-size: 13px; line-height: 1.5; }
.rule-sublist li::before { content: ""; position: absolute; top: .66em; left: 0; width: 6px; height: 6px; background: var(--ocean-light); }
.rule-sublist.is-forbidden li::before,
.rule-sublist.is-penalty-list li::before { background: var(--red); }
.rule-sublist.is-allowed li::before { background: var(--lime); }

.rules-reminder {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  margin-top: 22px;
  padding: 26px;
  background: linear-gradient(120deg, rgba(55,198,227,.12), rgba(55,198,227,.025));
  border: 1px solid rgba(142,232,245,.3);
}
.rules-reminder > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--accent-ink);
  background: var(--lime);
  font: 800 18px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}
.rules-reminder .kicker { margin: 2px 0 8px; }
.rules-reminder div > p:last-child { max-width: 900px; margin: 0; color: #cbd0cb; font-size: 14px; }

.faq-layout { width: 100%; max-width: 900px; display: block; margin-inline: auto; }
.faq-column { width: 100%; }
.faq-head { margin-bottom: 28px; text-align: center; }
.faq-head h2 { margin: 14px 0 18px; font-size: clamp(34px, 4.6vw, 58px); font-weight: 740; line-height: 1.02; letter-spacing: -.045em; }
.faq-head p { margin: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { min-height: 82px; display: grid; grid-template-columns: 48px minmax(0, 1fr) 28px; align-items: center; gap: 14px; padding: 0 14px; list-style: none; cursor: pointer; user-select: none; transition: color .2s ease, background .2s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--ocean-light); background: rgba(55,198,227, .08); }
.faq-item summary::after { content: "+"; font-size: 26px; font-weight: 300; transition: transform .2s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[data-accordion-state="closing"] summary::after { transform: rotate(0); }
.faq-item summary span { color: var(--ocean-light); font: 700 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace; }
.faq-item summary strong { font-size: clamp(17px, 2vw, 21px); font-weight: 710; letter-spacing: -.02em; }
.faq-answer { padding: 0 58px 28px 62px; color: var(--muted); }
.faq-answer p { max-width: 680px; margin: 0; }
.faq-item[data-accordion-state="opening"] .faq-answer { animation: accordion-content-in .34s var(--ease) both; }
.faq-item[data-accordion-state="closing"] .faq-answer { opacity: .35; transform: translateY(-6px); transition: opacity .24s ease, transform .24s var(--ease); }
.inline-address { display: inline-block; margin-top: 14px; padding: 12px 14px; color: var(--ocean-light); background: var(--surface-2); border: 1px solid var(--line); cursor: pointer; font: 650 13px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace; overflow-wrap: anywhere; text-align: left; }
.inline-address:hover { text-decoration: underline; text-underline-offset: 3px; }

.badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.badge-item { overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
.badge-image { position: relative; aspect-ratio: 3 / 1; overflow: hidden; background: #050605; border-bottom: 1px solid var(--line); }
.badge-image img { width: 100%; height: 100%; object-fit: contain; }
.badge-body { padding: 22px; }
.badge-body h2 { margin: 12px 0 10px; font-size: 29px; font-weight: 730; line-height: 1.1; letter-spacing: -.035em; }
.badge-body p { margin: 0; color: var(--muted); }
.badge-gold { border-top: 4px solid var(--gold); }
.badge-red { border-top: 4px solid var(--red); }

.voice-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; }
.voice-copy h2,
.mod-card h2,
.rating-copy h2 { margin: 16px 0; font-size: clamp(36px, 4.8vw, 62px); font-weight: 740; line-height: 1.02; letter-spacing: -.045em; }
.voice-copy p,
.mod-card p,
.rating-copy p { color: var(--muted); }
.keys { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.key { min-height: 130px; display: flex; flex-direction: column; justify-content: space-between; padding: 16px; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.key kbd { width: 46px; height: 46px; display: grid; place-items: center; color: var(--bg); background: var(--text); font-size: 17px; font-weight: 800; box-shadow: 4px 4px 0 var(--lime); }
.key span { font-size: 13px; font-weight: 680; }
.status-list { margin: 20px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.status-row { display: grid; grid-template-columns: 16px 1fr auto; align-items: center; gap: 10px; min-height: 54px; border-bottom: 1px solid var(--line); }
.status-row i { width: 10px; height: 10px; border: 2px solid var(--text); border-radius: 50%; }
.status-row small { color: var(--muted); }
.status-row:nth-child(2) i { background: var(--gold); border-color: var(--gold); }
.status-row:nth-child(3) i { background: var(--red); border-color: var(--red); }

.mod-card,
.rating-card { padding: clamp(24px, 5vw, 54px); background: var(--surface); border: 1px solid var(--line); }
.mod-card { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; }
.check-list { margin: 24px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 11px 0 11px 28px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--ocean-light); font-weight: 800; }

.rating-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 7vw; }
.rating-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.rating-steps li { display: grid; grid-template-columns: 52px 1fr; min-height: 76px; align-items: center; border-bottom: 1px solid var(--line); }
.rating-steps span { color: var(--ocean-light); font: 700 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace; }
.rating-steps p { margin: 0; color: var(--text); font-weight: 650; }
.command-box { display: grid; grid-template-columns: 1fr auto; margin-top: 25px; border: 1px solid var(--line); }
.command-box > div { display: flex; flex-direction: column; gap: 6px; padding: 14px 16px; }
.command-box span { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.command-box code { color: var(--ocean-light); font-size: 14px; }
.command-box button { padding: 0 18px; color: var(--accent-ink); background: var(--lime); border: 0; cursor: pointer; font-size: 11px; font-weight: 750; }
.command-box button:hover { background: var(--blue); }

.archive-page { padding-top: var(--header); }
.archive-shell { width: min(calc(100% - 64px), 1040px); margin-inline: auto; }
.archive-hero { padding: clamp(76px, 9vw, 118px) 0 72px; }
.archive-hero .breadcrumbs { margin-bottom: 30px; }
.archive-hero h1 { max-width: 920px; margin: 22px 0 24px; font-size: clamp(58px, 8vw, 104px); font-weight: 780; line-height: .94; letter-spacing: -.05em; }
.archive-intro { max-width: 690px; margin: 0; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.archive-feed { padding: 0 0 118px; }
.compact-archive-feed { padding-top: 42px; }
.archive-section-head { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr); gap: 56px; align-items: end; padding: 34px 0 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.archive-section-head::before { content: ""; position: absolute; top: -1px; left: 0; width: 112px; height: 3px; background: var(--lime); }
.archive-section-head h2 { margin: 12px 0 0; font-size: clamp(32px, 4.8vw, 52px); font-weight: 740; line-height: 1.02; letter-spacing: -.04em; }
.archive-section-head > p { max-width: 430px; margin: 0; color: var(--muted); }
.article-list { padding-top: 30px; }
.article-card { display: grid; grid-template-columns: 180px 1fr; gap: 42px; padding: 32px; background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--lime); }
.article-card + .article-card { margin-top: 18px; }
.article-card-meta { color: var(--muted); font: 700 10px/1.5 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; text-transform: uppercase; }
.article-card-meta span, .article-card-meta time { display: block; }
.article-card h3 { margin: 0 0 12px; font-size: clamp(27px, 3.5vw, 40px); line-height: 1.06; letter-spacing: -.035em; }
.article-card p { max-width: 650px; margin: 0; color: var(--muted); }
.article-card dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--line); }
.article-card dt { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.article-card dd { margin: 3px 0 0; font-weight: 650; }
.archive-empty { min-height: 248px; display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 42px; align-items: center; padding: clamp(30px, 5vw, 54px); background: linear-gradient(120deg, var(--surface), rgba(55,198,227, .09)); border: 1px solid var(--line); border-left: 4px solid var(--lime); }
.archive-empty .kicker { align-self: start; margin-top: 7px; }
.archive-empty h3 { margin: 0 0 10px; font-size: clamp(32px, 4.6vw, 52px); font-weight: 740; line-height: 1.05; letter-spacing: -.04em; }
.archive-empty div p { max-width: 590px; margin: 0; color: var(--muted); }

/* 404 */
body[data-page="404"] {
  background:
    radial-gradient(circle at 74% 43%, rgba(55,198,227,.16), transparent 26rem),
    radial-gradient(circle at 18% 56%, rgba(142,232,245,.05), transparent 32rem),
    var(--bg);
}
body[data-page="404"]::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: var(--header) 0 100px;
  pointer-events: none;
  opacity: .038;
  background-image:
    linear-gradient(var(--text) 1px, transparent 1px),
    linear-gradient(90deg, var(--text) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}
.error-page {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 100px);
  min-height: calc(100svh - 100px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.error-layout {
  position: relative;
  width: min(calc(100% - 48px), var(--width));
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  gap: clamp(36px, 6vw, 94px);
  padding: clamp(72px, 9vh, 116px) 0 clamp(64px, 8vh, 100px);
}
.error-copy { position: relative; z-index: 2; width: min(100%, 850px); text-align: center; }
.error-watermark {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  color: rgba(244,245,239,.035);
  font-size: clamp(210px, 27vw, 420px);
  font-weight: 850;
  line-height: .75;
  letter-spacing: -.09em;
  pointer-events: none;
  transform: translate(-50%, -54%);
  user-select: none;
}
.error-status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--muted);
  font: 700 10px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.error-status span { color: var(--ocean-light); font-size: 12px; }
.error-status i {
  width: 5px;
  height: 5px;
  background: var(--ocean-light);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(142,232,245,.09), 0 0 18px rgba(142,232,245,.7);
  animation: signal-pulse 2.2s ease-in-out infinite;
}
.error-copy h1 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(58px, 5.7vw, 88px);
  font-weight: 770;
  line-height: .94;
  letter-spacing: -.055em;
}
.error-copy h1 em { color: var(--ocean-light); font-style: normal; }
.error-lead {
  max-width: 600px;
  margin: 30px auto 0;
  color: #aeb5b0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
}
.error-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  justify-content: center;
}
.error-actions .button { min-height: 52px; }
.error-actions .button span { margin-left: 10px; transition: transform .22s var(--ease); }
.error-actions .button:hover span { transform: translateX(4px); }
.error-rules-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease;
}
.error-rules-link:hover { color: var(--text); border-color: var(--ocean-light); }
.error-rules-link span { color: var(--ocean-light); }

body[data-page="404"] .site-footer { position: relative; z-index: 1; background: rgba(9,11,10,.72); backdrop-filter: blur(10px); }

@keyframes signal-pulse { 0%, 100% { opacity: .45; transform: scale(.85); } 50% { opacity: 1; transform: scale(1); } }

.next-nav { padding: 54px 0; border-top: 1px solid var(--line); }
.next-link { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.next-link span { color: var(--muted); font: 700 9px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; text-transform: uppercase; }
.next-link strong { display: block; margin-top: 7px; font-size: clamp(24px, 3vw, 36px); font-weight: 710; letter-spacing: -.035em; }
.next-link b { font-size: 30px; transition: transform .2s var(--ease); }
.next-link:hover { color: var(--ocean-light); }
.next-link:hover b { transform: translateX(7px); }

.site-footer { border-top: 1px solid var(--line); }
.footer-inner { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-inner p,
.footer-inner > a:last-child { color: var(--muted); font-size: 11px; }
.footer-inner > a:last-child:hover { color: var(--ocean-light); }
.footer-meta { display: grid; justify-items: center; gap: 9px; min-width: 128px; text-align: center; }
.footer-meta > p { margin: 0; line-height: 1.2; }
.footer-social { display: flex; align-items: center; gap: 7px; }
.footer-social a { width: 30px; height: 30px; display: grid; place-items: center; color: var(--muted); background: rgba(17,20,18,.62); border: 1px solid var(--line); transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.footer-social a:hover { color: var(--text); background: var(--ocean); border-color: var(--ocean-light); transform: translateY(-2px); }
.footer-social svg { width: 14px; height: 14px; display: block; fill: currentColor; }

.toast { position: fixed; z-index: 300; left: 50%; bottom: 22px; max-width: calc(100% - 32px); padding: 11px 15px; color: var(--accent-ink); background: var(--lime); border: 1px solid var(--accent-ink); font-size: 12px; font-weight: 750; opacity: 0; pointer-events: none; transform: translate(-50%,12px); transition: opacity .2s ease, transform .2s var(--ease); }
.toast.is-visible { opacity: 1; transform: translate(-50%,0); }

[data-reveal].reveal-pending { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes menu-in { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
@keyframes accordion-content-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr 340px; gap: 48px; }
  .hero h1 { font-size: clamp(52px, 9vw, 76px); }
  .hero-poster { min-height: 390px; }
  .menu-grid, .hub-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-inner, .section-head { grid-template-columns: 1fr; column-gap: 24px; row-gap: 14px; }
  .section-head h2, .section-head > p:last-child { grid-column: 1; }
  .content-grid, .voice-layout, .rating-layout { grid-template-columns: 1fr; gap: 46px; }
  .rules-overview { grid-template-columns: 1fr; }
  .rules-overview-side { grid-template-rows: none; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); }
  .faq-layout { max-width: 900px; }
  .content-aside { max-width: 650px; }
  .mod-card { grid-template-columns: 1fr; gap: 20px; }
  .archive-section-head { grid-template-columns: 1fr; gap: 18px; }
  .error-layout { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .error-copy h1 { font-size: clamp(54px, 7.8vw, 70px); }
}

@media (max-width: 700px) {
  :root { --header: 64px; }
  .wrap { width: min(calc(100% - 28px), var(--width)); }
  .header-inner { grid-template-columns: 1fr auto; }
  .page-indicator { display: none; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding: 28px 0 64px; }
  .hero h1 { font-size: clamp(49px, 14vw, 74px); }
  .hero-poster { display: none; }
  .facts { grid-template-columns: 1fr 1fr; }
  .fact:first-child { grid-column: 1 / -1; }
  .section { padding: 54px 0 64px; }
  .home-navigation { padding-top: 30px; }
  .section-head-compact { row-gap: 8px; margin-bottom: 18px; }
  .page-hero { padding: 72px 0 52px; }
  .page-hero h1 { font-size: clamp(48px, 13vw, 74px); }
  .content-section { padding: 52px 0 76px; }
  .compact-content-section,
  .compact-archive-feed { padding-top: 30px; }
  .compact-breadcrumbs { margin-bottom: 22px; }
  .rules-section { padding-top: 30px; }
  .rules-overview-main { padding: 22px; }
  .rules-overview-side { grid-template-columns: 1fr; }
  .rules-edition { min-height: 110px; padding: 22px; }
  .rules-legend { grid-template-columns: 1fr 1fr; padding: 22px; }
  .rules-toolbar { padding: 16px; }
  .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
  .filter-row button { flex: 0 0 auto; }
  .rule-group summary { padding-inline: 16px; }
  .rule-group-intro { margin-inline: 80px 16px; }
  .rule-list { padding: 0 16px 16px; }
  .menu-content { padding-top: 40px; }
  .badge-grid { grid-template-columns: 1fr; }
  .badge-image { aspect-ratio: 3 / 1; }
  .archive-shell { width: min(calc(100% - 28px), 1040px); }
  .archive-hero { padding: 58px 0 50px; }
  .archive-hero .breadcrumbs { margin-bottom: 22px; }
  .archive-hero h1 { margin: 18px 0 20px; font-size: clamp(48px, 14vw, 72px); }
  .archive-feed { padding-bottom: 76px; }
  .archive-section-head { padding: 28px 0 24px; }
  .article-list { padding-top: 20px; }
  .article-card, .archive-empty { grid-template-columns: 1fr; gap: 20px; }
  .archive-empty { min-height: 220px; padding: 28px 24px; }
  .archive-empty .kicker { margin: 0; }
  .error-page { min-height: auto; }
  .error-layout { width: min(calc(100% - 40px), var(--width)); min-height: 0; grid-template-columns: 1fr; gap: 18px; padding: 74px 0 62px; text-align: center; }
  .error-status { justify-content: center; }
  .error-copy h1, .error-lead { margin-inline: auto; }
  .error-actions { justify-content: center; }
  .faq-item summary { grid-template-columns: 38px minmax(0, 1fr) 24px; padding-inline: 4px; }
  .faq-answer { padding: 0 38px 24px 42px; }
}

@media (max-width: 500px) {
  .menu-toggle { min-width: 45px; width: 45px; padding: 0; }
  .menu-toggle > span:first-child { display: none; }
  .menu-grid, .hub-grid, .keys { grid-template-columns: 1fr; }
  .menu-grid a { min-height: 112px; }
  .hero-actions, .button { width: 100%; }
  .facts { grid-template-columns: 1fr; }
  .fact:first-child { grid-column: 1; }
  .section-head h2 { font-size: clamp(38px, 12vw, 58px); }
  .hub-card { min-height: 210px; }
  .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .filter-row button { flex: 0 0 auto; }
  .rule-group summary { min-height: 76px; grid-template-columns: 40px minmax(0, 1fr) 36px; gap: 10px; padding-inline: 12px; }
  .rule-group summary small { display: none; }
  .rule-group summary > span { width: 34px; height: 34px; }
  .rule-group summary::after { width: 34px; height: 34px; }
  .rule-group-intro { margin: 0 12px 8px; }
  .rule-list { padding: 0 12px 12px; }
  .rule-list > li { grid-template-columns: 38px minmax(0, 1fr); gap: 9px; padding: 17px 0; }
  .rule-callout,
  .rule-callout-wide { grid-template-columns: 1fr; gap: 8px; padding: 14px; }
  .rules-overview-main { grid-template-columns: 42px minmax(0, 1fr); gap: 14px; padding: 18px; }
  .rules-overview-index { width: 38px; height: 38px; }
  .rules-legend { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
  .rules-reminder { grid-template-columns: 42px minmax(0, 1fr); gap: 14px; padding: 18px; }
  .rules-reminder > span { width: 38px; height: 38px; }
  .status-row { grid-template-columns: 16px 1fr; padding: 10px 0; }
  .status-row small { grid-column: 2; }
  .command-box { grid-template-columns: 1fr; }
  .command-box button { min-height: 46px; }
  .footer-inner { min-height: 130px; flex-wrap: wrap; padding: 20px 0; }
  .footer-inner p { order: 3; width: 100%; margin: 0; }
  .footer-meta { order: 3; width: 100%; justify-content: center; }
  .footer-meta > p { order: 0; width: auto; }
  .error-layout { gap: 12px; padding: 46px 0 56px; }
  .error-watermark { font-size: clamp(180px, 58vw, 260px); }
  .error-copy h1 { font-size: clamp(46px, 13.2vw, 64px); }
  .error-lead { margin-top: 23px; font-size: 15px; }
  .error-actions { flex-direction: column; gap: 18px; margin-top: 28px; }
  .error-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

@media print {
  .site-header, .site-footer, .menu-overlay, .next-nav, .hero-actions { display: none !important; }
  body, .page-main { color: #000; background: #fff; }
  .page-main { padding-top: 0; }
  .rule-list p, .content-aside p { color: #222; }
  details.rule-group > :not(summary) { display: block !important; }
  .rules-toolbar { display: none; }
  .rule-group, .rule-callout, .rule-sublist { break-inside: avoid; }
}
