:root {
  --ink: #f7f7f8;
  --paper: #ffffff;
  --paper-soft: #f5f7fa;
  --night: #05060a;
  --night-2: #0d111b;
  --text: #171923;
  --muted: #737987;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: #e3e6ec;
  --pink: #ff2f68;
  --pink-deep: #be1948;
  --gold: #e7b34d;
  --teal: #2bd4c6;
  --blue: #6478ff;
  --shadow: 0 24px 64px rgba(5, 6, 10, 0.24);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

p,
h1,
h2,
h3,
span,
a,
button,
label {
  overflow-wrap: anywhere;
}

.section {
  position: relative;
}

main .section[id] {
  scroll-margin-top: 92px;
}

.section-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 88px;
  min-height: 90px;
  background: rgba(3, 4, 8, 0.44);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(5, 6, 10, 0.84);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  color: #fff;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 38px;
  color: var(--night);
  background: #fff;
  font-weight: 900;
  font-size: 20px;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 8% 50%);
}

.brand-copy {
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.66);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 72px;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a.is-active,
.main-nav a:hover {
  color: #fff;
}

.main-nav a.is-active::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  position: relative;
  display: grid;
  place-items: center;
  gap: 5px;
  border: 0;
  width: 88px;
  min-height: 100%;
  cursor: pointer;
  background: var(--pink);
}

.menu-button span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.mobile-panel {
  position: fixed;
  top: 72px;
  right: 0;
  z-index: 39;
  display: grid;
  width: min(330px, 100%);
  padding: 14px;
  background: rgba(8, 10, 18, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-panel a {
  color: #fff;
  padding: 15px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  font-weight: 800;
}

.hero {
  height: min(820px, calc(100svh - 120px));
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.hero-art,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.54) 32%, rgba(0, 0, 0, 0.12) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.03) 40%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 96px));
  margin-left: max(48px, calc((100vw - var(--max)) / 2));
  padding: 0 0 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
  font-family: "Segoe UI", Arial, sans-serif;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: inherit;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.button-primary {
  color: #fff;
  background: var(--pink);
  box-shadow: 0 16px 34px rgba(255, 47, 104, 0.28);
}

.button-primary:hover {
  background: var(--pink-deep);
}

.button-secondary {
  color: #222633;
  background: #fff;
  border-color: var(--line-dark);
}

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

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-index {
  position: absolute;
  right: 34px;
  bottom: 78px;
  z-index: 3;
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-index span:first-child {
  color: #fff;
  font-size: 32px;
}

.data-strip {
  padding: 78px 0 90px;
  background: #fff;
}

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

.metric {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 30px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
}

.metric strong {
  color: #a8adb8;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.9;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.metric span {
  color: var(--muted);
  font-size: 15px;
  text-transform: uppercase;
}

.data-copy {
  max-width: 760px;
  margin: 0 auto;
  color: #8b909a;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  font-family: "Segoe UI", Arial, sans-serif;
}

.games-section {
  padding: 88px 0;
  color: #fff;
  background: linear-gradient(180deg, #070810 0%, #151020 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font: 16px/1.65 "Segoe UI", Arial, sans-serif;
}

.games-section .section-heading p:not(.section-kicker),
.backoffice-section .section-heading p:not(.section-kicker),
.vision-section p,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.game-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 0 18px;
  scroll-snap-type: x proximity;
  cursor: grab;
  scrollbar-color: var(--pink) rgba(255, 255, 255, 0.1);
}

.game-rail.is-dragging {
  cursor: grabbing;
}

.game-card {
  position: relative;
  min-height: 350px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--night-2);
  box-shadow: var(--shadow);
}

.game-card::before,
.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.game-card::before {
  background-size: cover;
  background-position: center;
  opacity: 0.72;
  transform: scale(1.08);
}

.game-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78));
}

.game-card-1::before { background-image: url("assets/game-crystal-vault.png"); }
.game-card-2::before { background-image: url("assets/game-dragon-lantern.png"); }
.game-card-3::before { background-image: url("assets/game-neon-panda.png"); }
.game-card-4::before { background-image: url("assets/game-moonlight-heist.png"); }
.game-card-5::before { background-image: url("assets/game-fortune-orbit.png"); }
.game-card-6::before { background-image: url("assets/game-jungle-ace.png"); }

.game-card span,
.game-card h3,
.game-card p {
  position: relative;
  z-index: 2;
}

