:root {
  color-scheme: light;
  --blue: oklch(0.620 0.185 253);
  --blue-dark: oklch(0.420 0.165 254);
  --blue-soft: oklch(0.955 0.026 248);
  --ink: oklch(0.205 0.020 248);
  --muted: oklch(0.450 0.035 248);
  --line: oklch(0.875 0.018 248);
  --panel: oklch(0.995 0.000 0);
  --page: oklch(0.965 0.006 248);
  --gold: oklch(0.780 0.150 82);
  --gold-dark: oklch(0.430 0.095 76);
  --red: oklch(0.590 0.190 29);
  --green: oklch(0.610 0.180 147);
  --radius: 8px;
  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, system-ui, sans-serif;
  color: var(--ink);
  background: var(--page);
  line-height: 1.65;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 9px 13px;
  font-weight: 700;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: calc(100% - 32px);
  max-width: var(--max);
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 132px;
}

.brand img {
  width: 152px;
  height: auto;
}

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

.nav-links a {
  position: relative;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
  transition: color 160ms ease-out;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease-out;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue-dark);
  outline: none;
}

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

.nav-links .is-active {
  color: var(--blue-dark);
}

.nav-links .apk-link {
  min-height: 44px;
  min-width: 74px;
  margin-left: 10px;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--gold);
  color: oklch(0.130 0.020 80);
  font-weight: 800;
}

.nav-links .apk-link::after {
  content: none;
}

.nav-links .apk-link:hover,
.nav-links .apk-link:focus-visible {
  background: oklch(0.840 0.140 82);
  color: oklch(0.130 0.020 80);
}

.stage {
  min-height: calc(100svh - 64px);
  background: var(--blue);
  padding: 44px 16px 0;
}

.page-stage {
  min-height: auto;
  padding-bottom: 52px;
}

.stage-inner {
  width: 100%;
  max-width: var(--max);
  min-width: 0;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 30px;
}

.hero-logo {
  width: min(360px, 84vw);
  height: auto;
  filter: drop-shadow(0 7px 0 oklch(0.220 0.075 250 / 0.18));
}

.contact-ctas {
  width: min(100%, 660px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: -8px;
}

.contact-cta {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 13px 20px 13px 92px;
  border-radius: 999px;
  color: white;
  font-weight: 850;
  isolation: isolate;
  box-shadow: 0 5px 0 oklch(0.250 0.070 248 / 0.22);
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
}

.contact-cta:hover,
.contact-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 oklch(0.250 0.070 248 / 0.20);
  outline: none;
}

.contact-cta img {
  position: absolute;
  left: 8px;
  top: 50%;
  z-index: 1;
  width: 88px;
  height: 88px;
  transform: translateY(-50%) rotate(-5deg);
  object-fit: contain;
  pointer-events: none;
}

.contact-cta span {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-cta strong,
.contact-cta small {
  display: block;
}

.contact-cta strong {
  font-size: 1.12rem;
  line-height: 1.05;
}

.contact-cta small {
  color: oklch(0.990 0.000 0 / 0.82);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.2;
}

.contact-cta.whatsapp {
  background: var(--green);
}

.contact-cta.telegram {
  background: oklch(0.610 0.175 246);
}

.contact-cta.telegram img {
  transform: translateY(-50%) rotate(5deg);
}

.test-access-card {
  width: min(100%, 660px);
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  margin-top: -18px;
  border: 1px solid oklch(0.820 0.040 248);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 12px;
}

.test-access-title,
.test-access-item {
  min-width: 0;
}

.test-access-title {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.2;
}

.test-access-item {
  display: grid;
  gap: 2px;
  border-radius: 6px;
  background: var(--blue-soft);
  padding: 9px 10px;
}

.test-access-item b,
.test-access-item small {
  display: block;
}

.test-access-item b {
  color: var(--blue-dark);
  font-size: 0.9rem;
  line-height: 1.1;
}

.test-access-item small {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 15;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  background: var(--green);
  color: white;
  font-weight: 850;
  box-shadow: 0 5px 0 oklch(0.250 0.070 147 / 0.28);
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 oklch(0.250 0.070 147 / 0.24);
  outline: none;
}

.floating-whatsapp img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transform: rotate(-6deg);
}

.floating-whatsapp span {
  display: grid;
  gap: 1px;
}

.floating-whatsapp strong,
.floating-whatsapp small {
  display: block;
  white-space: nowrap;
}

.floating-whatsapp strong {
  font-size: 1rem;
  line-height: 1.05;
}

