﻿:root {
  --ink: #15211e;
  --muted: #5b665f;
  --line: #dbe3df;
  --paper: #f6f7f2;
  --surface: #ffffff;
  --green: #0a765d;
  --green-dark: #064f40;
  --gold: #c8932f;
  --gold-bright: #ffc133;
  --teal: #146b83;
  --dark: #10201e;
  --blue-deep: #0b1c31;
  --blue-dark: #123756;
  --blue-mid: #23658d;
  --panel: rgba(8, 27, 46, .78);
  --line-gold: rgba(255, 193, 51, .38);
  --red: #b0162a;
  --purple: #653cc2;
  --amber: #cc7907;
  --emerald: #0d8b68;
  --shadow: 0 14px 34px rgba(23, 33, 28, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--blue-deep);
  font-family: Arial, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-align: left;
}

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

.text-link {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 193, 51, .18);
  background: rgba(8, 27, 46, .94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
  color: #fff;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(11, 122, 75, .22);
  border-radius: 8px;
  background: #eef7f2;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(255, 255, 255, .82);
  font-weight: 900;
}

.main-nav a {
  padding: 9px 10px;
  border-radius: 6px;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--gold-bright);
  background: rgba(255, 255, 255, .08);
}

.menu-toggle,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  color: var(--green-dark);
}

.header-cta {
  color: #201505;
  border-color: var(--gold-bright);
  background: linear-gradient(135deg, var(--gold-bright), #f1a411);
  white-space: nowrap;
}

main {
  max-width: none;
  margin: 0 auto;
  background: var(--surface);
}

section {
  padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.18;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.25;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero,
.page-hero {
  background:
    linear-gradient(135deg, rgba(11, 122, 75, .10), rgba(15, 111, 123, .05)),
    #fff;
}

.hero,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .85fr);
  gap: 30px;
  align-items: center;
}

.page-hero.dark {
  color: #eef8f3;
  background:
    linear-gradient(135deg, rgba(11, 122, 75, .28), rgba(15, 111, 123, .12)),
    var(--dark);
}

.page-hero.dark .hero-lead {
  color: #dce8e2;
}

.hero-lead,
.section-title p {
  max-width: 900px;
  color: #394840;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
}

.hero-visual,
.content-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.hero-visual img,
.content-image img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef7f2;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
  max-width: 620px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.download-strip {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 18px;
  align-items: start;
  background: #f7faf8;
}

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

.quick-steps article,
.directory-grid article,
.topic-grid article,
.safety-grid article,
.faq-grid article,
.contact-card,
.download-card,
.download-facts div,
.update-table a,
.workflow-list li,
.trouble-grid article,
.next-grid a,
.faq-list article,
.seo-panel.wide {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-steps article {
  padding: 18px;
}

.quick-steps span,
.directory-grid article > span:not(.directory-icon) {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.quick-steps strong {
  display: block;
  margin: 6px 0 4px;
  font-size: 18px;
}

.quick-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.seo-panel.wide {
  margin: clamp(24px, 4vw, 44px) clamp(18px, 4vw, 56px);
  padding: clamp(24px, 4vw, 38px);
  border-bottom: 0;
}

.seo-panel p {
  max-width: 930px;
  color: var(--muted);
  font-size: 18px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(10, 118, 93, .18);
  border-radius: 8px;
  color: var(--green-dark);
  background: #eef7f2;
  font-weight: 900;
}

.intro-section,
.download-section,
.faq-section,
.updates-section,
.games-preview,
.article-section,
.latest-guides {
  background: #f7faf8;
}

.content-section,
.games-section,
.contact-section,
.seo-panel,
.trouble-section {
  background: #fff;
}

.section-title {
  max-width: 920px;
  margin-bottom: 28px;
}

.directory-grid,
.topic-grid,
.safety-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.directory-grid article,
.topic-grid article,
.safety-grid article,
.faq-grid article,
.contact-card {
  padding: 22px;
}

.directory-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .18s ease, box-shadow .18s ease;
}

.directory-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(23, 33, 28, .12);
}

.directory-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, .92), transparent 28%),
    linear-gradient(145deg, rgba(11, 122, 75, .08), rgba(216, 154, 32, .10));
  content: "";
}

.directory-card::after {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 126px;
  height: 126px;
  border: 18px solid rgba(216, 154, 32, .22);
  border-radius: 50%;
  content: "";
}

