@font-face {
  font-family: 'Changa';
  src: url('/fonts/Changa-Variable.ttf') format('truetype');
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: 'Bree Serif';
  src: url('/fonts/BreeSerif-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --midnight: #061426;
  --cobalt: #0d3157;
  --cobalt-light: #164875;
  --teal: #124c68;
  --cyan: #5fd5e5;
  --gold: #e9b44c;
  --ivory: #fffbef;
  --coral: #ef786a;
  --muted: #afc2d8;
  --line: rgba(95, 213, 229, 0.2);
  --line-strong: rgba(95, 213, 229, 0.42);
  --page: min(1180px, calc(100% - 48px));
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--midnight);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 80% 12%, rgba(18, 76, 104, 0.7), transparent 30%),
    linear-gradient(180deg, #061426 0%, #071a30 48%, #061426 100%);
  font-family: 'Changa', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

[dir='ltr'] body { font-family: Inter, ui-sans-serif, system-ui, sans-serif; }

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  inset-inline-start: 24px;
  top: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--midnight);
  background: var(--cyan);
  border-radius: 10px;
}

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

.ambient {
  position: fixed;
  z-index: -1;
  width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(95, 213, 229, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.ambient::before,
.ambient::after {
  content: '';
  position: absolute;
  inset: 14%;
  border: inherit;
  border-radius: inherit;
}

.ambient::after { inset: 30%; }
.ambient-one { inset-inline-end: -180px; top: 380px; }
.ambient-two { inset-inline-start: -220px; top: 1450px; }

.site-header {
  position: relative;
  z-index: 10;
  width: var(--page);
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand-name {
  font-family: 'Bree Serif', Georgia, serif;
  font-size: 23px;
  letter-spacing: 0.01em;
}

[dir='rtl'] .brand-name { font-family: 'Bree Serif', Georgia, serif; }
.brand-name span { color: var(--cyan); }

.brand-mark {
  display: block;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
}

.site-header nav { display: flex; gap: 30px; color: var(--muted); }
.site-header nav a { position: relative; font-size: 14px; font-weight: 650; }
.site-header nav a:hover { color: var(--ivory); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.language-link {
  min-width: 48px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.button {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #052936;
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(233, 180, 76, 0.17);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #f2c264;
  box-shadow: 0 18px 42px rgba(233, 180, 76, 0.24);
}

.button-small { min-height: 44px; padding: 0 18px; border-radius: 12px; font-size: 14px; }

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

.hero {
  min-height: 720px;
  padding: 82px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

[dir='rtl'] .kicker { letter-spacing: 0.08em; }

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

h1,
h2 {
  font-family: 'Bree Serif', Georgia, serif;
  font-weight: 400;
  line-height: 1.02;
}

[dir='rtl'] h1,
[dir='rtl'] h2,
[dir='rtl'] h3 { font-family: 'Changa', system-ui, sans-serif; }

h1 { margin-bottom: 28px; max-width: 650px; font-size: clamp(64px, 7.2vw, 104px); letter-spacing: -0.045em; }
[dir='rtl'] h1 { letter-spacing: -0.025em; line-height: 1.12; }

.hero-intro { max-width: 570px; margin-bottom: 36px; color: var(--muted); font-size: clamp(18px, 1.7vw, 22px); }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--cyan); font-weight: 750; }
.text-link:hover { color: var(--ivory); }

.hero-visual {
  position: relative;
  min-height: 610px;
  padding: 18px 6px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 18px);
  isolation: isolate;
  filter: drop-shadow(0 42px 55px rgba(0, 0, 0, 0.25));
}

.hero-visual::before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: 5% 0 0;
  background:
    radial-gradient(circle at 34% 44%, rgba(95, 213, 229, 0.2), transparent 34%),
    radial-gradient(circle at 72% 62%, rgba(233, 180, 76, 0.16), transparent 36%);
}

.device-shot {
  position: relative;
  flex: 0 1 min(31%, 198px);
  width: min(31%, 198px);
  margin: 0;
  padding: 7px;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.18), transparent 44%), #071a30;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.12);
}

.device-shot::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  width: 32%;
  height: 6px;
  transform: translateX(-50%);
  background: rgba(6, 20, 38, 0.8);
  border-radius: 999px;
}

.device-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 27px;
}

.device-shot figcaption {
  position: absolute;
  z-index: 3;
  inset-inline: 18px;
  bottom: 18px;
  min-height: 42px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ivory);
  background: rgba(6, 20, 38, 0.82);
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  backdrop-filter: blur(12px);
  font-size: 12px;
}

.device-shot figcaption span { color: var(--gold); font-family: 'Bree Serif', Georgia, serif; }
.device-shot figcaption strong { font-weight: 750; }
.device-shot-games { transform: translateY(-10px) rotate(-1.5deg); }
.device-shot-baloot { transform: translateY(10px); }
.device-shot-trix { transform: translateY(-2px) rotate(1.5deg); }