.floating-whatsapp small {
  color: oklch(0.990 0.000 0 / 0.82);
  font-size: 0.78rem;
  line-height: 1.1;
}

.content-panel {
  width: min(100%, 900px);
  max-width: 100%;
  min-width: 0;
  min-height: 530px;
  border-radius: var(--radius);
  background: var(--panel);
  padding: clamp(26px, 5vw, 56px);
}

.page-panel {
  min-height: auto;
}

.content-head {
  width: 100%;
  min-width: 0;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 15px;
  margin-bottom: 34px;
}

.content-head.align-left {
  justify-items: start;
  text-align: left;
}

.age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  background: oklch(0.970 0.020 29);
  color: var(--red);
  padding: 0 12px;
  font-weight: 800;
  font-size: 0.92rem;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
  text-wrap: pretty;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 800;
  line-height: 1;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button.primary {
  background: var(--gold);
  color: oklch(0.130 0.020 80);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: oklch(0.840 0.140 82);
  outline: none;
}

.button.secondary {
  border-color: var(--line);
  color: var(--blue-dark);
  background: var(--panel);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: oklch(0.700 0.120 253);
  background: var(--blue-soft);
  outline: none;
}

.content-flow {
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.seo-row,
.section-row {
  padding: clamp(22px, 3.5vw, 34px) 0;
  border-bottom: 1px solid var(--line);
}

.seo-row h2,
.seo-row h3,
.section-row h2,
.section-row h3 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.18;
}

.seo-row p,
.section-row p {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--muted);
  text-wrap: pretty;
}

.content-flow :where(p, li) a:not(.button),
.faq p a {
  border-radius: 4px;
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: oklch(0.780 0.150 82 / 0.75);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  box-shadow: inset 0 -0.38em oklch(0.880 0.110 82 / 0.32);
  transition: color 150ms ease-out, box-shadow 150ms ease-out, text-decoration-color 150ms ease-out;
}

.content-flow :where(p, li) a:not(.button):hover,
.content-flow :where(p, li) a:not(.button):focus-visible,
.faq p a:hover,
.faq p a:focus-visible {
  color: var(--ink);
  text-decoration-color: var(--blue);
  box-shadow: inset 0 -1.25em oklch(0.880 0.110 82 / 0.48);
  outline: none;
}

.content-flow :where(p, li) a:not(.button):focus-visible,
.faq p a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.seo-row p:last-child,
.section-row p:last-child {
  margin-bottom: 0;
}

.seo-row h3,
.section-row h3 {
  margin: 16px 0 8px;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.25;
}

.download-row {
  margin: 6px 0;
  border: 1px solid oklch(0.820 0.040 248);
  border-radius: var(--radius);
  background: var(--blue-soft);
  padding: clamp(18px, 3vw, 26px);
}

.app-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.app-title img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
}

.app-title h2,
.app-title h3 {
  margin-bottom: 2px;
  font-size: 1.38rem;
  line-height: 1.16;
}

.app-title p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.facts li {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 12px;
  color: var(--muted);
}

.facts b {
  color: var(--ink);
}

.answer-table {
  display: grid;
  gap: 1px;
  max-width: 760px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  margin: 16px 0 14px;
}

.answer-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(130px, 0.36fr) minmax(0, 1fr);
  gap: 1px;
}

.answer-table b,
.answer-table span {
  min-width: 0;
  background: var(--panel);
  padding: 12px 14px;
  line-height: 1.4;
}

.answer-table b {
  color: var(--blue-dark);
}

.answer-table span {
  color: var(--muted);
}

.small-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.step-list,
.clean-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li,
.clean-list li {
  border-bottom: 1px solid var(--line);
  padding: 0 0 13px;
  color: var(--muted);
}

.step-list li:last-child,
.clean-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.step-list b,
.clean-list b {
  color: var(--ink);
}

.split-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  gap: clamp(18px, 4vw, 38px);
  align-items: center;
}

.device-panel,
.status-panel,
.login-panel,
.register-panel {
  border: 1px solid oklch(0.820 0.040 248);
  border-radius: var(--radius);
  background: var(--blue-soft);
  padding: clamp(18px, 3vw, 26px);
}

.device-preview {
  width: min(210px, 100%);
  margin: 0 auto;
  border: 10px solid var(--ink);
  border-radius: 28px;
  background: var(--panel);
  padding: 14px;
}