.directory-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 54px;
  margin-bottom: 18px;
  padding: 0 12px;
  color: #fff;
  border-radius: 14px;
  background: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 12px 28px rgba(11, 122, 75, .18);
}

.directory-games .directory-icon {
  color: #17211c;
  background: var(--gold);
}

.directory-safety .directory-icon {
  background: var(--teal);
}

.directory-updates .directory-icon {
  background: #2e4a7f;
}

.directory-download {
  background:
    linear-gradient(150deg, rgba(11, 122, 75, .11), rgba(255, 255, 255, .9)),
    #fff;
}

.directory-games {
  background:
    linear-gradient(150deg, rgba(216, 154, 32, .16), rgba(255, 255, 255, .9)),
    #fff;
}

.directory-safety {
  background:
    linear-gradient(150deg, rgba(15, 111, 123, .14), rgba(255, 255, 255, .9)),
    #fff;
}

.directory-updates {
  background:
    linear-gradient(150deg, rgba(46, 74, 127, .12), rgba(255, 255, 255, .9)),
    #fff;
}

.directory-grid p,
.topic-grid p,
.safety-grid p,
.faq-grid p,
.contact-card p,
.update-table em {
  color: var(--muted);
}

.directory-grid a,
.contact-card a {
  color: var(--green-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

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

.visual-board img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef7f2;
  box-shadow: var(--shadow);
  object-fit: cover;
}

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

.download-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
}

.primary-download {
  color: #eef8f3;
  border-color: rgba(11, 122, 75, .24);
  background:
    linear-gradient(135deg, rgba(11, 122, 75, .95), rgba(15, 111, 123, .88)),
    var(--green);
}

.download-card::after {
  position: absolute;
  right: -42px;
  top: -42px;
  width: 132px;
  height: 132px;
  border: 20px solid rgba(216, 154, 32, .16);
  border-radius: 50%;
  content: "";
}

.download-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 88% 14%, rgba(216, 154, 32, .18), transparent 30%),
    radial-gradient(circle at 16% 84%, rgba(11, 122, 75, .10), transparent 28%);
  content: "";
}

.primary-download p {
  color: #e4f1eb;
}

.step-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.step-visual {
  position: relative;
  display: block;
  width: 92px;
  height: 70px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #eef7f2;
  box-shadow: inset 0 0 0 1px rgba(11, 122, 75, .16);
}

.source-check {
  background: rgba(255, 255, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .26);
}

.source-check::before {
  position: absolute;
  left: 18px;
  top: 15px;
  width: 36px;
  height: 42px;
  border: 5px solid #fff;
  border-radius: 8px;
  content: "";
}

.source-check::after {
  position: absolute;
  right: 14px;
  bottom: 13px;
  width: 30px;
  height: 18px;
  border-left: 6px solid #f5c451;
  border-bottom: 6px solid #f5c451;
  content: "";
  transform: rotate(-45deg);
}

.file-download {
  background: #fff8e7;
}

.file-download::before {
  position: absolute;
  left: 31px;
  top: 12px;
  width: 30px;
  height: 34px;
  border: 6px solid var(--gold);
  border-top: 0;
  content: "";
}

.file-download::after {
  position: absolute;
  left: 31px;
  top: 18px;
  width: 30px;
  height: 30px;
  border-left: 7px solid var(--green);
  border-bottom: 7px solid var(--green);
  content: "";
  transform: rotate(-45deg);
}

.permission-check {
  background: #eef7fb;
}

.permission-check::before {
  position: absolute;
  left: 22px;
  top: 12px;
  width: 48px;
  height: 46px;
  border-radius: 8px 8px 18px 18px;
  background: var(--teal);
  content: "";
  clip-path: polygon(50% 0, 100% 18%, 100% 58%, 50% 100%, 0 58%, 0 18%);
}

.permission-check::after {
  position: absolute;
  left: 38px;
  top: 26px;
  width: 20px;
  height: 12px;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
  content: "";
  transform: rotate(-45deg);
}

.download-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.download-facts div {
  padding: 16px;
}

.download-facts strong,
.download-facts span {
  display: block;
}

.download-facts strong {
  color: var(--green);
}

.download-facts span {
  color: var(--muted);
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  padding: 18px;
}

.workflow-list span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  color: #fff;
  border-radius: 8px;
  background: var(--green);
  font-weight: 900;
}

