@font-face {
  font-family: "Centrallion Display";
  src: local("Arial Narrow Bold"), local("Aptos Display");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --night: #0b182c;
  --night-soft: #172943;
  --paper: #f3edde;
  --paper-bright: #fffaf0;
  --ice: #dce9e8;
  --blue: #7295aa;
  --orange: #ff6b35;
  --orange-dark: #c63d13;
  --acid: #c9f33f;
  --ink: #10192a;
  --muted: #5b6470;
  --line: rgba(16, 25, 42, 0.19);
  --light-line: rgba(255, 250, 240, 0.2);
  --shadow: 0 24px 70px rgba(11, 24, 44, 0.16);
  --shadow-small: 0 12px 30px rgba(11, 24, 44, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 15px;
  --display: "Centrallion Display", "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  --body: "Aptos", "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  --page: min(1240px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(114, 149, 170, 0.2), transparent 28rem),
    radial-gradient(circle at 90% 35%, rgba(255, 107, 53, 0.08), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(rgba(11, 24, 44, 0.08) 0.65px, transparent 0.65px),
    radial-gradient(rgba(255, 255, 255, 0.65) 0.65px, transparent 0.65px);
  background-position: 0 0, 5px 5px;
  background-size: 10px 10px;
  opacity: 0.24;
  pointer-events: none;
  content: "";
}

body.is-locked {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: var(--orange);
}

button {
  color: inherit;
}

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

::selection {
  background: var(--acid);
  color: var(--night);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--acid);
  color: var(--night);
  padding: 10px 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.compliance-bar {
  background: var(--acid);
  color: var(--night);
  border-bottom: 1px solid rgba(11, 24, 44, 0.35);
}

.compliance-bar__inner {
  width: var(--page);
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px 10px;
  padding: 7px 0;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.compliance-bar__dot {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.compliance-bar__links {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 3px;
}

.compliance-bar__links a {
  border: 1px solid rgba(11, 24, 44, 0.42);
  border-radius: 999px;
  padding: 2px 7px;
  text-decoration: none;
}

.compliance-bar__links a:hover {
  background: var(--night);
  color: var(--acid);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(243, 237, 222, 0.89);
  border-bottom: 1px solid rgba(16, 25, 42, 0.12);
  backdrop-filter: blur(18px);
}

.site-nav {
  width: var(--page);
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 11px;
  color: var(--night);
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  transform: rotate(-3deg);
  border: 2px solid currentColor;
  border-radius: 8px 17px 9px 14px;
  background: var(--orange);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 3px 3px 0 var(--night);
}

.brand__type {
  display: block;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.nav-links a {
  position: relative;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--night-soft);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  content: "";
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"] {
  color: var(--night);
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--night);
  border-radius: 999px;
  background: var(--night);
  color: var(--paper-bright);
  padding: 10px 17px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--orange);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta:hover {
  transform: translate(-1px, -1px);
  color: var(--paper-bright);
  box-shadow: 5px 5px 0 var(--orange);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid var(--night);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  width: 19px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle__lines::before {
  transform: translateY(-6px);
}

.nav-toggle__lines::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines::before {
  transform: translateY(1px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines::after {
  transform: translateY(-1px) rotate(-45deg);
}

main {
  display: block;
}

.page-shell {
  width: var(--page);
  margin: 0 auto;
}

.hero {
  position: relative;
  width: var(--page);
  min-height: min(720px, calc(100vh - 112px));
  margin: 26px auto 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-xl);
  background: var(--night);
  color: var(--paper-bright);
  box-shadow: var(--shadow);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/centrallion-nordic-night.webp") 52% center / cover no-repeat;
  content: "";
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 24, 44, 0.96) 0%, rgba(11, 24, 44, 0.75) 41%, rgba(11, 24, 44, 0.12) 72%),
    linear-gradient(0deg, rgba(11, 24, 44, 0.82) 0%, transparent 46%);
  content: "";
}

.hero:hover::before {
  transform: scale(1.015);
}

.hero__copy {
  max-width: 900px;
  padding: clamp(34px, 6vw, 78px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.eyebrow--orange {
  color: var(--orange-dark);
}

.eyebrow--light {
  color: var(--acid);
}

.hero h1,
.page-hero h1,
.display-title {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.25rem, 8.8vw, 7.7rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.85;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(3.25rem, 8.2vw, 7rem);
}

.hero h1 em {
  display: block;
  color: var(--acid);
  font-style: normal;
}

.hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.23rem);
  line-height: 1.55;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button--acid {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--night);
  box-shadow: 4px 4px 0 var(--orange);
}

.button--acid:hover {
  color: var(--night);
  box-shadow: 6px 6px 0 var(--orange);
}

.button--dark {
  border-color: var(--night);
  background: var(--night);
  color: var(--paper-bright);
  box-shadow: 4px 4px 0 var(--orange);
}

.button--dark:hover {
  color: var(--paper-bright);
  box-shadow: 6px 6px 0 var(--orange);
}

.button--orange {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--night);
  box-shadow: 4px 4px 0 var(--night);
}

.button--orange:hover {
  color: var(--night);
  box-shadow: 6px 6px 0 var(--night);
}

.button--ghost {
  border-color: rgba(255, 250, 240, 0.55);
  background: rgba(11, 24, 44, 0.25);
  color: var(--paper-bright);
}

.button--ghost:hover {
  background: rgba(255, 250, 240, 0.1);
  color: var(--paper-bright);
}

.button--paper {
  border-color: var(--line);
  background: var(--paper-bright);
  color: var(--night);
}

.button--paper:hover {
  color: var(--night);
  box-shadow: 4px 4px 0 var(--orange);
}

.arrow {
  font-size: 1.18em;
  line-height: 1;
}

.hero__notice {
  max-width: 650px;
  margin: 24px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 250, 240, 0.68);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.025em;
  line-height: 1.55;
}

.hero__notice strong {
  color: var(--paper-bright);
}

.hero__stamp {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 42px);
  width: 126px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: rotate(8deg);
  border: 2px dashed rgba(255, 250, 240, 0.72);
  border-radius: 50%;
  color: var(--paper-bright);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.fact-strip {
  width: var(--page);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.6);
}