.game-card span {
  color: var(--gold);
  font-weight: 900;
}

.game-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.05;
  text-transform: uppercase;
}

.game-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font: 14px/1.45 "Segoe UI", Arial, sans-serif;
}

.license-section,
.company-section,
.partners-section,
.contact-section {
  padding: 92px 0;
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
}

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

.seal {
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: center;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--paper-soft);
}

.seal strong {
  color: var(--pink);
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.seal span {
  color: var(--muted);
  font: 14px/1.4 "Segoe UI", Arial, sans-serif;
}

.features-section {
  padding: 92px 0 100px;
  background: var(--paper-soft);
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 26px;
}

.feature-tab {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  color: #262b35;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-tab.is-active {
  color: #fff;
  border-color: var(--pink);
  background: var(--pink);
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
  min-height: 330px;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(20, 24, 36, 0.08);
}

.feature-panel.is-hidden {
  display: none;
}

.feature-panel h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  text-transform: uppercase;
}

.feature-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font: 16px/1.65 "Segoe UI", Arial, sans-serif;
}

.panel-visual {
  position: relative;
  min-height: 260px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.panel-social {
  background-image:
    linear-gradient(135deg, rgba(255, 47, 104, 0.54), rgba(43, 212, 198, 0.4)),
    url("assets/feature-social.png");
}

.panel-tournament {
  background-image:
    linear-gradient(135deg, rgba(43, 95, 255, 0.52), rgba(255, 187, 69, 0.38)),
    url("assets/feature-tournament.png");
}

.panel-bonus {
  background-image:
    linear-gradient(135deg, rgba(140, 47, 255, 0.52), rgba(255, 47, 104, 0.38)),
    url("assets/feature-bonus.png");
}

.panel-lobby {
  background-image:
    linear-gradient(135deg, rgba(5, 10, 28, 0.5), rgba(43, 212, 198, 0.38)),
    url("assets/feature-lobby.png");
}

.panel-visual::before,
.panel-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(5, 6, 10, 0.42);
  backdrop-filter: blur(8px);
}

.panel-visual::before {
  left: 32px;
  right: 32px;
  top: 42px;
  height: 56px;
  border-radius: 6px;
}

.panel-visual::after {
  left: 32px;
  bottom: 34px;
  width: 46%;
  height: 96px;
  border-radius: 8px;
}

.backoffice-section {
  padding: 96px 0;
  color: #fff;
  background: #080a12;
}

.dashboard {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.dash-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.dash-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

.dash-top span:nth-child(2) {
  background: var(--gold);
}

.dash-top span:nth-child(3) {
  background: var(--teal);
}

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

.dash-grid div {
  display: grid;
  gap: 6px;
  min-height: 118px;
  align-content: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.dash-grid strong {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}

.dash-grid span {
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
}

.dash-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 130px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.dash-chart i {
  flex: 1;
  min-width: 22px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--pink), var(--gold));
}

.dash-chart i:nth-child(1) { height: 44%; }
.dash-chart i:nth-child(2) { height: 66%; }
.dash-chart i:nth-child(3) { height: 52%; }
.dash-chart i:nth-child(4) { height: 78%; }
.dash-chart i:nth-child(5) { height: 61%; }
.dash-chart i:nth-child(6) { height: 90%; }

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

.pillar-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(20, 24, 36, 0.06);
}

.pillar-grid span {
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
}

.pillar-grid h3 {
  margin: 26px 0 14px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.pillar-grid p {
  margin: 0;
  color: var(--muted);
  font: 15px/1.55 "Segoe UI", Arial, sans-serif;
}

.timeline-section {
  padding: 90px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.92), rgba(5, 6, 10, 0.68)),
    url("assets/timeline-bg.png") center / cover fixed;
}

.timeline-section .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 14px;
}