.workflow-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.workflow-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.trouble-grid,
.next-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trouble-grid article,
.next-grid a {
  padding: 22px;
}

.trouble-grid p,
.next-grid em {
  color: var(--muted);
}

.trouble-grid a {
  color: var(--green-dark);
  font-weight: 900;
}

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

.next-grid span,
.next-grid strong,
.next-grid em {
  display: block;
}

.next-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.next-grid strong {
  margin: 6px 0;
  font-size: 20px;
}

.next-grid em {
  font-style: normal;
}

.guide-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 20px;
  align-items: start;
  background: #f7faf8;
}

.guide-body,
.guide-aside {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.guide-body {
  padding: clamp(22px, 4vw, 38px);
}

.guide-body h2 {
  margin-top: 30px;
  font-size: clamp(24px, 2.6vw, 34px);
}

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

.guide-body p {
  color: #31443a;
  font-size: 17px;
}

.guide-summary {
  padding: 18px;
  border-left: 5px solid var(--gold-bright);
  border-radius: 8px;
  background: #fff8e7;
  font-weight: 800;
}

.guide-steps,
.guide-trouble {
  margin: 20px 0;
}

.guide-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.guide-callout {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(10, 118, 93, .22);
  border-radius: 10px;
  color: #153229;
  background: #eef7f2;
}

.guide-aside {
  position: sticky;
  top: 92px;
  padding: 18px;
}

.guide-aside h2 {
  font-size: 22px;
}

.guide-aside a {
  display: block;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  background: #fff;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list article {
  padding: 0;
  overflow: hidden;
}

.faq-list button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-list button::after {
  color: var(--green);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.faq-list article[data-open="true"] button::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

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

.game-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  scroll-margin-top: 90px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.game-card:hover,
.game-card:target {
  border-color: rgba(11, 122, 75, .42);
  box-shadow: 0 18px 42px rgba(23, 33, 28, .12);
  transform: translateY(-3px);
}

.game-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #edf6f1;
}

.game-body {
  padding: 16px;
}

.game-card h2,
.game-card p {
  padding-inline: 16px;
}

.game-card h2 {
  margin-top: 0;
  font-size: 24px;
}

.game-card p {
  margin-bottom: 12px;
  color: var(--muted);
}

.game-body h2,
.game-body p {
  padding-inline: 0;
}

.game-guide {
  padding: 10px 12px;
  border-radius: 8px;
  background: #f1f7f4;
  color: #314339;
  font-size: 14px;
}

.game-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.game-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  text-align: center;
}

.game-actions a:first-child {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.game-actions a:only-child {
  grid-column: 1 / -1;
}

.login-register-card {
  background:
    linear-gradient(145deg, rgba(11, 122, 75, .12), rgba(216, 154, 32, .08)),
    #fff;
}

.safety-section,
.site-footer {
  color: #eef8f3;
  background: var(--dark);
}

.safety-section .safety-grid article {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
}

.safety-section p {
  color: #dce8e2;
}

.update-table {
  display: grid;
  gap: 10px;
}

.update-table a {
  display: grid;
  grid-template-columns: 130px minmax(180px, .7fr) 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
}

.update-table span {
  color: var(--green);
  font-weight: 900;
}

.update-table em {
  font-style: normal;
}

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

.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 56px);
}

.site-footer a {
  color: #fff;
  font-weight: 900;
}

.site-footer {
  max-width: none;
}

.eyebrow,
.directory-icon,
.next-grid span {
  letter-spacing: 0;
}

.showcase-hero,
.download-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(42px, 5vw, 58px);
  padding-bottom: clamp(42px, 5vw, 58px);
  color: #fff;
  border-bottom: 0;
  background:
    radial-gradient(circle at 76% 24%, rgba(14, 224, 170, .22), transparent 28%),
    radial-gradient(circle at 18% 30%, rgba(255, 193, 51, .18), transparent 28%),
    linear-gradient(180deg, rgba(10, 35, 61, .94), rgba(35, 101, 141, .84) 54%, rgba(10, 28, 49, .98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 30px),
    var(--blue-dark);
}

.showcase-hero::before,
.download-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 18, 33, .52), transparent 52%);
  content: "";
}

.showcase-hero > *,
.download-hero > * {
  position: relative;
  z-index: 1;
}

.showcase-hero .hero-copy {
  max-width: 700px;
}

.showcase-hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
}

.hero-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .84);
  font-weight: 900;
}