.device-screen {
  min-height: 270px;
  border-radius: 18px;
  background: var(--blue);
  padding: 18px 14px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.device-screen img {
  width: 120px;
  margin: 0 auto 4px;
}

.screen-line,
.screen-button {
  min-height: 12px;
  border-radius: 999px;
  background: oklch(0.990 0.000 0 / 0.90);
}

.screen-line.short {
  width: 64%;
  margin: 0 auto;
}

.screen-button {
  min-height: 34px;
  background: var(--gold);
}

.game-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.game-image-grid {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.game-image-grid li {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.game-image-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
}

.game-showcase {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.game-showcase img {
  width: 100%;
  height: auto;
}

.game-poster {
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  position: relative;
  margin: 0;
}

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

.game-poster::before {
  background:
    radial-gradient(circle at 24% 20%, oklch(0.870 0.160 82) 0 10%, transparent 11%),
    radial-gradient(circle at 78% 24%, oklch(0.720 0.180 29) 0 11%, transparent 12%),
    radial-gradient(circle at 50% 72%, oklch(0.990 0.000 0 / 0.85) 0 13%, transparent 14%),
    linear-gradient(145deg, oklch(0.360 0.145 254), oklch(0.680 0.170 147));
}

.game-poster::after {
  inset: 16px;
  border: 2px solid oklch(0.990 0.000 0 / 0.62);
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 31%, oklch(0.990 0.000 0 / 0.46) 31% 33%, transparent 33% 64%, oklch(0.990 0.000 0 / 0.46) 64% 66%, transparent 66%),
    linear-gradient(180deg, transparent 43%, oklch(0.990 0.000 0 / 0.42) 43% 45%, transparent 45% 58%, oklch(0.990 0.000 0 / 0.42) 58% 60%, transparent 60%);
}

.poster-two::before {
  background:
    radial-gradient(circle at 28% 26%, oklch(0.820 0.150 246) 0 12%, transparent 13%),
    radial-gradient(circle at 72% 66%, oklch(0.880 0.145 82) 0 10%, transparent 11%),
    linear-gradient(150deg, oklch(0.260 0.120 248), oklch(0.600 0.170 29));
}

.poster-three::before {
  background:
    radial-gradient(circle at 30% 68%, oklch(0.900 0.130 82) 0 9%, transparent 10%),
    radial-gradient(circle at 58% 35%, oklch(0.780 0.160 147) 0 15%, transparent 16%),
    linear-gradient(140deg, oklch(0.310 0.140 253), oklch(0.750 0.150 82));
}

.poster-four::before {
  background:
    radial-gradient(circle at 62% 26%, oklch(0.990 0.000 0 / 0.84) 0 11%, transparent 12%),
    radial-gradient(circle at 38% 72%, oklch(0.720 0.180 29) 0 12%, transparent 13%),
    linear-gradient(145deg, oklch(0.500 0.160 147), oklch(0.350 0.130 254));
}

.rtp-board {
  border-radius: var(--radius);
  background: oklch(0.190 0.025 248);
  color: white;
  padding: clamp(20px, 4vw, 34px);
}

.rtp-board h2 {
  margin-bottom: 14px;
  color: white;
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
}

.rtp-board h3 {
  margin: 18px 0 10px;
  color: white;
  font-size: 1.08rem;
}

.rtp-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: oklch(0.990 0.000 0 / 0.22);
  margin: 18px 0 14px;
}

.rtp-table [role="row"] {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.1fr;
  gap: 1px;
}

.rtp-table span,
.rtp-table b {
  min-width: 0;
  background: oklch(0.255 0.035 248);
  padding: 13px 14px;
  color: oklch(0.960 0.010 248);
  line-height: 1.35;
}

.rtp-table b {
  background: var(--gold);
  color: oklch(0.130 0.020 80);
}

.rtp-table .rtp-value {
  color: var(--gold);
  font-weight: 850;
}

.rtp-board p {
  color: oklch(0.920 0.018 248);
}

.rtp-board .rtp-disclaimer {
  margin-top: 10px;
  color: oklch(0.900 0.030 82);
  font-size: 0.94rem;
}

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

.auth-card {
  border: 1px solid oklch(0.820 0.040 248);
  border-radius: var(--radius);
  background: var(--blue-soft);
  padding: clamp(18px, 3vw, 26px);
}

.auth-card h2 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.auth-card h3 {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.98rem;
}

.auth-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.login-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.login-tabs button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--blue-dark);
  font-weight: 800;
}