.timeline article {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.timeline strong {
  color: var(--gold);
  font-size: 40px;
  font-weight: 900;
}

.timeline span {
  color: rgba(255, 255, 255, 0.78);
  font: 15px/1.5 "Segoe UI", Arial, sans-serif;
}

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

.partner-grid span {
  display: grid;
  place-items: center;
  min-height: 84px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: #4f5564;
  background: var(--paper-soft);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.vision-section {
  padding: 100px 0;
  color: #fff;
  background: linear-gradient(135deg, #121522 0%, #25111b 48%, #3a1421 100%);
}

.vision-section .section-inner {
  max-width: 980px;
}

.vision-section h2 {
  margin: 0;
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: 0.98;
  text-transform: uppercase;
}

.vision-section p:not(.section-kicker) {
  max-width: 780px;
  margin: 24px 0 0;
  font: 18px/1.6 "Segoe UI", Arial, sans-serif;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: #343946;
  font-weight: 800;
}

.contact-lines a:hover {
  color: var(--pink);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--paper-soft);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  color: #555c6b;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  padding: 13px 14px;
  background: #fff;
  color: var(--text);
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 47, 104, 0.12);
}

.check-field {
  display: flex !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  flex-direction: row;
  gap: 10px !important;
}

.check-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--pink);
}

.check-field span {
  text-transform: none !important;
  font-weight: 700 !important;
}

.site-footer {
  color: #fff;
  background: #05060a;
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
  gap: 36px;
}

.footer-brand {
  padding: 0;
  margin-bottom: 18px;
}

.footer-grid h2 {
  margin: 0 0 16px;
  font-size: 18px;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: #fff;
}

.copyright {
  width: min(var(--max), calc(100% - 48px));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font: 13px/1.5 "Segoe UI", Arial, sans-serif;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 42;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 12px 24px 12px 38px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}

.cookie-bar.is-hidden {
  display: none;
}

.cookie-bar p {
  margin: 0;
  font: 14px/1.45 "Segoe UI", Arial, sans-serif;
}

.cookie-bar button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cookie-bar button::before,
.cookie-bar button::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 21px;
  width: 24px;
  height: 1px;
  background: #fff;
}

.cookie-bar button::before {
  transform: rotate(45deg);
}

.cookie-bar button::after {
  transform: rotate(-45deg);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)),
    url("assets/age-gate-bg.png") center / cover;
}

.age-gate.is-hidden {
  display: none;
}

.age-card {
  width: min(500px, 100%);
  padding: 40px;
  border-radius: 8px;
  background: #fff;
  color: #1b1d25;
  text-align: center;
  box-shadow: var(--shadow);
}

.age-mark {
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 20px;
  border: 5px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  font-size: 32px;
  font-weight: 900;
}

.age-card h2 {
  margin: 0;
  font-size: 32px;
  text-transform: uppercase;
}

.age-card p {
  margin: 14px 0 26px;
  color: var(--muted);
  font: 16px/1.5 "Segoe UI", Arial, sans-serif;
}

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

.side-dots {
  position: fixed;
  right: 30px;
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 18px;
  transform: translateY(-50%);
}

.side-dots a {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.side-dots a.is-active {
  background: var(--pink);
}

.side-dots span {
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.side-dots a:hover span {
  opacity: 1;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 200px minmax(0, 1fr) 78px;
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero-content {
    width: min(820px, calc(100% - 56px));
    margin-left: 28px;
  }

  .side-dots {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 74px;
    min-height: 72px;
  }

  .brand {
    padding: 0 18px;
  }

  .main-nav {
    display: none;
  }

  .menu-button {
    width: 74px;
  }

  .hero {
    height: min(760px, calc(100svh - 96px));
    min-height: 560px;
  }

  .hero-art {
    object-position: 57% center;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 64px);
  }

  .hero-index {
    display: none;
  }

  .section-inner {
    width: min(var(--max), calc(100% - 32px));
  }

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

  .split,
  .split.reverse,
  .contact-layout,
  .footer-grid,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .license-section,
  .company-section,
  .partners-section,
  .contact-section,
  .features-section,
  .backoffice-section,
  .timeline-section {
    padding: 68px 0;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 45px;
    height: 33px;
    font-size: 17px;
  }

  .brand-copy {
    font-size: 10px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 13px 16px;
  }

  .data-grid,
  .seal-grid,
  .pillar-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    padding: 24px 16px;
  }

  .game-rail,
  .timeline {
    grid-auto-columns: minmax(246px, 82vw);
  }

  .feature-panel {
    padding: 22px;
  }

  .panel-visual {
    min-height: 220px;
  }

  .contact-form {
    padding: 18px;
  }

  .age-card {
    padding: 28px 20px;
  }

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

  .cookie-bar {
    grid-template-columns: minmax(0, 1fr) 44px;
    padding: 10px 12px 10px 16px;
  }
}