.fact {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 20px clamp(18px, 3vw, 34px);
}

.fact + .fact {
  border-left: 1px solid var(--line);
}

.fact strong {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.fact span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  width: var(--page);
  margin: clamp(86px, 11vw, 150px) auto 0;
}

.section--compact {
  margin-top: 64px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.55rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-wrap: balance;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.game-card {
  position: relative;
  min-height: 630px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(11, 24, 44, 0.28);
  border-radius: var(--radius-xl);
  background: var(--night);
  color: var(--paper-bright);
  box-shadow: var(--shadow-small);
}

.game-card__media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.game-card__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(11, 24, 44, 0.94), transparent 53%),
    linear-gradient(130deg, rgba(11, 24, 44, 0.15), transparent 45%);
  content: "";
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 400ms ease;
}

.game-card:hover .game-card__media img {
  transform: scale(1.035);
}

.game-card--winter .game-card__media img {
  object-position: center;
  filter: saturate(0.82) contrast(1.06);
}

.game-card--cinnamon {
  background: #4b2117;
}

.game-card--cinnamon .game-card__media img {
  object-position: 56% center;
  filter: saturate(0.75) contrast(1.06) sepia(0.08);
}

.game-card__number {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.65);
  border-radius: 50%;
  background: rgba(11, 24, 44, 0.68);
  font-family: var(--mono);
  font-size: 0.76rem;
}

.game-card__tag {
  position: absolute;
  top: 24px;
  right: 22px;
  z-index: 2;
  border-radius: 999px;
  background: var(--acid);
  color: var(--night);
  padding: 7px 11px;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-card--cinnamon .game-card__tag {
  background: var(--orange);
}

.game-card__body {
  position: relative;
  z-index: 3;
  margin-top: -90px;
  display: grid;
  gap: 16px;
  padding: 24px clamp(24px, 4vw, 40px) 36px;
}

.game-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.game-card__body > p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 250, 240, 0.74);
}

.game-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-card__meta span {
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 999px;
  padding: 6px 9px;
  color: rgba(255, 250, 240, 0.8);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 2px;
}

.game-card__fineprint {
  max-width: 290px;
  color: rgba(255, 250, 240, 0.52);
  font-size: 0.72rem;
  line-height: 1.45;
}

.manifesto {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--night);
  border-radius: var(--radius-xl);
  background: var(--orange);
  color: var(--night);
  padding: clamp(36px, 7vw, 82px);
  box-shadow: 8px 8px 0 var(--night);
}

.manifesto::after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 360px;
  aspect-ratio: 1;
  border: 44px solid rgba(11, 24, 44, 0.12);
  border-radius: 50%;
  content: "";
}

.manifesto__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.7fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
}

.manifesto h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7.4vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.manifesto__copy {
  font-size: 1.05rem;
}

.manifesto__copy p {
  margin: 0 0 18px;
}