.proof-bar {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.proof-bar > div { min-height: 116px; padding: 24px 34px; display: flex; align-items: center; gap: 18px; }
.proof-bar > div + div { border-inline-start: 1px solid var(--line); }
.proof-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  color: var(--cyan);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.proof-bar span { color: var(--muted); font-size: 14px; font-weight: 700; }

.games,
.why,
.how { padding-block: 150px; }

.section-heading { max-width: 780px; margin-bottom: 64px; }
.section-heading.narrow { max-width: 690px; }
.section-heading h2 { margin-bottom: 24px; font-size: clamp(44px, 5.5vw, 72px); letter-spacing: -0.025em; }
.section-heading > p:last-child { max-width: 640px; color: var(--muted); font-size: 19px; }

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

.game-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), transparent 44%), var(--cobalt);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.game-card::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  inset-inline-end: -100px;
  bottom: -110px;
  border: 1px solid var(--line-strong);
  border-radius: 36%;
  transform: rotate(45deg);
}

.trix-card { background: linear-gradient(150deg, rgba(233, 180, 76, 0.07), transparent 45%), #10253f; }
.game-card-topline { display: flex; justify-content: space-between; color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; }
.trix-card .game-card-topline { color: var(--gold); }
.game-card h3 { margin-bottom: 18px; font-family: 'Bree Serif', Georgia, serif; font-size: 54px; font-weight: 400; line-height: 1; }
.game-card h3 span { margin-inline-start: 8px; color: var(--gold); font-family: 'Changa', system-ui, sans-serif; font-size: 24px; }
.game-card p { max-width: 490px; color: var(--muted); }
.game-card > a { position: relative; z-index: 2; min-height: 48px; display: flex; align-items: center; justify-content: space-between; color: var(--gold); border-top: 1px solid var(--line); font-weight: 800; }

.why { border-top: 1px solid var(--line); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 26px; overflow: hidden; }
.feature-grid article { min-height: 310px; padding: 34px; background: rgba(6, 20, 38, 0.88); }
.feature-number { color: var(--gold); font-family: 'Bree Serif', Georgia, serif; font-size: 23px; }
.feature-grid h3 { margin: 78px 0 16px; font-size: 23px; line-height: 1.3; }
.feature-grid p { color: var(--muted); font-size: 15px; }

.how { padding-top: 80px; }
.steps { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; counter-reset: none; }
.steps li { position: relative; padding-inline-end: 50px; display: flex; gap: 22px; }
.steps li:not(:last-child)::after { content: ''; position: absolute; top: 22px; inset-inline-end: 22px; width: 38px; border-top: 1px solid var(--line-strong); }
.steps li > span { flex: 0 0 44px; height: 44px; display: grid; place-items: center; color: var(--midnight); background: var(--cyan); border-radius: 50%; font-weight: 850; }
.steps h3 { margin: 4px 0 10px; font-size: 19px; }
.steps p { color: var(--muted); font-size: 14px; }

.contact {
  padding-block: 130px;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(48px, 7vw, 92px);
  border-top: 1px solid var(--line);
}

.contact-copy { position: sticky; top: 40px; }
.contact-copy h2 { margin-bottom: 24px; font-size: clamp(44px, 5vw, 70px); }
.contact-copy > p:last-child { max-width: 470px; color: var(--muted); font-size: 18px; }

.contact-form {
  padding: 34px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), transparent 46%), rgba(13, 49, 87, 0.7);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
}

