:root {
  --ink: #0a0a0b;
  --ink-soft: #17171a;
  --ink-muted: #2a2a2f;
  --paper: #f7f7f5;
  --surface: #ffffff;
  --surface-soft: #efefec;
  --text: #171719;
  --muted: #66666c;
  --line: #dcdcd8;
  --amber: #f3aa38;
  --amber-light: #ffd27c;
  --red: #df2d31;
  --red-dark: #a71119;
  --green: #4fb878;
  --shadow: 0 24px 70px rgba(10, 10, 11, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shell: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 6vw, 5.65rem);
  max-width: 10.5ch;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  max-width: 15ch;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
  margin-bottom: 1rem;
}

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--ink);
  background: var(--amber-light);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.top-note {
  position: relative;
  z-index: 60;
  color: #dadadd;
  background: #050506;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.top-note-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
}

.age-badge {
  flex: 0 0 auto;
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 247, 245, 0.93);
  border-bottom: 1px solid rgba(10, 10, 11, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(10, 10, 11, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.primary-nav a {
  position: relative;
  color: #35353a;
  font-size: 0.9rem;
  font-weight: 720;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  list-style: none;
}

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

.language-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  width: 190px;
  overflow: hidden;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(10, 10, 11, 0.16);
}

.language-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.language-menu a:hover,
.language-menu a[aria-current="page"] {
  background: var(--surface-soft);
}

.language-menu small {
  color: var(--muted);
  font-size: 0.68rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #ef3a3e, var(--red-dark));
  box-shadow: 0 14px 34px rgba(223, 45, 49, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(223, 45, 49, 0.38);
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 40px rgba(72, 0, 4, 0.2);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 8%, rgba(243, 170, 56, 0.11), transparent 28%),
    linear-gradient(140deg, #08080a 0%, #111114 58%, #08080a 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 170, 56, 0.8), transparent);
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}

.hero-glow-one {
  top: 8%;
  right: 2%;
  width: 360px;
  height: 360px;
  background: rgba(223, 45, 49, 0.12);
}

.hero-glow-two {
  bottom: -180px;
  left: 20%;
  width: 460px;
  height: 460px;
  background: rgba(243, 170, 56, 0.07);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.hero-content h1 {
  color: #fff;
  text-wrap: balance;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 1.8rem;
  color: #cfcfd3;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-disclaimer {
  display: flex;
  max-width: 660px;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.35rem 0 0;
  color: #a9a9ae;
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero-disclaimer span {
  color: var(--green);
  font-size: 0.62rem;
  line-height: 2;
}

.hero-stats {
  display: grid;
  max-width: 660px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 2.3rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats div {
  padding-inline: 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats div:first-child {
  padding-left: 0;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  margin-bottom: 0.28rem;
  color: #8d8d93;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 5.5rem 1.5rem 5.5rem 1.5rem;
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.48);
}

.hero-visual img {
  object-fit: cover;
  object-position: 66% center;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  border-radius: 5.5rem 1.5rem 5.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(243, 170, 56, 0.08), transparent 48%, rgba(223, 45, 49, 0.08));
  content: "";
  pointer-events: none;
}

.visual-frame {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42%;
  height: 34%;
  border-top: 1px solid rgba(243, 170, 56, 0.8);
  border-right: 1px solid rgba(243, 170, 56, 0.8);
  border-radius: 0 2rem 0 0;
}

.visual-label {
  position: absolute;
  right: -1.25rem;
  bottom: 2rem;
  z-index: 2;
  display: flex;
  max-width: 220px;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: #fff;
  background: rgba(10, 10, 11, 0.84);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  font-size: 0.85rem;
  font-weight: 800;
}

.visual-label-mark {
  color: var(--amber);
}

.section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.section-heading > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.centered {
  display: flex;
  max-width: 820px;
  align-items: center;
  margin: 0 auto clamp(2.8rem, 5vw, 4.2rem);
  flex-direction: column;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered h2,
.wide-heading h2 {
  max-width: 18ch;
}

.section-heading.centered p:not(.eyebrow) {
  margin-inline: auto;
}

.summary-section {
  background: var(--surface);
}

.summary-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(4rem, 9vw, 8rem);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 135px;
}

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

.summary-item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 1.4rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
}

.summary-number {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.summary-item h3 {
  margin-bottom: 0.5rem;
}

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

.formats-section {
  background: var(--paper);
}

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

.game-card {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.game-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 170, 56, 0.11), transparent 70%);
  content: "";
}

.game-card:hover {
  z-index: 1;
  border-color: rgba(223, 45, 49, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.game-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.game-symbol {
  color: var(--red-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.game-tag {
  padding: 0.32rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.game-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.why-section {
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 48px 48px;
}

.why-section h2,
.why-section h3 {
  color: #fff;
}

.wide-heading {
  margin-bottom: 3.3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.benefit-card {
  min-height: 310px;
  padding: 1.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.025);
  transition: background-color 180ms ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.benefit-number {
  display: block;
  margin-bottom: 5rem;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.benefit-card p {
  margin: 0;
  color: #aaaab0;
}

.promo-section {
  position: relative;
  background: var(--ink-soft);
}

.promo-shell {
  transform: translateY(50%);
}

.promo-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 4rem;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(243, 170, 56, 0.24), transparent 30%),
    linear-gradient(120deg, #4e080e, #92131c 58%, #571018);
  box-shadow: 0 30px 80px rgba(71, 7, 12, 0.34);
}

.promo-card h2 {
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.promo-card p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: #f0dadd;
}

.promo-action {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}

.promo-action small {
  color: #dfc2c4;
  font-size: 0.75rem;
  line-height: 1.55;
}

.start-section {
  padding-top: clamp(11rem, 18vw, 15rem);
  background: var(--surface);
}

.steps-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 260px;
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fbfbf9;
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 2.8rem;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

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

.responsible-card {
  display: grid;
  margin-top: 1rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr) auto;
  align-items: center;
  gap: 2.5rem;
  border: 1px solid #c8c8c3;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.responsible-heading {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.responsible-icon {
  flex: 0 0 auto;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 0.92rem;
  font-weight: 900;
}

.responsible-heading h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

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

.responsible-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.responsible-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #47474c;
  font-size: 0.88rem;
}

.responsible-card li span {
  color: #27784c;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red-dark);
  font-size: 0.88rem;
  font-weight: 850;
  white-space: nowrap;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-section {
  background: var(--paper);
}

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

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

.faq-list summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 820;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-plus {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-width: 700px;
  padding: 0 3.5rem 1.8rem 0;
}

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

.final-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  color: #fff;
  background:
    radial-gradient(circle at 15% 30%, rgba(243, 170, 56, 0.18), transparent 30%),
    linear-gradient(110deg, #9d111a, #d3262c 52%, #8c0d16);
}

.final-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 4rem;
}

.final-section h2 {
  max-width: 17ch;
  color: #fff;
}

.final-section p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: #f6dfe0;
  font-size: 1.05rem;
}

.final-action {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}

.final-action small {
  color: #efd0d2;
  font-size: 0.78rem;
}

.site-footer {
  padding-top: clamp(4rem, 8vw, 6rem);
  color: #aaaab0;
  background: #08080a;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(150px, 0.6fr) minmax(150px, 0.6fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-bottom: 4rem;
}

.brand-footer .brand-copy strong {
  color: #fff;
}

.brand-footer .brand-copy small {
  color: #8f8f95;
}

.footer-brand p {
  max-width: 720px;
  margin: 1.4rem 0 0;
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links strong {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 0.88rem;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: #fff;
}

.footer-bottom {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-responsible {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(79, 184, 120, 0.1);
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 1rem;
  }

  .primary-nav {
    gap: 1rem;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 3rem;
  }

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

  .benefit-card {
    min-height: 270px;
  }

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

  .responsible-card .text-link {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 0.7rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 247, 245, 0.98);
    box-shadow: 0 20px 45px rgba(10, 10, 11, 0.12);
    flex-direction: column;
  }

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

  .primary-nav a {
    min-height: 46px;
    padding: 0.7rem;
    border-radius: 10px;
  }

  .primary-nav a:hover {
    background: var(--surface);
  }

  .primary-nav a::after {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 4.5rem;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .visual-label {
    right: 1rem;
  }

  .summary-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sticky-heading {
    position: static;
  }

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

  .promo-shell {
    transform: translateY(42%);
  }

  .promo-card,
  .final-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .start-section {
    padding-top: 13rem;
  }

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

  .step-card {
    min-height: 0;
  }

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

  .responsible-card .text-link {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.75fr 0.75fr;
    gap: 2rem;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 85px;
  }

  body {
    font-size: 0.98rem;
  }

  .top-note-inner {
    justify-content: flex-start;
    padding-block: 0.35rem;
    text-align: left;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 1.06rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 0.55rem;
  }

  .language-switcher summary {
    min-height: 40px;
    padding-inline: 0.65rem;
  }

  .language-switcher summary span:first-child {
    display: none;
  }

  .language-menu {
    right: -3.3rem;
  }

  .hero-grid {
    padding-block: 3.6rem;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-stats div,
  .hero-stats div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0 0.85rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .hero-stats dt {
    margin: 0;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-visual picture,
  .hero-visual::after {
    border-radius: 3rem 1rem 3rem 1rem;
  }

  .visual-label {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .section {
    padding-block: 4.5rem;
  }

  .summary-item {
    grid-template-columns: 42px 1fr;
    gap: 0.8rem;
  }

  .games-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: 0;
  }

  .benefit-card {
    min-height: 240px;
  }

  .benefit-number {
    margin-bottom: 3.8rem;
  }

  .promo-shell {
    width: 100%;
    transform: translateY(34%);
  }

  .promo-card {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .promo-action .button {
    width: 100%;
  }

  .start-section {
    padding-top: 13rem;
  }

  .responsible-heading {
    flex-direction: column;
  }

  .faq-list summary {
    min-height: 84px;
    gap: 1rem;
  }

  .faq-answer {
    padding-right: 0;
  }

  .final-action .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    justify-content: center;
    padding-block: 1.4rem;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