.login-tabs button:first-child {
  border-color: transparent;
  background: var(--gold);
  color: oklch(0.130 0.020 80);
}

.form-stack {
  display: grid;
  gap: 12px;
}

.form-stack label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-stack input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 13px;
  color: var(--ink);
  background: var(--panel);
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.origin-mark {
  display: grid;
  place-items: center;
  min-height: 220px;
  gap: 10px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, oklch(0.890 0.145 82) 0 16%, transparent 17%),
    radial-gradient(circle at 50% 45%, oklch(0.690 0.180 29) 0 25%, transparent 26%),
    var(--blue);
}

.origin-mark img {
  width: min(280px, 72%);
  filter: drop-shadow(0 6px 0 oklch(0.180 0.070 248 / 0.26));
}

.origin-mark-history {
  align-content: center;
}

.origin-mark span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  background: var(--gold);
  color: oklch(0.130 0.020 80);
  padding: 0 13px;
  font-size: 0.9rem;
  font-weight: 850;
}

.origin-timeline {
  display: grid;
  margin: 18px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  list-style: none;
}

.origin-timeline li {
  display: grid;
  grid-template-columns: minmax(98px, 0.28fr) minmax(0, 1fr);
  gap: clamp(14px, 3vw, 24px);
  padding: clamp(16px, 3vw, 22px);
  border-bottom: 1px solid var(--line);
}

.origin-timeline li:last-child {
  border-bottom: 0;
}

.origin-timeline time {
  align-self: start;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  padding: 0 12px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.origin-timeline h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.origin-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.origin-link-row a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  padding: 0 13px;
  font-size: 0.92rem;
  font-weight: 800;
}

.origin-link-row a:hover,
.origin-link-row a:focus-visible {
  border-color: oklch(0.700 0.120 253);
  background: var(--panel);
  outline: none;
}

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

.faq h2 {
  margin: 26px 0 6px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.18;
}

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

summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

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

summary::after {
  content: "+";
  color: var(--blue-dark);
  font-size: 1.25rem;
  line-height: 1;
}

.faq summary h3 {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  line-height: 1.28;
  font-weight: 800;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--muted);
}

.footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
  padding: 22px 16px;
}

.footer-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner a {
  color: var(--blue-dark);
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 16px;
}

:where(a, button, input, summary):focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.nav-links a:focus-visible {
  outline-offset: -3px;
}

.content-flow :where(p, li) a:not(.button):focus-visible,
.faq p a:focus-visible,
.skip-link:focus-visible {
  outline-color: var(--gold);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 760px) {
  .nav {
    width: calc(100% - 24px);
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 13px 0;
  }

  .brand img {
    width: 136px;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .nav-links a {
    min-width: 0;
    min-height: 44px;
    border-bottom: 2px solid var(--line);
    padding: 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links a::after {
    right: 0;
    bottom: -2px;
    left: 0;
    height: 2px;
  }

  .nav-links .apk-link {
    min-height: 44px;
    grid-column: 1 / -1;
    margin-left: 0;
    border-bottom: 0;
  }

  .stage {
    padding: 30px 12px 0;
  }

  .page-stage {
    padding-bottom: 40px;
  }

  .stage-inner {
    gap: 22px;
  }

  .hero-logo {
    width: min(310px, 90vw);
  }

  .contact-ctas {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 366px);
    max-width: 100%;
  }

  .contact-cta {
    width: 100%;
    min-width: 0;
    min-height: 76px;
    padding-left: 86px;
  }

  .contact-cta img {
    width: 82px;
    height: 82px;
  }

  .test-access-card {
    width: min(100%, 366px);
    grid-template-columns: 1fr;
    margin-top: -10px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 68px;
    min-height: 68px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp img {
    width: 72px;
    height: 72px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .content-panel {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    overflow: hidden;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 9vw, 2.25rem);
  }

  .content-head,
  .lead,
  .section-row,
  .section-row p {
    max-width: 100%;
  }

  .lead {
    overflow-wrap: anywhere;
  }

  .actions,
  .button {
    width: 100%;
  }

  .facts,
  .split-row,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .split-row > *,
  .device-panel,
  .status-panel,
  .login-panel,
  .register-panel,
  .auth-card,
  .game-gallery,
  .game-image-grid,
  .game-poster {
    min-width: 0;
  }

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

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

  .rtp-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .answer-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .origin-timeline li {
    grid-template-columns: 1fr;
  }

  .origin-timeline time {
    justify-self: start;
  }

  .origin-link-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