.hero-tabs a:hover {
  color: var(--gold-bright);
}

.hero-logo {
  width: clamp(112px, 15vw, 146px);
  height: auto;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 193, 51, .26);
  border-radius: 14px;
  background: #03080d;
  box-shadow: 0 22px 58px rgba(255, 193, 51, .22);
}

.showcase-hero .eyebrow,
.download-hero .eyebrow {
  color: var(--gold-bright);
}

.showcase-hero .hero-lead,
.download-hero .hero-lead {
  color: rgba(255, 255, 255, .86);
}

.showcase-hero .button.primary,
.download-hero .button.primary {
  color: #251706;
  border-color: var(--gold-bright);
  background: linear-gradient(135deg, var(--gold-bright), #f4a90d);
  box-shadow: 0 16px 36px rgba(244, 169, 13, .28);
}

.showcase-hero .button.secondary,
.download-hero .button.secondary {
  color: #fff;
  border-color: rgba(255, 193, 51, .34);
  background: rgba(255, 255, 255, .08);
}

.recommend-title {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin: 18px 0 0;
  padding: 8px 22px;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  color: var(--gold-bright);
  background: rgba(7, 20, 36, .72);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 18px 42px rgba(255, 193, 51, .14);
}

.phone-card {
  width: min(100%, 306px);
  min-height: 350px;
  justify-self: center;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line-gold);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(9, 33, 56, .92), rgba(4, 15, 27, .96));
  box-shadow: 0 36px 88px rgba(0, 0, 0, .42);
}

.phone-card::before {
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  content: "";
}

.phone-card > img,
.hero-visual.phone-card > img {
  width: 100%;
  max-width: 206px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 4px;
  background: #03080d;
  box-shadow: none;
}

.phone-card figcaption {
  display: grid;
  gap: 2px;
  color: #fff;
  text-align: center;
}

.phone-card strong {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
}

.phone-card span {
  color: rgba(255, 255, 255, .68);
}

.compact-phone {
  min-height: 330px;
}

.platform-showcase {
  color: #fff;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(35, 101, 141, .96), rgba(13, 35, 58, .98)),
    var(--blue-mid);
}

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

.platform-card {
  position: relative;
  min-height: 146px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 193, 51, .18);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .18);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 200, 66, .62);
  background: rgba(245, 167, 13, .13);
}

.platform-card-main {
  grid-row: span 2;
  min-height: 306px;
  grid-template-columns: 150px minmax(0, 1fr);
  border-color: rgba(255, 193, 51, .72);
  background:
    linear-gradient(180deg, rgba(255, 193, 51, .13), rgba(8, 27, 46, .82)),
    var(--panel);
}

.platform-card img {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  object-fit: contain;
}

.platform-card-main img {
  width: 150px;
  height: 150px;
}

.platform-card h2,
.platform-card h3 {
  color: #fff;
  margin-bottom: 4px;
}

.platform-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.45;
}

.platform-card > a {
  color: var(--gold-bright);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.rank-badge,
.hot-badge {
  position: absolute;
  top: 12px;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 12px;
  font-weight: 900;
  line-height: 1;
}

.rank-badge {
  left: 12px;
  color: #251706;
  background: var(--gold-bright);
}

.hot-badge {
  right: 12px;
  color: #fff;
  background: #df2433;
}

.stars {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-bright);
  font-size: 20px;
  text-shadow: 0 8px 22px rgba(255, 193, 51, .36);
}

.action-color-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.action-color-grid a {
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 22px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 18px 52px rgba(0, 0, 0, .18);
  transition: transform .22s ease, filter .22s ease;
}

.action-color-grid a:hover {
  transform: translateY(-4px);
  filter: saturate(1.14);
}

.action-color-grid strong,
.action-color-grid span,
.action-color-grid em {
  display: block;
}

.action-color-grid strong {
  font-size: 22px;
  line-height: 1.2;
}

.action-color-grid span {
  font-weight: 900;
}

.action-color-grid em {
  color: rgba(255, 255, 255, .82);
  font-style: normal;
}