.manifesto .button--dark {
  box-shadow: 4px 4px 0 var(--paper-bright);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 300px;
  display: grid;
  align-content: space-between;
  gap: 40px;
  padding: clamp(28px, 4vw, 48px);
}

.principle + .principle {
  border-left: 1px solid var(--line);
}

.principle__icon {
  width: 56px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: rotate(-4deg);
  border: 2px solid var(--night);
  border-radius: 50% 45% 55% 48%;
  background: var(--ice);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 900;
}

.principle:nth-child(2) .principle__icon {
  transform: rotate(5deg);
  background: var(--acid);
}

.principle:nth-child(3) .principle__icon {
  background: var(--orange);
}

.principle h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.principle p {
  margin: 0;
  color: var(--muted);
}

.responsible-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--night);
  color: var(--paper-bright);
  box-shadow: var(--shadow);
}

.responsible-panel__lead {
  position: relative;
  padding: clamp(36px, 6vw, 72px);
  background:
    radial-gradient(circle at 85% 10%, rgba(201, 243, 63, 0.22), transparent 15rem),
    var(--night-soft);
}

.responsible-panel__lead h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.responsible-panel__lead p {
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.68);
}

.responsible-panel__list {
  display: grid;
}

.rule {
  min-height: 145px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 20px;
  border-bottom: 1px solid var(--light-line);
  padding: 30px clamp(28px, 4vw, 48px);
}

.rule:last-child {
  border-bottom: 0;
}

.rule__number {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}

.rule h3 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.rule p {
  margin: 0;
  color: rgba(255, 250, 240, 0.65);
  font-size: 0.93rem;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 20px;
  padding: 23px 4px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  content: "+";
}

.faq details[open] summary::after {
  background: var(--night);
  color: var(--paper-bright);
  content: "−";
}

.faq details p {
  max-width: 760px;
  margin: -4px 0 0;
  padding: 0 56px 26px 4px;
  color: var(--muted);
}

.page-hero {
  width: var(--page);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.55fr);
  align-items: end;
  gap: 60px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--night);
  color: var(--paper-bright);
  padding: clamp(42px, 7vw, 90px);
  box-shadow: var(--shadow);
}

.page-hero--orange {
  background: var(--orange);
  color: var(--night);
}

.page-hero--ice {
  background: var(--ice);
  color: var(--night);
}

.page-hero h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.page-hero__aside {
  align-self: end;
}

.page-hero__aside p {
  margin: 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 1.03rem;
}

.page-hero--orange .page-hero__aside p,
.page-hero--ice .page-hero__aside p {
  color: rgba(11, 24, 44, 0.72);
}

.page-hero__facts {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.page-hero__facts span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-hero__facts span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
}

.page-hero--orange .page-hero__facts span::before,
.page-hero--ice .page-hero__facts span::before {
  background: var(--night);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.content-grid__rail {
  position: sticky;
  top: 120px;
}

.content-grid__rail h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.content-grid__rail p {
  margin: 20px 0 0;
  color: var(--muted);
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin: 56px 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 30px 0 8px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.prose p,
.prose li {
  color: #3d4754;
}

.prose p {
  margin: 0 0 18px;
}

.prose ul,
.prose ol {
  margin: 18px 0 24px;
  padding-left: 1.35rem;
}

.prose li {
  margin-bottom: 8px;
}

.prose a {
  color: var(--orange-dark);
  font-weight: 700;
}

.callout {
  margin: 34px 0;
  border: 1px solid var(--night);
  border-radius: var(--radius-lg);
  background: var(--paper-bright);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 6px 6px 0 var(--night);
}

.callout--acid {
  background: var(--acid);
}

.callout--ice {
  background: var(--ice);
}

.callout strong:first-child {
  display: block;
  margin-bottom: 7px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 900;
}

.callout p:last-child {
  margin-bottom: 0;
}

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

.mini-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.6);
  padding: 26px;
}

.mini-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
}

.game-hero {
  width: var(--page);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--night);
  color: var(--paper-bright);
  box-shadow: var(--shadow);
}

.game-hero__image {
  min-height: 590px;
  position: relative;
  overflow: hidden;
}

.game-hero__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(11, 24, 44, 0.7));
  content: "";
}

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

.game-hero__image--winter img {
  object-position: 46% center;
  filter: saturate(0.82) contrast(1.08);
}

.game-hero__image--cinnamon img {
  object-position: 54% center;
  filter: saturate(0.77) contrast(1.07);
}