.contact-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.contact-form label { display: grid; gap: 9px; color: var(--ivory); font-size: 13px; font-weight: 750; }
.contact-message-field { grid-column: 1 / -1; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  color: var(--ivory);
  background: rgba(6, 20, 38, 0.72);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form {
  --contact-control-height: 54px;
}

.contact-form input,
.contact-form select {
  min-height: var(--contact-control-height);
  height: var(--contact-control-height);
  padding: 0 16px;
}

.support-form-card .contact-form select,
.support-form-card .contact-form select option {
  font-family: 'Bree Serif', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.contact-form textarea { min-height: 160px; padding: 14px 16px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(175, 194, 216, 0.65); }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  background: rgba(6, 20, 38, 0.92);
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(95, 213, 229, 0.14);
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-submit-row { min-height: 56px; margin-top: 26px; display: flex; align-items: center; gap: 22px; }
.contact-submit-row .button { border: 0; cursor: pointer; font-family: inherit; font-size: 16px; }
.contact-submit-row .button:disabled { cursor: wait; opacity: 0.62; transform: none; }
.contact-status { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.contact-status[data-state='success'] { color: var(--cyan); }
.contact-status[data-state='error'] { color: var(--coral); }

.closing {
  margin-block: 50px 130px;
  padding: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background:
    radial-gradient(circle at 75% 10%, rgba(95, 213, 229, 0.18), transparent 35%),
    var(--cobalt);
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.closing h2 { margin-bottom: 16px; font-size: clamp(42px, 5vw, 70px); }
.closing p:not(.kicker) { margin-bottom: 0; color: var(--muted); }
.closing .button { flex: 0 0 auto; }

footer {
  width: var(--page);
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

footer > p { margin: 0; }
footer > p:last-child { justify-self: end; }
[dir='rtl'] footer > p:last-child { justify-self: start; }

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--cyan);
  font-weight: 700;
}

.footer-links a:hover,
.policy-footer a:hover { color: var(--ivory); }

/* First-party privacy, terms, and support pages. */
.policy-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(18, 76, 104, 0.82), transparent 30%),
    linear-gradient(180deg, #061426 0%, #071a30 46%, #061426 100%);
}

.policy-header {
  min-height: 88px;
}

.policy-header .language-link {
  min-width: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 750;
}

.policy-header .language-link::before {
  content: '◆';
  color: var(--gold);
  font-size: 9px;
}

.policy-shell {
  width: var(--page);
  margin: 0 auto;
  padding: 78px 0 116px;
}

.policy-hero {
  max-width: 820px;
  padding-bottom: 58px;
}

.policy-hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(56px, 8vw, 94px);
  letter-spacing: -0.035em;
}

.policy-intro {
  max-width: 660px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

.policy-updated {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.policy-updated::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(170px, 0.25fr) minmax(0, 0.75fr);
  align-items: start;
  gap: clamp(40px, 7vw, 94px);
}

.policy-contents {
  position: sticky;
  top: 28px;
  padding: 8px 0 0;
}

.policy-contents > p {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-contents ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-contents a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.policy-contents a:hover { color: var(--cyan); }

.policy-layout-support {
  display: block;
}

.support-topics {
  position: static;
  margin: 0 0 78px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-topics > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 0;
  color: var(--gold);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  list-style: none;
  text-transform: uppercase;
}

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

.support-topics > summary::after {
  content: '+';
  color: var(--cyan);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
}

.support-topics[open] > summary::after { content: '−'; }

.support-topic-list {
  display: grid;
  padding: 0;
}

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

.support-topic > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
  padding: 0;
  color: var(--ivory);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

.support-topic > summary::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.support-topic[open] > summary {
  color: var(--gold);
}

.support-topic[open] > summary::after { content: '−'; }

.support-topic-content { padding: 0; }

.support-topic .policy-section {
  padding: 0 0 30px;
  scroll-margin-top: 22px;
}

.support-topic .policy-section + .policy-section {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.support-topic .policy-section ul { margin-top: 0; }
.support-topic .policy-section p:last-child,
.support-topic .policy-section ul:last-child { margin-bottom: 0; }

.policy-document {
  min-width: 0;
  overflow-wrap: anywhere;
}

.policy-section {
  padding: 0 0 46px;
  scroll-margin-top: 30px;
}

.policy-section + .policy-section {
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.2;
}

.policy-section p,
.policy-section li {
  color: #d4dfeb;
  font-size: 17px;
  line-height: 1.85;
}

.policy-section p { margin: 0 0 18px; }
.policy-section ul { margin: 18px 0 0; padding-inline-start: 24px; }
.policy-section li { margin-bottom: 12px; padding-inline-start: 8px; }
.policy-section li::marker { color: var(--cyan); }

.support-router { margin: 0 0 72px; }

.support-search-field {
  display: grid;
  gap: 9px;
  max-width: 760px;
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-search-control {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  border-bottom: 1px solid var(--cyan);
}

.support-search-control > span { color: var(--gold); font-size: 21px; }

.support-search-field input {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 0;
  color: var(--ivory);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 16px;
  outline: 0;
}

.support-search-control:focus-within { border-color: var(--gold); }
.support-search-field input::placeholder { color: var(--muted); opacity: 1; }

.support-search-empty { margin: 0 0 18px; color: var(--gold); }
.support-route-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(210px, 0.32fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
  margin-top: 34px;
}

.support-guide-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.support-guide {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 24px;
  gap: 16px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
}
.support-guide[hidden] { display: none; }
.support-guide-number { color: var(--gold); font-family: 'Bree Serif', Georgia, serif; font-size: 22px; }
.support-guide h3 { margin: 0; font-size: 16px; }
.support-guide p { margin: 4px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.support-guide-link { color: var(--cyan); font-size: 21px; font-weight: 500; text-align: end; }
.support-guide-link:hover { color: var(--ivory); }

.support-route-aside { padding-top: 8px; }
.support-route-aside::before { content: ''; display: block; width: 36px; height: 1px; margin-bottom: 19px; background: var(--cyan); }
.support-route-title { margin: 0 0 13px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.support-route-aside > p:not(.support-route-title) { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.support-route-aside a { display: inline-block; margin-top: 20px; color: var(--cyan); font-size: 13px; font-weight: 750; }

.support-form-card {
  margin: 0;
  padding: 68px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(40px, 7vw, 88px);
  border-top: 1px solid var(--line-strong);
}

.support-form-copy h2 { margin: 0 0 18px; font-size: clamp(36px, 4vw, 54px); }
.support-form-copy > p:not(.kicker) { color: var(--muted); }
.support-form-card .contact-form {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.policy-footer {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.policy-footer > p { margin: 0; text-align: end; }

@media (max-width: 960px) {
  :root { --page: min(100% - 36px, 760px); }
  .site-header nav { display: none; }
  .hero { min-height: auto; padding-top: 68px; grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: 650px; }
  .hero-visual { min-height: 500px; }
  .game-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 230px; }
  .feature-grid h3 { margin-top: 42px; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .steps li { padding-inline-end: 0; }
  .steps li::after { display: none; }
  .contact { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .closing { align-items: flex-start; flex-direction: column; }
  .policy-layout { grid-template-columns: 1fr; gap: 42px; }
  .policy-contents { position: static; }
  .support-route-layout { grid-template-columns: 1fr; }
  .support-form-card { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --page: calc(100% - 28px); }
  body { font-size: 16px; }
  .site-header { min-height: 78px; }
  .brand-name { font-size: 20px; }
  .site-header .button-small { display: none; }
  .hero { padding: 56px 0 72px; }
  h1 { font-size: clamp(56px, 17vw, 74px); }
  [dir='rtl'] h1 { font-size: clamp(52px, 15vw, 70px); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .text-link { justify-content: center; min-height: 44px; }
  .hero-visual {
    min-height: 630px;
    margin-inline: -4px;
    padding: 16px 28px 28px;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    overflow-y: clip;
    scroll-padding-inline: 28px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .hero-visual::-webkit-scrollbar { display: none; }
  .device-shot {
    flex: 0 0 min(70vw, 278px);
    width: min(70vw, 278px);
    border-radius: 25px;
    scroll-snap-align: start;
  }
  .device-shot img { border-radius: 19px; }
  .device-shot::before { top: 11px; height: 4px; }
  .device-shot figcaption { inset-inline: 11px; bottom: 12px; padding: 6px 8px; font-size: 9px; }
  .device-shot-games,
  .device-shot-baloot,
  .device-shot-trix { transform: none; }
  .proof-bar { grid-template-columns: 1fr; }
  .proof-bar > div { min-height: 82px; padding: 18px 20px; }
  .proof-bar > div + div { border-inline-start: 0; border-top: 1px solid var(--line); }
  .games, .why, .how { padding-block: 100px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2 { font-size: 43px; }
  .game-card { min-height: 420px; padding: 26px; }
  .game-card h3 { font-size: 46px; }
  .contact { padding-block: 90px; gap: 34px; }
  .contact-copy h2 { font-size: 43px; }
  .contact-form { padding: 24px 20px; }
  .contact-fields { grid-template-columns: 1fr; }
  .contact-message-field { grid-column: auto; }
  .contact-submit-row { align-items: stretch; flex-direction: column; }
  .contact-submit-row .button { width: 100%; }
  .closing { margin-block: 20px 90px; padding: 34px 25px; }
  .closing .button { width: 100%; }
  footer { min-height: 220px; padding-block: 40px; grid-template-columns: 1fr; justify-items: start; }
  footer > p:last-child, [dir='rtl'] footer > p:last-child { justify-self: auto; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; gap: 14px 22px; }
  .policy-shell { padding: 60px 0 86px; }
  .policy-hero { padding-bottom: 52px; }
  .policy-hero h1 { font-size: clamp(50px, 15vw, 70px); }
  .policy-contents { padding-top: 0; }
  .support-topics { margin-bottom: 60px; }
  .support-topics > summary { min-height: 62px; }
  .support-topic > summary { min-height: 62px; }
  .policy-section { padding-bottom: 38px; }
  .policy-section + .policy-section { padding-top: 38px; }
  .policy-section p, .policy-section li { font-size: 16px; }
  .support-router { margin-bottom: 56px; }
  .support-guide { grid-template-columns: 38px minmax(0, 1fr) 20px; gap: 12px; min-height: 86px; }
  .support-form-card { padding-top: 54px; gap: 34px; }
  .policy-footer { align-items: flex-start; flex-direction: column; padding-block: 30px; }
  .policy-footer > p { text-align: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