.action-red {
  background: linear-gradient(135deg, var(--red), #86111f);
}

.action-purple {
  background: linear-gradient(135deg, var(--purple), #492697);
}

.action-amber {
  background: linear-gradient(135deg, #df900e, var(--amber));
}

.action-green {
  background: linear-gradient(135deg, var(--emerald), #08714f);
}

.download-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 193, 51, .15), transparent 24%),
    linear-gradient(180deg, #f6f9f7, #eef5f1);
}

.download-card {
  border-color: rgba(255, 193, 51, .28);
  background:
    linear-gradient(150deg, rgba(18, 55, 86, .96), rgba(8, 27, 46, .94)),
    var(--blue-dark);
  color: #fff;
}

.download-card p {
  color: rgba(255, 255, 255, .8);
}

.download-card .step-number {
  color: var(--gold-bright);
}

.download-card .step-visual {
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
}

.download-facts div {
  border-color: rgba(255, 193, 51, .22);
  background: #fff;
}

.latest-guides,
.games-preview {
  color: #fff;
  border-bottom: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 193, 51, .18), transparent 26%),
    linear-gradient(180deg, rgba(13, 35, 58, .98), rgba(35, 101, 141, .94)),
    var(--blue-dark);
}

.latest-guides .section-title p,
.games-preview .section-title p {
  color: rgba(255, 255, 255, .82);
}

.latest-guides .eyebrow,
.games-preview .eyebrow {
  color: var(--gold-bright);
}

.latest-guides .next-grid a {
  border-color: rgba(255, 193, 51, .22);
  background: rgba(8, 27, 46, .76);
  color: #fff;
  box-shadow: 0 18px 52px rgba(0, 0, 0, .2);
}

.latest-guides .next-grid span {
  color: var(--gold-bright);
}

.latest-guides .next-grid em {
  color: rgba(255, 255, 255, .72);
}

.intro-section {
  background:
    linear-gradient(180deg, #f7faf8, #edf5f1);
}

.visual-board img {
  border-color: rgba(255, 193, 51, .28);
  border-radius: 16px;
  background: rgba(8, 27, 46, .82);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .22);
}

.game-card,
.directory-card,
.topic-grid article,
.safety-grid article,
.faq-grid article,
.contact-card,
.workflow-list li,
.trouble-grid article,
.next-grid a,
.seo-panel.wide {
  border-radius: 10px;
}

@media (max-width: 980px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .site-header[data-menu-open="true"] .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero,
  .split,
  .download-strip,
  .download-layout {
    grid-template-columns: 1fr;
  }

  .directory-grid,
  .topic-grid,
  .safety-grid,
  .faq-grid,
  .download-facts,
  .platform-grid,
  .action-color-grid,
  .game-grid,
  .contact-grid,
  .quick-steps,
  .visual-board,
  .workflow-list,
  .trouble-grid,
  .next-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-article {
    grid-template-columns: 1fr;
  }

  .guide-aside {
    position: static;
  }

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

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

  .platform-card-main {
    grid-row: auto;
  }

  .platform-card {
    grid-template-columns: 86px minmax(0, 1fr) auto;
  }

  .platform-card img {
    width: 86px;
    height: 86px;
  }
}

@media (max-width: 640px) {
  .brand {
    white-space: normal;
  }

  .main-nav {
    gap: 2px;
  }

  .main-nav a {
    padding: 7px 8px;
    font-size: 14px;
  }

  section {
    padding-inline: 16px;
  }

  .directory-grid,
  .topic-grid,
  .safety-grid,
  .faq-grid,
  .download-facts,
  .platform-grid,
  .action-color-grid,
  .game-grid,
  .contact-grid,
  .quick-steps,
  .visual-board,
  .workflow-list,
  .trouble-grid,
  .next-grid {
    grid-template-columns: 1fr;
  }

  .guide-steps,
  .guide-trouble,
  .guide-link-grid {
    grid-template-columns: 1fr;
  }

  .hero-tabs {
    gap: 8px;
    font-size: 14px;
  }

  .hero-tabs a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border-radius: 999px;
    padding: 0 10px;
    background: rgba(255, 255, 255, .08);
  }

  .phone-card {
    width: 100%;
    min-height: 320px;
    padding: 22px;
  }

  .phone-card > img,
  .hero-visual.phone-card > img {
    max-width: 190px;
  }

  .platform-card,
  .platform-card-main {
    grid-template-columns: 74px minmax(0, 1fr) auto;
    min-height: 126px;
    padding: 14px;
  }

  .platform-card img,
  .platform-card-main img {
    width: 74px;
    height: 74px;
  }

  .platform-card-main {
    padding-top: 48px;
  }

  .action-color-grid a {
    min-height: 138px;
  }

  .update-table a {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