.game-hero__copy {
  display: grid;
  align-content: center;
  padding: clamp(36px, 6vw, 76px);
}

.game-hero__copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.3rem, 6.5vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.game-hero__copy > p {
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.7);
}

.game-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.game-badges span {
  border: 1px solid var(--light-line);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255, 250, 240, 0.84);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.play-stage {
  overflow: hidden;
  border: 1px solid var(--night);
  border-radius: var(--radius-xl);
  background: var(--night);
  box-shadow: var(--shadow);
}

#play-game {
  scroll-margin-top: 96px;
}

.play-stage__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--light-line);
  padding: 16px 20px;
  color: var(--paper-bright);
}

.play-stage__identity {
  min-width: 0;
  display: grid;
  flex: 1 1 520px;
  gap: 4px;
}

.play-stage__top strong {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.play-stage__notice {
  color: rgba(255, 250, 240, 0.65);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.035em;
  line-height: 1.45;
  text-transform: uppercase;
}

.play-stage__frame {
  position: relative;
  min-height: min(70vh, 760px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(114, 149, 170, 0.28), transparent 20rem),
    radial-gradient(circle at 80% 85%, rgba(255, 107, 53, 0.18), transparent 18rem),
    var(--night);
}

.play-stage__frame iframe {
  width: 100%;
  height: min(70vh, 760px);
  border: 0;
}

.play-stage__placeholder {
  max-width: 600px;
  display: grid;
  justify-items: center;
  padding: 52px 28px;
  text-align: center;
}

.play-stage__placeholder[hidden] {
  display: none;
}

.play-stage__disc {
  width: 86px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: rotate(-4deg);
  border: 2px solid var(--paper-bright);
  border-radius: 50% 47% 52% 46%;
  background: var(--orange);
  color: var(--night);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--acid);
}

.play-stage__placeholder h2 {
  margin: 28px 0 0;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.play-stage__placeholder p {
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.66);
}

.play-stage__placeholder .button {
  margin-top: 24px;
  cursor: pointer;
}

.provider-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border: 1px solid var(--night);
  border-radius: var(--radius-xl);
  background: var(--paper-bright);
  box-shadow: 8px 8px 0 var(--night);
}

.contact-card__copy,
.contact-card__details {
  padding: clamp(34px, 6vw, 70px);
}

.contact-card__details {
  background: var(--acid);
}

.contact-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.contact-card p {
  color: var(--muted);
}

.contact-card__details p {
  color: rgba(11, 24, 44, 0.78);
}

.contact-routes {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-route {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.contact-route > strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-route p {
  max-width: 580px;
  margin: 6px 0 0;
  font-size: 0.9rem;
}

.contact-email {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.age-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  background: rgba(5, 12, 24, 0.86);
  padding: 20px;
  backdrop-filter: blur(12px);
}

.age-modal[hidden] {
  display: none;
}

.age-modal__card {
  width: min(590px, 100%);
  overflow: hidden;
  border: 1px solid var(--paper-bright);
  border-radius: var(--radius-xl);
  background: var(--paper-bright);
  color: var(--night);
  box-shadow: 10px 10px 0 var(--orange);
}

.age-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 18px 24px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.age-modal__age {
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--night);
  border-radius: 50%;
  background: var(--acid);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
}

.age-modal__body {
  padding: clamp(30px, 6vw, 54px);
}

.age-modal h2 {
  max-width: 450px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.age-modal p {
  margin: 22px 0 0;
  color: var(--muted);
}

.age-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.age-modal__actions button {
  cursor: pointer;
}

.age-modal__note {
  font-size: 0.75rem;
}

.site-footer {
  margin-top: clamp(90px, 12vw, 160px);
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 243, 63, 0.12), transparent 20rem),
    var(--night);
  color: var(--paper-bright);
}

.site-footer__main {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.55fr 1.45fr;
  gap: clamp(35px, 5vw, 70px);
  padding: 74px 0 52px;
}

.site-footer .brand {
  color: var(--paper-bright);
}

.site-footer__brand p {
  max-width: 370px;
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.6);
}

.site-footer__heading {
  display: block;
  margin-bottom: 15px;
  color: rgba(255, 250, 240, 0.48);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  justify-items: start;
  gap: 9px;
}

.site-footer__links a {
  color: rgba(255, 250, 240, 0.82);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--acid);
}

.site-footer__legal {
  display: grid;
  gap: 10px;
}

.site-footer__legal p {
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.82rem;
  line-height: 1.55;
}

.site-footer__legal strong {
  color: var(--paper-bright);
}

.site-footer__legal a {
  color: var(--acid);
}

.site-footer__bottom {
  width: var(--page);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--light-line);
  padding: 22px 0 30px;
  color: rgba(255, 250, 240, 0.45);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.empty-state {
  min-height: calc(100vh - 230px);
  display: grid;
  place-items: center;
  padding: 60px 20px;
}

.empty-state__card {
  width: min(760px, 100%);
  text-align: center;
}

.empty-state__code {
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(7rem, 25vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.empty-state h1 {
  margin: 30px 0 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 6vw, 4.3rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.empty-state p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 18px 20px 24px;
    box-shadow: var(--shadow-small);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-links a::after {
    right: auto;
    width: 36px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 670px;
  }

  .hero::before {
    background-position: 62% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(11, 24, 44, 0.94) 0%, rgba(11, 24, 44, 0.74) 52%, rgba(11, 24, 44, 0.25) 100%),
      linear-gradient(0deg, rgba(11, 24, 44, 0.9) 0%, transparent 52%);
  }

  .hero__copy {
    padding-right: 110px;
  }

  .section-heading,
  .manifesto__grid,
  .content-grid,
  .responsible-panel,
  .page-hero,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .game-hero {
    grid-template-columns: 1fr;
  }

  .game-hero__image {
    min-height: 430px;
  }

  .game-hero__image::after {
    background: linear-gradient(0deg, rgba(11, 24, 44, 0.8), transparent 50%);
  }

  .content-grid__rail {
    position: static;
  }

  .site-footer__main {
    grid-template-columns: 1fr 0.7fr;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --page: min(100% - 24px, 1240px);
    --radius-xl: 24px;
  }

  .compliance-bar__inner {
    min-height: 42px;
    gap: 4px 6px;
    padding: 7px 0;
    font-size: 0.58rem;
    letter-spacing: 0.045em;
  }

  .compliance-bar__links {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .brand__type {
    font-size: 0.82rem;
  }

  .site-nav {
    min-height: 70px;
  }

  .nav-links {
    top: 70px;
  }

  .brand {
    grid-template-columns: 38px auto;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 690px;
    margin-top: 12px;
    align-items: end;
  }

  .hero::before {
    background-position: 68% center;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(11, 24, 44, 0.98) 0%, rgba(11, 24, 44, 0.82) 49%, rgba(11, 24, 44, 0.2) 100%),
      linear-gradient(90deg, rgba(11, 24, 44, 0.6), transparent);
  }

  .hero__copy {
    padding: 34px 24px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero__actions .button {
    flex: 1 1 100%;
  }

  .hero__notice {
    font-size: 0.65rem;
  }

  .hero__stamp {
    display: none;
  }

  .fact-strip {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 88px;
  }

  .fact + .fact {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    margin-top: 84px;
  }

  .section-heading h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

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

  .game-card {
    min-height: 560px;
  }

  .game-card__media {
    min-height: 340px;
  }

  .manifesto {
    box-shadow: 5px 5px 0 var(--night);
  }

  .manifesto h2 {
    font-size: clamp(3.2rem, 16vw, 5.6rem);
  }

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

  .principle {
    min-height: 230px;
  }

  .principle + .principle {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .responsible-panel__lead h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .rule {
    grid-template-columns: 38px 1fr;
    gap: 11px;
    padding: 26px 24px;
  }

  .page-hero {
    margin-top: 12px;
    gap: 34px;
    padding: 38px 26px;
  }

  .page-hero h1 {
    font-size: clamp(3.3rem, 17vw, 5.2rem);
  }

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

  .game-hero {
    margin-top: 12px;
  }

  .game-hero__image {
    min-height: 330px;
  }

  .game-hero__copy {
    padding: 34px 26px 40px;
  }

  .play-stage__frame {
    min-height: 560px;
  }

  .play-stage__frame iframe {
    height: 560px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .site-footer__legal {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy > *,
  .page-hero > *,
  .game-hero__copy > * {
    animation: enter 620ms both;
  }

  .hero__copy > *:nth-child(2),
  .page-hero > *:nth-child(2),
  .game-hero__copy > *:nth-child(2) {
    animation-delay: 70ms;
  }

  .hero__copy > *:nth-child(3),
  .game-hero__copy > *:nth-child(3) {
    animation-delay: 120ms;
  }

  .hero__copy > *:nth-child(4),
  .game-hero__copy > *:nth-child(4) {
    animation-delay: 170ms;
  }

  .hero__copy > *:nth-child(5) {
    animation-delay: 210ms;
  }
}

@keyframes enter {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
