@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Poppins:wght@400;500;600;700;800&display=swap");

/* ==========================================================================
   Playtech Slot — Base & Variables
   ========================================================================== */
:root {
  --font-body: "Lato", "Segoe UI", sans-serif;
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --bg-base: #ffffff;
  --bg-alt: #e8effb;
  --bg-card: #ffffff;
  --border-subtle: #b9cbea;
  --text-primary: #091d42;
  --text-muted: #455570;
  --accent-amber: #1749d1;
  --accent-cyan: #123caf;
  --danger: #1e40af;
  --success: #0369a1;
  --radius: 10px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 14px;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-amber), var(--accent-cyan));
  border-radius: 2px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--text-primary);
}

p {
  color: var(--text-muted);
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 24px;
  height: 96px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

.logo:hover {
  text-decoration: none;
}

.logo-accent {
  color: var(--accent-amber);
}

.primary-nav ul {
  display: flex;
  gap: 28px;
  justify-content: center;
}

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

.nav-cta {
  padding: 6px 18px;
  font-size: 0.82rem;
  white-space: nowrap;
  border-radius: 999px;
  background: linear-gradient(135deg, #376cf0, var(--accent-amber));
  box-shadow: 0 4px 14px rgba(23, 73, 209, 0.3);
}

.nav-cta:hover {
  box-shadow: 0 6px 18px rgba(23, 73, 209, 0.45);
}

.primary-nav a {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.primary-nav a:hover {
  color: var(--accent-amber);
  text-decoration: none;
}

.primary-nav a.active {
  color: var(--accent-amber);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle .bar {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: var(--border-subtle);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent-cyan);
}

.breadcrumb li[aria-current="page"] {
  color: var(--text-primary);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 15% 20%, rgba(55, 108, 240, 0.12), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(23, 73, 209, 0.12), transparent 45%);
  text-align: center;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  text-align: left;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-media {
  flex-shrink: 0;
}

.hero-banner {
  width: 220px;
  height: 220px;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--text-primary), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.hero-content .hero-subheading {
  margin: 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-content .hero-cta {
  justify-content: flex-start;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--accent-amber);
  color: #ffffff;
  box-shadow: 0 0 0 rgba(23, 73, 209, 0);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(23, 73, 209, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.btn-outline:hover {
  box-shadow: 0 8px 24px rgba(55, 108, 240, 0.25);
}

.button-stack {
  display: flex;
  flex-direction: row;
  gap: 14px;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
  padding: 72px 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-cta {
  margin-top: 40px;
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.two-col p {
  margin-bottom: 16px;
}

.cta-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 420px;
}

.cta-box p {
  margin-bottom: 20px;
}

/* Tighter top/bottom padding for CTA boxes with no lead paragraph before the buttons */
.cta-box-tight {
  padding-top: 16px;
  padding-bottom: 16px;
  margin-top: -65px;
}

/* Center a CTA box vertically against a taller sibling column */
.cta-box-centered {
  align-self: center;
}

/* Centered standalone CTA card (e.g. Login page "Not Ready to Register?") */
#no-signup .cta-box {
  margin: 0 auto;
  max-width: 480px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(23, 73, 209, 0.08), 0 20px 40px -20px rgba(55, 108, 240, 0.3);
}

#no-signup .cta-box h3 {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

#no-signup .cta-box h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-amber), var(--accent-cyan));
  border-radius: 2px;
}

/* Point lists (About / Features) */
.point-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
}

.point-list li {
  border-left: 3px solid var(--accent-cyan);
  padding-left: 18px;
}

/* Section lead paragraph (intro line under an H2) */
.section-lead {
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: 32px;
  font-size: 1rem;
}

/* Spec list (key/value breakdown, e.g. APK download details) */
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.spec-list li {
  border-left: 3px solid var(--accent-cyan);
  padding: 8px 0 8px 18px;
  color: var(--text-muted);
}

.spec-list li strong {
  color: var(--text-primary);
  margin-right: 6px;
}

/* Numbered step list (install guides, how-to sequences) */
.steps-list {
  list-style: none;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.steps-list li {
  position: relative;
  padding-left: 44px;
  color: var(--text-muted);
  counter-increment: step-counter;
}

.steps-list li h3 {
  margin-bottom: 4px;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(23, 73, 209, 0.12);
  border: 1px solid rgba(23, 73, 209, 0.35);
  color: var(--accent-amber);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Neutral two-column tips grid (distinct from the verified/unverified comparison box) */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.tips-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.tips-grid-3 .cta-box {
  max-width: none;
}

.tips-col {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
}

.tips-col h3 {
  margin-bottom: 18px;
}

.tips-col:nth-child(1) h3 {
  color: var(--accent-cyan);
}

.tips-col:nth-child(2) h3 {
  color: var(--accent-amber);
}

.tips-col ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.tips-col:nth-child(1) ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
}

.tips-col:nth-child(2) ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent-amber);
}

/* ==========================================================================
   Game Cards
   ========================================================================== */
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.game-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-amber);
}

.game-card-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 16px;
}

#games .game-card {
  padding-bottom: 20px;
}

#games .game-card-header {
  min-height: auto;
  margin-bottom: 0;
}

.game-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 8px;
  min-height: 5.5rem;
}

.game-card-header h3 {
  margin-bottom: 0;
}

.category-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background-color: rgba(55, 108, 240, 0.12);
  border: 1px solid rgba(55, 108, 240, 0.3);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.rtp-badge {
  background-color: rgba(23, 73, 209, 0.12);
  color: var(--accent-amber);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(23, 73, 209, 0.35);
}

.game-card p {
  font-size: 0.9rem;
}

.game-card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.game-card-cta .cta-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.game-card-cta .cta-categories {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.game-card-cta a {
  color: var(--accent-amber);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ==========================================================================
   Demo List (numbered, text-first)
   ========================================================================== */
.demo-list {
  display: flex;
  flex-direction: column;
}

.demo-list-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.demo-list-item:first-child {
  padding-top: 0;
}

.demo-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.demo-list-index {
  flex-shrink: 0;
  width: 64px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, var(--accent-amber), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.demo-list-body {
  flex: 1;
  min-width: 0;
}

.demo-list-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.demo-list-header h3 {
  margin-bottom: 0;
}

.demo-list-body .category-badge {
  margin-bottom: 12px;
}

.demo-list-body p {
  max-width: 640px;
  font-size: 0.95rem;
}

/* ==========================================================================
   Comparison Box
   ========================================================================== */
.comparison-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comparison-col {
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border-subtle);
}

.comparison-col h3 {
  margin-bottom: 18px;
}

.comparison-col ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.comparison-verified {
  background-color: rgba(3, 105, 161, 0.06);
  border-color: rgba(3, 105, 161, 0.3);
}

.comparison-verified h3 {
  color: var(--success);
}

.comparison-verified li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.comparison-unverified {
  background-color: rgba(30, 64, 175, 0.06);
  border-color: rgba(30, 64, 175, 0.3);
}

.comparison-unverified h3 {
  color: var(--danger);
}

.comparison-unverified li::before {
  content: "\2715";
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

/* ==========================================================================
   Comparison Table
   ========================================================================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.94rem;
  color: var(--text-muted);
}

.comparison-table th {
  color: var(--text-primary);
  font-weight: 700;
  background-color: var(--bg-alt);
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  color: var(--text-primary);
  font-weight: 600;
  width: 22%;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

#faq h2 {
  text-align: center;
}

#faq h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.accordion-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
}

.accordion-icon {
  flex-shrink: 0;
  color: var(--accent-amber);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.accordion-panel p {
  padding-bottom: 20px;
}

.accordion-item.is-open .accordion-panel {
  max-height: 400px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  padding: 56px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.9rem;
  max-width: 340px;
}

.footer-col h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--accent-cyan);
}

.footer-age-notice {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  margin-bottom: 24px;
}

.age-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--danger);
  color: var(--danger);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-age-notice p {
  font-size: 0.85rem;
  max-width: 780px;
}

.footer-age-notice strong {
  color: var(--text-primary);
}

.footer-disclaimer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  margin-bottom: 24px;
}

.footer-disclaimer h2 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  padding-bottom: 0;
}

.footer-disclaimer h2::after {
  display: none;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  max-width: 780px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

/* ==========================================================================
   Hero Freshness Tag & Highlight (About / guide pages)
   ========================================================================== */
.freshness-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background-color: rgba(55, 108, 240, 0.12);
  border: 1px solid rgba(55, 108, 240, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 .hl {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--accent-amber);
  color: var(--accent-amber);
}

/* ==========================================================================
   Article Cards (long-form informational pages)
   ========================================================================== */
.article-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 40px;
}

.article-card-centered {
  text-align: center;
}

.article-card-centered h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.article-card-centered .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.age-notice {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.age-notice p {
  font-size: 0.9rem;
}

.warning-box {
  background-color: rgba(30, 64, 175, 0.06);
  border: 1px solid rgba(30, 64, 175, 0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
}

.warning-box p {
  color: var(--text-primary);
  font-size: 0.92rem;
}

.warning-box strong {
  color: var(--danger);
}

.point-list-spaced {
  margin-top: 32px;
}

/* ==========================================================================
   Responsive — Tablet
   ========================================================================== */
@media (max-width: 1024px) {
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .point-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Responsive — Mobile
   ========================================================================== */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content .hero-cta {
    justify-content: center;
  }

  .hero-content .hero-subheading {
    margin: 0 auto;
  }

  .demo-list-item {
    gap: 16px;
    padding: 24px 0;
  }

  .demo-list-index {
    width: 40px;
    font-size: 1.6rem;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    column-gap: 12px;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions {
    gap: 12px;
  }

  .nav-cta {
    padding: 5px 14px;
    font-size: 0.75rem;
  }

  .primary-nav {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background-color: var(--bg-base);
    border-bottom: 1px solid var(--border-subtle);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .primary-nav.is-open {
    max-height: 400px;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }

  .primary-nav li {
    border-bottom: 1px solid var(--border-subtle);
  }

  .primary-nav li:last-child {
    border-bottom: none;
  }

  .primary-nav a {
    display: block;
    padding: 14px 0;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .comparison-box {
    grid-template-columns: 1fr;
  }

  .comparison-table-wrap {
    overflow-x: auto;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

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

  .footer-col ul {
    gap: 10px;
  }

  .footer-age-notice {
    align-items: flex-start;
  }

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

  .hero {
    padding: 64px 0 48px;
  }

  .section {
    padding: 56px 0;
  }

  .article-card {
    padding: 28px;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Editorial technology direction. All content and image assets retained. */
:root {
  --bg-base: #fff;
  --bg-alt: #e8effb;
  --bg-card: #fff;
  --border-subtle: #b9cbea;
  --text-primary: #091d42;
  --text-muted: #455570;
  --accent-amber: #1749d1;
  --accent-cyan: #091d42;
  --danger: #091d42;
  --success: #091d42;
  --radius: 0;
  --max-width: 1440px
}

html {
  scroll-padding-top: 100px
}

body {
  font-family: var(--font-body)
}

::selection {
  background: #1749d1;
  color: #fff
}

.container {
  padding-inline: 64px
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -.025em
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  padding: 0;
  line-height: 1.1;
  margin-bottom: 48px
}

h2::after {
  display: none
}

h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -.025em
}

p {
  line-height: 1.75
}

a {
  color: inherit
}

p a {
  text-decoration: underline;
  text-underline-offset: 4px
}

a:hover {
  color: #123caf
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #1749d1;
  outline-offset: 6px
}

img {
  max-width: 100%
}

.site-header {
  background: #fff;
  backdrop-filter: none;
  border-bottom: 1px solid #091d42
}

.header-inner {
  height: 100px
}

.site-logo {
  width: 175px;
  height: auto;
  display: block
}

.primary-nav a {
  font: 500 .875rem var(--font-heading);
  letter-spacing: .055em;
  text-transform: uppercase
}

.primary-nav ul {
  gap: 32px
}

.btn {
  border-radius: 0;
  padding: 16px 22px;
  font-size: .875rem;
  border-width: 1px;
  box-shadow: none !important;
  transition: background .2s, color .2s
}

.btn:hover {
  transform: none
}

.btn-primary,
.nav-cta {
  background: #1749d1;
  color: #fff;
  border-color: #1749d1
}

.btn-primary:hover {
  background: #091d42;
  border-color: #091d42;
  color: #fff
}

.btn-outline {
  color: inherit;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding-inline: 0
}

.btn-outline:hover {
  color: #123caf
}

.hero-cta {
  justify-content: flex-start;
  gap: 30px;
  margin-top: 32px
}

.nav-cta {
  padding: 13px 23px
}

.hero {
  padding: 88px 0 96px;
  background: #fff;
  text-align: left;
  overflow: hidden
}

.hero.hero-background {
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, .75) 0%,
      rgba(255, 255, 255, .25) 45%,
      rgba(255, 255, 255, .03) 100%),
    url('/images/background.webp') center / cover no-repeat;
}

.hero-background .hero-inner {
  grid-template-columns: minmax(0, 1fr);
}

.hero-background .hero-content {
  max-width: 850px;
}

@media (max-width: 768px) {
  .hero.hero-background {
    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, .62) 0%,
        rgba(255, 255, 255, .58) 100%),
      url('/images/background.webp') center / cover no-repeat;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center
}

.hero h1 {
  font-size: clamp(3rem, 5.7vw, 4.5rem);
  line-height: 1.045;
  letter-spacing: -.06em;
  background: none;
  color: #091d42;
  -webkit-text-fill-color: currentColor;
  margin: 0 0 32px;
  max-width: 1000px;
  text-wrap: balance
}

.hero-subheading {
  margin: 0;
  max-width: 730px;
  font-size: 1rem
}

.hero-content .hero-subheading {
  max-width: 570px
}

.hero-media {
  background: #e8effb;
  border-top: 1px solid #091d42;
  border-bottom: 1px solid #091d42;
  padding: 64px 30px;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 5px;
  background: #1749d1
}

.hero-banner {
  width: 100%;
  max-width: 340px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border: 0;
  border-radius: 0
}

.hero:not(:has(.hero-inner)) {
  padding-block: 76px
}

.hero h1 .hl {
  -webkit-text-fill-color: currentColor;
  color: inherit
}

.section {
  padding: 100px 0;
  border-top: 1px solid var(--border-subtle)
}

.section-alt {
  background: #e8effb
}

.point-list {
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: entry
}

.point-list li {
  counter-increment: entry;
  position: relative;
  border-left: 0;
  border-top: 1px solid var(--border-subtle);
  padding: 26px 0 26px 56px
}

.point-list li::before {
  content: counter(entry, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 27px;
  color: #123caf;
  font: 13px "SFMono-Regular", Consolas, monospace
}

.point-list h3 {
  margin-bottom: 12px
}

.point-list p {
  max-width: 680px
}

.two-col {
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 80px
}

.cta-box,
.tips-col,
.comparison-col,
.article-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
  padding: 0
}

.cta-box {
  border-top: 3px solid #1749d1;
  padding-top: 26px;
  width: 100%;
  max-width: none
}

.cta-box-tight {
  margin-top: 0
}

.button-stack {
  align-items: flex-start;
  gap: 20px
}

.spec-list {
  gap: 0
}

.spec-list li {
  border-left: 0;
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0
}

.steps-list {
  gap: 24px
}

.steps-list li {
  padding-left: 48px
}

.steps-list li::before {
  border: 0;
  border-radius: 0;
  background: none;
  justify-content: flex-start;
  font: 20px "SFMono-Regular", Consolas, monospace;
  color: #123caf
}

.tips-grid {
  gap: 48px
}

.tips-col,
.comparison-col {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px
}

.tips-col:nth-child(2) h3 {
  color: #091d42
}

.comparison-verified,
.comparison-unverified,
.warning-box {
  background: transparent;
  border-color: var(--border-subtle)
}

.warning-box {
  border-left: 3px solid #1749d1
}

.article-card-centered {
  text-align: left
}

.article-card-centered .section-lead {
  margin-left: 0
}

.comparison-table {
  background: transparent
}

.comparison-table th {
  background: #091d42;
  color: #fff
}

.comparison-table th:first-child {
  color: #fff
}

.comparison-table td {
  padding-block: 22px
}

.comparison-table-wrap {
  overflow-x: auto
}

.category-badge,
.rtp-badge,
.freshness-tag {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: inherit;
  font: 13px/1.5 "SFMono-Regular", Consolas, monospace
}

.freshness-tag {
  border-bottom: 1px solid;
  padding-bottom: 8px
}

.demo-list-index {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #123caf;
  font-weight: 400
}

.demo-list-item {
  padding: 36px 0
}

.demo-list-header h3 {
  font-size: 2rem
}

.game-grid {
  gap: 42px 28px
}

.game-card {
  padding: 0 !important;
  background: transparent;
  border: 0;
  border-radius: 0
}

.game-card:hover {
  transform: none
}

.game-card-thumb {
  border-radius: 0
}

.game-card-header {
  flex-direction: column;
  min-height: 0;
  gap: 12px;
  margin-bottom: 18px
}

.game-card h3 {
  font-size: 1.6rem
}

.game-card p {
  font-size: 1rem
}

.game-card-cta {
  border-top: 1px solid #091d42 !important;
  padding-top: 24px !important
}

.section-cta {
  text-align: left
}

body.editorial-home #about>.container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px
}

body.editorial-home #about h2 {
  margin: 0
}

body.editorial-home #about .point-list li:first-child {
  border-top: 0;
  padding-top: 0
}

body.editorial-home #about .point-list li:first-child::before {
  top: 0
}

body.editorial-home #features {
  --text-primary: #fff;
  --text-muted: #d7e5ff;
  --border-subtle: #ffffff40;
  background: #091d42;
  color: #fff
}

body.editorial-home #features h2 {
  max-width: 640px
}

body.editorial-home #features .point-list {
  grid-template-columns: 1fr 1fr;
  gap: 0 70px
}

body.editorial-home #features .point-list li::before {
  color: #a8c8ff
}

body.editorial-home #features a {
  color: #fff
}

body.editorial-home #apk {
  background: #e8effb
}

body.editorial-home #apk h2 {
  max-width: 800px
}

body.editorial-home #login .section-lead {
  font-size: 1rem;
  line-height: 1.65
}

/* Existing game entries become the interactive visual index. */
body.editorial-home #games {
  background: #fff
}

body.editorial-home #games .game-grid {
  position: relative;
  display: block;
  min-height: 400px;
  padding-right: 46%;
  counter-reset: games
}

body.editorial-home #games .game-card {
  counter-increment: games;
  min-height: 100px;
  border-top: 1px solid #091d42;
  padding: 25px 28px 25px 50px !important;
  cursor: pointer
}

body.editorial-home #games .game-card:last-child {
  border-bottom: 1px solid #091d42
}

body.editorial-home #games .game-card::before {
  content: counter(games, decimal-leading-zero);
  position: absolute;
  left: 0;
  font: 13px/2 "SFMono-Regular", Consolas, monospace
}

body.editorial-home #games .game-card-header {
  margin: 0;
  gap: 8px
}

body.editorial-home #games .game-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem)
}

body.editorial-home #games .game-card-thumb {
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  height: 100%;
  max-height: 460px;
  object-fit: contain;
  background: #e8effb;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .4s ease;
  transform: translateX(12px);
  margin: 0
}

body.editorial-home #games .game-card.is-active .game-card-thumb {
  opacity: 1;
  visibility: visible;
  transform: none
}

body.editorial-home #games .game-card.is-active::before {
  color: #123caf
}

body.editorial-home #games .game-card.is-active {
  border-top-color: #1749d1
}

body.editorial-home #games .game-card.is-active h3 {
  text-decoration: underline;
  text-decoration-color: #1749d1;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px
}

#faq>.container {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 70px
}

#faq h2 {
  text-align: left
}

.accordion {
  width: 100%;
  max-width: none;
  gap: 0
}

.accordion-item {
  border: 0;
  border-top: 1px solid var(--border-subtle);
  background: none
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--border-subtle)
}

.accordion-trigger {
  padding: 24px 0;
  font: 500 1.1rem/1.5 var(--font-heading)
}

.accordion-panel {
  padding: 0
}

.accordion-item.is-open .accordion-panel {
  max-height: none
}

.accordion-icon {
  color: #123caf
}

.site-footer {
  background: #f1f5fc;
  color: #091d42;
  padding: 72px 0 28px;
  --text-primary: #091d42;
  --text-muted: #455570;
  --border-subtle: #c2d1eb;
}

.site-footer .site-logo {
  border-radius: 10px;
}

.site-footer .footer-col h3 {
  color: #091d42;
}

.site-footer .footer-col a {
  font-size: 1rem
}

.footer-brand p {
  max-width: 450px
}

.footer-copy {
  text-align: left
}

.site-footer .age-badge {
  border-color: #123caf;
  color: #123caf;
}

.footer-top {
  gap: 80px
}

.footer-disclaimer h2 {
  font-size: 1.1rem;
  letter-spacing: 0
}

.breadcrumb {
  font-family: var(--font-body)
}

.breadcrumb li:not(:last-child)::after {
  color: #091d42
}

.site-footer .footer-col a:hover {
  color: #123caf;
}

#no-signup .cta-box {
  margin: 0;
  max-width: 650px;
  padding: 30px 0;
  text-align: left
}

#no-signup .cta-box h3::after {
  display: none
}

@media(min-width:1500px) {
  .hero {
    padding-block: 110px
  }

  .hero-media {
    min-height: 460px
  }
}

@media(max-width:1100px) {
  .container {
    padding-inline: 36px
  }

  .hero-inner {
    gap: 32px;
    grid-template-columns: 1.5fr 1fr
  }

  .hero-media {
    padding: 40px 20px
  }

  .primary-nav ul {
    gap: 20px
  }

  .site-logo {
    width: 145px
  }

  .two-col {
    gap: 45px
  }

  body.editorial-home #about>.container {
    gap: 50px
  }

  #faq>.container {
    gap: 40px
  }
}

@media(max-width:768px) {
  html {
    scroll-padding-top: 80px
  }

  .container {
    padding-inline: 24px
  }

  .header-inner {
    height: 80px
  }

  .site-logo {
    width: 130px
  }

  .nav-cta {
    font-size: 12px;
    padding: 10px 14px
  }

  .nav-toggle {
    width: 28px;
    height: 20px
  }

  .primary-nav {
    position: fixed;
    top: 80px;
    bottom: 0;
    max-height: none;
    background: #091d42;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform .25s ease, visibility .25s;
    overflow: auto
  }

  .primary-nav.is-open {
    max-height: none;
    visibility: visible;
    transform: none
  }

  .primary-nav ul {
    padding: 35px 24px
  }

  .primary-nav a {
    color: #fff;
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 400;
    letter-spacing: -.03em;
  }

  .primary-nav li {
    border-color: #ffffff40
  }

  .hero {
    padding: 48px 0 56px
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    text-align: left;
    gap: 40px
  }

  .hero h1 {
    font-size: clamp(2.8rem, 9vw, 4.5rem);
    margin-bottom: 24px
  }

  .hero-content .hero-cta {
    justify-content: flex-start
  }

  .hero-content .hero-subheading {
    margin: 0
  }

  .hero-media {
    padding: 30px;
    min-height: 280px;
    max-height: 350px
  }

  .hero-banner {
    max-width: 250px
  }

  .hero-cta {
    gap: 20px
  }

  .section {
    padding: 64px 0
  }

  h2 {
    margin-bottom: 32px;
    font-size: 2.5rem
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .point-list li {
    padding-left: 42px
  }

  .tips-grid {
    gap: 28px
  }

  body.editorial-home #about>.container {
    grid-template-columns: 1fr;
    gap: 36px
  }

  body.editorial-home #features .point-list {
    grid-template-columns: 1fr
  }

  body.editorial-home #login .section-lead {
    font-size: 1.15rem
  }

  .game-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px
  }

  .game-card h3 {
    font-size: 1.35rem
  }

  #faq>.container {
    grid-template-columns: 1fr;
    gap: 0
  }

  .footer-top {
    gap: 40px 24px
  }

  .site-footer {
    padding-top: 55px
  }

  .article-card {
    padding: 0
  }

  .hero:not(:has(.hero-inner)) {
    padding-block: 48px
  }

  body.editorial-home #games .game-grid {
    padding-right: 0;
    min-height: 0
  }

  body.editorial-home #games .game-card {
    position: relative;
    padding: 24px 0 24px 42px !important;
    min-height: 130px
  }

  body.editorial-home #games .game-card-header {
    padding-right: 100px;
    min-height: 76px;
    justify-content: center
  }

  body.editorial-home #games .game-card h3 {
    font-size: 1.5rem
  }

  body.editorial-home #games .game-card-thumb {
    top: 24px;
    width: 80px;
    height: 80px;
    padding: 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: height .3s, width .3s
  }

  body.editorial-home #games .game-card.is-active {
    padding-bottom: 250px !important
  }

  body.editorial-home #games .game-card.is-active .game-card-thumb {
    top: 110px;
    width: 100%;
    height: 220px;
    padding: 15px
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px;
    min-width: 130px
  }

  .comparison-box {
    gap: 32px
  }

  .demo-list-header h3 {
    font-size: 1.5rem
  }

  .accordion-trigger {
    font-size: 1rem
  }
}

@media(max-width:400px) {
  .container {
    padding-inline: 18px
  }

  .header-actions {
    gap: 10px
  }

  .site-logo {
    width: 115px
  }

  .hero-cta {
    flex-direction: row;
    align-items: center
  }

  .btn {
    padding: 14px 18px
  }

  .btn-outline {
    padding-inline: 0
  }

  .game-grid {
    grid-template-columns: 1fr
  }

  .hero h1 {
    font-size: 2.8rem
  }

  .nav-cta {
    padding: 10px 12px
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important
  }
}

/* Reserve mobile preview space so scroll activation never shifts the index. */
@media(max-width:768px) {
  body.editorial-home #games .game-card {
    min-height: 350px;
    padding-bottom: 250px !important
  }

  body.editorial-home #games .game-card-header {
    padding-right: 0
  }

  body.editorial-home #games .game-card-thumb {
    top: 110px;
    width: 100%;
    height: 220px;
    padding: 15px;
    opacity: .45
  }

  body.editorial-home #games .game-card.is-active .game-card-thumb {
    opacity: 1
  }
}

/* RTP meters use each slot's displayed percentage on a 0–100 scale. */
.rtp-progress {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #d7e5ff;
}

.rtp-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #123caf, #376cf0);
}

@media(max-width:768px) {
  body.editorial-home #games .game-card {
    min-height: 390px;
  }

  body.editorial-home #games .game-card-thumb {
    top: 150px;
  }
}

/* Feature story: labelled navigation and a quiet, high-contrast reading panel. */
body.editorial-home #features {
  background: #06152f;
  --text-muted: #d0dfff;
}

body.editorial-home #features h2 {
  max-width: 780px;
  margin-bottom: 40px;
}

.feature-numbers {
  display: none;
}

.feature-panel {
  border: 1px solid #ffffff30;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}

.feature-panel summary {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 24px;
  font-size: 1.125rem;
  font-weight: 500;
  list-style: none;
}

.feature-panel summary::-webkit-details-marker {
  display: none;
}

.feature-panel summary::after {
  content: '+';
  margin-left: auto;
  color: #a8c8ff;
  font-size: 1.5rem;
}

.feature-panel[open] summary::after {
  content: '−';
}

.feature-panel summary span {
  color: #a8c8ff;
  font-size: .875rem;
  font-variant-numeric: tabular-nums;
}

.feature-copy {
  padding: 32px;
  background: #fff;
  color: #06152f;
}

.feature-panel-index {
  display: block;
  color: #345383;
  font: 500 .875rem/1.5 var(--font-heading);
  letter-spacing: .15em;
  margin-bottom: 28px;
}

.feature-copy h3 {
  color: #06152f;
  font-size: clamp(1.3rem, 2.5vw, 2.3rem);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -.05em;
}

.feature-copy p {
  max-width: 560px;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #455570;
}

body.editorial-home #features .feature-copy a {
  color: #123caf;
}

.feature-panel summary:focus-visible {
  outline: 2px solid #a8c8ff;
  outline-offset: -5px;
}

@media(min-width:769px) {
  .is-enhanced .feature-stage {
    position: static;
    display: grid;
    grid-template-columns: minmax(210px, .8fr) minmax(0, 2fr);
    gap: clamp(24px, 5vw, 80px);
    align-items: center;
  }

  .is-enhanced .feature-numbers {
    display: flex;
    flex-direction: column;
  }

  .feature-numbers button {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 12px;
    font: inherit;
    text-align: left;
    padding: 25px 12px;
    color: #bed2f5;
    border: 0;
    border-bottom: 1px solid #ffffff26;
    background: transparent;
    cursor: pointer;
    transition: color .2s, background .2s;
  }

  .feature-nav-number {
    font-size: .875rem;
    font-variant-numeric: tabular-nums;
    opacity: .75;
  }

  .feature-nav-label {
    font-size: 1rem;
    line-height: 1.4;
  }

  .feature-nav-arrow {
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity .2s, transform .2s;
  }

  .feature-numbers button[aria-current] {
    color: #fff;
    border-bottom-color: #a8c8ff;
  }

  .feature-numbers button[aria-current] .feature-nav-number {
    color: #a8c8ff;
    opacity: 1;
  }

  .feature-numbers button[aria-current] .feature-nav-arrow {
    opacity: 1;
    transform: none;
  }

  .feature-numbers button:hover {
    color: #fff;
    background: #ffffff08;
  }

  .feature-numbers button:focus-visible {
    outline-color: #a8c8ff;
    outline-offset: 4px;
  }

  .is-enhanced .feature-panel {
    border: 0;
    margin: 0;
    border-radius: 20px;
    box-shadow: 0 24px 64px #06152f35;
  }

  .is-enhanced .feature-panel summary {
    display: none;
  }

  .is-enhanced .feature-panel:not([open]) {
    display: none;
  }

  .is-enhanced .feature-copy {
    padding: clamp(32px, 4vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 5px solid #78aaff;
  }

  .is-enhanced .feature-panel[open] .feature-copy>* {
    animation: feature-reveal .24s ease-out both;
  }
}

@keyframes feature-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:768px) {
  body.editorial-home #features h2 {
    margin-bottom: 32px;
  }

  .feature-panel[open] {
    border-color: #a8c8ff;
  }

  .feature-panel[open] summary {
    background: #173b78;
  }

  .feature-copy {
    padding: 24px;
  }

  .feature-copy h3,
  .feature-panel-index {
    display: none;
  }
}

@media(prefers-reduced-motion:reduce) {

  .feature-numbers button,
  .feature-nav-arrow {
    transition: none;
  }

  .is-enhanced .feature-panel[open] .feature-copy>* {
    animation: none;
  }
}

/* FAQ question index. */
#faq {
  background: #e8effb;
}

#faq>.container {
  grid-template-columns: minmax(240px, .85fr) minmax(0, 1.65fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 140px;
}

.faq-eyebrow {
  display: block;
  font-size: .75rem;
  letter-spacing: .16em;
  color: #123caf;
  font-weight: 700;
  margin-bottom: 24px;
}

#faq h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  line-height: 1.04;
  margin-bottom: 24px;
}

#faq h2 span {
  color: #1749d1;
}

.faq-intro>p {
  max-width: 290px;
  font-size: 1rem;
}

.faq-count {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #b9cbea;
  margin-top: 48px;
  padding-top: 20px;
  max-width: 290px;
}

.faq-count strong {
  font-size: 5rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.07em;
  color: #365fb2;
}

.faq-count span {
  font-size: .875rem;
  line-height: 1.5;
  color: #455570;
}

#faq .accordion {
  gap: 10px;
}

#faq .accordion-item {
  border: 1px solid #c2d1eb;
  border-radius: 4px 20px 20px 4px;
  background: #fff;
  transition: background .2s, border-color .2s;
}

#faq .accordion-trigger {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 32px;
  gap: 16px;
  padding: 26px;
  align-items: start;
}

.faq-number {
  font-size: .8125rem;
  line-height: 1.5;
  color: #486897;
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}

.faq-question {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: -.015em;
}

.faq-category {
  display: block;
  color: #345383;
  font-size: .6875rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}

#faq .accordion-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #b9cbea;
  border-radius: 50%;
  font-size: 1.25rem;
}

#faq .accordion-trigger:hover {
  background: #1749d108;
}

#faq .accordion-trigger:focus-visible {
  outline: 2px solid #78aaff;
  outline-offset: -5px;
}

#faq .accordion-item.is-open {
  background: #091d42;
  border-color: #091d42;
  box-shadow: 0 12px 30px #091d4212;
}

#faq .is-open .accordion-trigger {
  color: #fff;
}

#faq .is-open .faq-category,
#faq .is-open .faq-number {
  color: #a8c8ff;
}

#faq .is-open .accordion-icon {
  color: #091d42;
  border-color: #fff;
  background: #fff;
}

#faq .accordion-panel {
  padding: 0 74px 0 72px;
  transition: none;
}

#faq .accordion-panel[hidden] {
  display: none;
}

#faq .accordion-panel p {
  border-top: 1px solid #ffffff30;
  padding: 20px 0 28px;
  color: #d7e5ff;
  font-size: 1rem;
  line-height: 1.8;
}

#faq .accordion-panel a {
  color: #fff;
}

@media(max-width:900px) {
  #faq>.container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-intro {
    position: static;
  }

  .faq-count {
    display: none;
  }

  .faq-intro>p {
    max-width: 440px;
  }
}

@media(max-width:480px) {
  #faq .accordion-trigger {
    grid-template-columns: 24px minmax(0, 1fr) 28px;
    gap: 10px;
    padding: 20px 16px;
  }

  .faq-question {
    font-size: 1rem;
  }

  #faq .accordion-icon {
    width: 28px;
    height: 28px;
  }

  #faq .accordion-panel {
    padding: 0 20px 0 50px;
  }
}

@media(prefers-reduced-motion:reduce) {

  #faq .accordion-item,
  #faq .accordion-icon {
    transition: none;
  }
}

/* Four-quarter About explorer. */
body.editorial-home #about>.container {
  display: block;
}

body.editorial-home #about h2 {
  margin-bottom: 48px;
}

.about-explorer {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  max-width: 1080px;
  margin-inline: auto;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.about-wheel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 1fr);
  aspect-ratio: 1;
  width: 100%;
  max-width: 440px;
  border: 6px solid #fff;
  outline: 1px solid #c2d1eb;
  border-radius: 50%;
  overflow: hidden;
  gap: 2px;
  background: #fff;
  box-shadow: 0 16px 40px #091d4210, 0 0 0 8px #e8effb;
}

.about-slice {
  background: #e2ecff;
  min-width: 0;
  transition: background .2s;
}

.about-slice:nth-child(2) {
  background: #bed3ff;
}

.about-slice:nth-child(3) {
  background: #98baff;
}

.about-slice:nth-child(4) {
  background: #d7e5ff;
}

.about-slice h3 {
  height: 100%;
  margin: 0;
}

.about-slice button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 18%;
  border: 0;
  background: transparent;
  color: #091d42;
  font: 600 clamp(.875rem, 1.35vw, 1.125rem)/1.3 var(--font-heading);
  letter-spacing: -.025em;
  text-wrap: balance;
  text-align: center;
  cursor: pointer;
}

.about-slice:nth-child(1) button {
  padding-top: 30%;
  padding-left: 26%;
}

.about-slice:nth-child(2) button {
  padding-top: 30%;
  padding-right: 26%;
}

.about-slice:nth-child(3) button {
  padding-bottom: 30%;
  padding-left: 26%;
}

.about-slice:nth-child(4) button {
  padding-bottom: 30%;
  padding-right: 26%;
}

.about-slice-number {
  font-size: .75rem;
  letter-spacing: .12em;
  opacity: .75;
  font-weight: 400;
  letter-spacing: .08em;
}

.about-slice:has(button[aria-expanded="true"]),
.about-slice:has(button:focus-visible) {
  background: #123caf;
  box-shadow: inset 0 0 32px #091d4220;
}

.about-slice button[aria-expanded="true"],
.about-slice button:focus-visible {
  color: #fff;
}

.about-slice button:focus-visible {
  outline: 3px solid #a8c8ff;
  outline-offset: -8px;
}

.about-detail-area {
  border-top: 2px solid #1749d1;
  padding-top: 28px;
}

.about-prompt {
  color: #091d42;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  letter-spacing: -.035em;
  line-height: 1.4;
}

.about-prompt span {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
  color: #455570;
  margin-top: 16px;
}

.about-detail-number {
  display: block;
  color: #1749d1;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: 1;
  margin-bottom: 24px;
}

.about-detail p {
  font-size: 1.125rem;
  line-height: 1.8;
}

.about-detail:not([hidden]) {
  animation: feature-reveal .2s ease-out;
}

@media(max-width:768px) {
  .about-explorer {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-wheel {
    max-width: 480px;
    margin-inline: auto;
  }

  .about-slice button {
    font-size: clamp(.875rem, 3.5vw, 1rem);
    gap: 8px;
  }

  .about-detail p {
    font-size: 1rem;
  }
}

@media(prefers-reduced-motion:reduce) {
  .about-slice {
    transition: none;
  }

  .about-detail:not([hidden]) {
    animation: none;
  }
}

/* Framed navigation with prominent account actions. */
.site-header {
  background: #fff;
  border-bottom: 1px solid #c2d1eb;
  box-shadow: 0 4px 24px #091d4208;
}

.site-header::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #091d42, #1749d1 55%, #a8c8ff);
}

.header-inner {
  height: 92px;
  column-gap: 28px;
}

.site-header .site-logo {
  width: 165px;
}

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

.header-login,
.header-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 23px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2;
  /* border-radius: 10px; */
  text-decoration: none;
  white-space: nowrap;
}

.header-login {
  border: 1px solid #a9bfe6;
  color: #091d42;
  background: #e8effb;
}

.header-login:hover {
  background: #d7e5ff;
  color: #091d42;
  text-decoration: none;
}

.header-register {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: 16px;
  background: #123caf;
  border: 1px solid #123caf;
  color: #fff;
  box-shadow: 0 5px 15px #1749d125;
}

.header-register>span {
  position: relative;
  z-index: 1;
}

/* An illuminated edge travels around the button without moving its label. */
@property --register-orbit {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.header-register::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: conic-gradient(from var(--register-orbit),
    transparent 0deg 230deg, #78aaff 275deg, #ffffff 310deg,
    #a8c8ff 335deg, transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: register-orbit 4s linear infinite;
  pointer-events: none;
}

.register-arrow {
  font-size: 1.125rem;
  animation: register-nudge 4.5s ease-in-out infinite;
}

.header-register:hover {
  background: #091d42;
  color: #fff;
  text-decoration: none;
}

.header-login:focus-visible,
.header-register:focus-visible {
  outline: 3px solid #78aaff;
  outline-offset: 4px;
}

@keyframes register-orbit {
  to { --register-orbit: 360deg; }
}

@keyframes register-glow {
  0%, 100% { box-shadow: 0 5px 16px rgba(23, 73, 209, .22), 0 0 0 0 rgba(55, 108, 240, 0); }
  50% { box-shadow: 0 7px 24px rgba(23, 73, 209, .38), 0 0 0 4px rgba(55, 108, 240, .10); }
}

@keyframes register-nudge {

  0%,
  65%,
  100% {
    transform: translate(0, 0);
  }

  78% {
    transform: translate(3px, -3px);
  }
}

@media(min-width:769px) {
  .site-header .primary-nav ul {
    gap: 4px;
    /* background: #e8effb; */
    padding: 6px;
    border-radius: 999px;
  }

  .site-header .primary-nav a {
    display: block;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: .8125rem;
    letter-spacing: .02em;
    text-transform: none;
  }

  .site-header .primary-nav a:hover,
  .site-header .primary-nav a.active {
    background: #fff;
    color: #123caf;
  }
}

@media(min-width:769px) and (max-width:1100px) {
  .header-inner {
    column-gap: 16px;
    padding-inline: 24px;
  }

  .site-header .site-logo {
    width: 140px;
  }

  .header-login,
  .header-register {
    padding-inline: 16px;
  }

  .site-header .primary-nav a {
    padding-inline: 12px;
  }
}

@media(max-width:768px) {
  .header-inner {
    height: 77px;
    column-gap: 12px;
    padding-inline: 16px;
  }

  .site-header .site-logo {
    width: 120px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-login,
  .header-register {
    min-height: 42px;
    padding: 10px 12px;
    font-size: .875rem;
    /* border-radius: 8px; */
  }

  .header-register {
    gap: 6px;
  }

  .site-header .nav-toggle {
    margin-left: 4px;
    flex-shrink: 0;
  }
}

@media(max-width:380px) {
  .header-inner {
    padding-inline: 12px;
    column-gap: 8px;
  }

  .site-header .site-logo {
    width: 90px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-login,
  .header-register {
    padding-inline: 9px;
  }

  .register-arrow {
    display: none;
  }
}

@media(prefers-reduced-motion:reduce) {

  .header-register::before,
  .register-arrow {
    animation: none;
  }

  .header-register::before {
    display: none;
  }
}

/* Shared typography for navigation and native form controls. */
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

.primary-nav,
.btn,
.header-login,
.header-register,
.logo,
.faq-question {
  font-family: var(--font-heading);
}


/* Premium blue and white: crisp surfaces against deep navy anchors. */
body.editorial-home #features {
  background: linear-gradient(135deg, #06152f 0%, #102e67 100%);
}

.site-footer {
  background: linear-gradient(135deg, #ffffff 0%, #e8effb 100%);
}

.header-register,
.btn-primary {
  background: linear-gradient(135deg, #245ee5 0%, #123caf 100%);
  border-color: #123caf;
  box-shadow: 0 6px 18px rgba(9, 29, 66, .18);
}

.header-register:hover,
.btn-primary:hover {
  background: #091d42;
  border-color: #091d42;
}


/* Game artwork on the home guide, directory hero, and demo listings. */
.games-art-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.games-art-copy {
  min-width: 0;
}

.games-art-hero h1 {
  font-size: clamp(2.5rem, 4.4vw, 4.75rem);
}

.games-art-hero .hero-cta {
  justify-content: flex-start;
}

.games-art-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(16px, 2.5vw, 28px);
  background: linear-gradient(145deg, #091d42, #173b78);
  border: 1px solid #345383;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(9, 29, 66, .18);
  max-width: 500px;
}

.games-art-showcase img,
.home-demo-artwork img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 10px;
}

.home-demo-art {
  width: 100%;
}

.home-demo-artwork {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  margin-bottom: 24px;
  background: #091d42;
  border-radius: 14px;
}

#demo-grid .demo-list-item {
  display: grid;
  grid-template-columns: 48px 144px minmax(0, 1fr);
  align-items: start;
}

.demo-game-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border: 1px solid #b9cbea;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(9, 29, 66, .12);
}

@media (max-width: 900px) {
  .games-art-layout {
    grid-template-columns: 1fr;
  }

  .games-art-showcase {
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  #demo-grid .demo-list-item {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 16px;
  }

  .demo-game-art {
    width: 112px;
  }

  #demo-grid .demo-list-body {
    grid-column: 2;
  }
}


/* Demo hero: replace the placeholder with an image inside .demo-hero-media. */
.demo-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.demo-hero-copy {
  min-width: 0;
}

.demo-hero h1 {
  font-size: clamp(2.5rem, 4.4vw, 4.75rem);
}

.demo-hero .hero-cta {
  justify-content: flex-start;
}

.demo-hero-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid #b9cbea;
  border-radius: 20px;
  background: #e8effb;
  box-shadow: 0 20px 48px rgba(9, 29, 66, .12);
}

.demo-hero-media>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-hero-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  border: 2px dashed #a9bfe6;
  border-radius: inherit;
  color: #345383;
  font-family: var(--font-heading);
  font-size: 1.125rem;
}

.demo-hero-placeholder-note {
  font-family: var(--font-body);
  font-size: .875rem;
  color: #455570;
}

@media (max-width: 900px) {
  .demo-hero-layout {
    grid-template-columns: 1fr;
  }

  .demo-hero-media {
    max-width: 500px;
    margin-inline: auto;
  }
}

/* Automatic Register emphasis, including on touch devices. */
.header-register {
  animation: register-glow 4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .header-register,
  .header-register::before,
  .header-register .register-arrow {
    animation: none;
  }
}


/* Native click/keyboard disclosure for game descriptions. */
.game-card-details { margin-top: 12px; }
.game-card-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border-subtle);
  color: var(--accent-cyan);
  font: 600 .875rem/1.5 var(--font-heading);
  cursor: pointer;
  list-style: none;
}
.game-card-details > summary::-webkit-details-marker { display: none; }
.game-card-details > summary::after { content: '+'; font-size: 1.25rem; }
.game-card-details[open] > summary::after { content: '−'; }
.game-card-details .details-hide,
.game-card-details[open] .details-show { display: none; }
.game-card-details[open] .details-hide { display: inline; }
.game-card-details > summary:hover { color: var(--text-primary); }
.game-card-details > summary:focus-visible {
  outline: 2px solid #1749d1;
  outline-offset: 4px;
}
.game-card-details p { margin-top: 12px; }

/* Keep "Show details" flush to the bottom of every card in a row, regardless of title wrap length. */
#top-games .game-grid { align-items: stretch; }
#top-games .game-card { display: flex; flex-direction: column; }
#top-games .game-card-details { margin-top: auto; }


/* Shared visual scale: compact sections, consistent type, and surface colors. */
:root {
  --bg-base: #ffffff;
  --bg-alt: #e8effb;
  --bg-card: #ffffff;
  --text-primary: #091d42;
  --text-muted: #455570;
  --border-subtle: #c2d1eb;
  --accent-amber: #1749d1;
  --accent-cyan: #123caf;
  --section-space: clamp(36px, 4.5vw, 60px);
  --layout-gap: clamp(24px, 3vw, 40px);
  --heading-space: 24px;
  --title-size: clamp(2rem, 4vw, 3.5rem);
  --section-title-size: clamp(1.625rem, 2.6vw, 2.5rem);
  --card-title-size: clamp(1.125rem, 1.6vw, 1.375rem);
}

body { font-size: 1rem; line-height: 1.65; }
p { line-height: 1.65; }
.container { padding-inline: clamp(20px, 3vw, 40px); }
.section { padding-block: var(--section-space); }
.section-alt { background: var(--bg-alt); }
.hero,
.hero:not(:has(.hero-inner)) { padding-block: var(--section-space); }
.hero h1,
.games-art-hero h1,
.demo-hero h1 {
  font-size: var(--title-size);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin-bottom: 20px;
}

h2,
#faq h2 {
  font-size: var(--section-title-size);
  line-height: 1.2;
  letter-spacing: -.025em;
  margin-bottom: var(--heading-space);
}
body.editorial-home #about h2,
body.editorial-home #features h2 { margin-bottom: var(--heading-space); }
h3,
.game-card h3,
body.editorial-home #games .game-card h3,
.demo-list-header h3,
.feature-copy h3 {
  font-size: var(--card-title-size);
  line-height: 1.35;
  letter-spacing: -.02em;
}
.hero-subheading,
.section-lead,
.about-detail p,
.feature-copy p { font-size: 1rem; line-height: 1.65; }
.section-lead { margin-bottom: 24px; }
.hero-cta { gap: 12px; margin-top: 24px; }
.section-cta { margin-top: 28px; }
.button-stack { gap: 12px; }
.btn { padding: 12px 22px; font-size: .875rem; line-height: 1.4; }

.hero-inner,
.two-col,
.games-art-layout,
.demo-hero-layout,
.about-explorer,
#faq > .container,
.footer-top { gap: var(--layout-gap); }
.game-grid { gap: 28px 24px; align-items: start; }
.tips-grid { gap: 24px; margin-block: 24px; }
.tips-col,
.cta-box { padding: 24px; }
.cta-box-tight { margin-top: 0; }
.point-list li { padding-block: 20px; }
.point-list li::before { top: 21px; }
.steps-list { gap: 16px; }
.game-card-header { gap: 8px; margin-bottom: 12px; }
.demo-list-item { padding-block: 24px; }
.demo-list-header { gap: 8px; margin-bottom: 8px; }

.about-prompt { font-size: var(--card-title-size); line-height: 1.5; }
.about-detail-area { padding-top: 20px; }
.about-detail-number { font-size: 2rem; margin-bottom: 16px; }
.faq-eyebrow { margin-bottom: 16px; font-size: .875rem; }
.faq-category { font-size: .75rem; letter-spacing: .08em; }
.faq-count { margin-top: 24px; padding-top: 20px; }
.faq-count strong { font-size: 3.5rem; }
#faq .accordion-trigger { padding: 20px; gap: 12px; }
.faq-question { font-size: 1rem; line-height: 1.5; }
#faq .accordion-panel { padding-inline: 62px 64px; }
#faq .accordion-panel p { padding-block: 16px 20px; line-height: 1.65; }

.site-footer { padding-block: 44px 24px; }
.footer-top { margin-bottom: 28px; }
.footer-disclaimer { padding-top: 20px; margin-bottom: 20px; }
.footer-disclaimer h2 { font-size: 1.125rem; margin-bottom: 12px; }
.site-footer .footer-col h3 { font-size: .875rem; margin-bottom: 12px; }
.footer-col ul { gap: 8px; }
.footer-col a,
.site-footer .footer-col a { font-size: .9375rem; }

@media (min-width: 769px) {
  .is-enhanced .feature-stage { gap: var(--layout-gap); }
  .is-enhanced .feature-copy { padding: 28px; }
  .feature-numbers button { padding-block: 18px; }
}

@media (max-width: 768px) {
  .about-explorer { grid-template-columns: 1fr; }
  body.editorial-home #games .game-card,
  body.editorial-home #games .game-card.is-active {
    min-height: 0;
    padding: 20px 0 20px 36px !important;
  }
  body.editorial-home #games .game-card-thumb,
  body.editorial-home #games .game-card.is-active .game-card-thumb {
    position: static;
    width: 100%;
    height: auto;
    max-height: 220px;
    aspect-ratio: 1;
    margin-bottom: 16px;
    padding: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .tips-col, .cta-box, .feature-copy { padding: 20px; }
}

@media (max-width: 480px) {
  #faq .accordion-trigger { padding: 16px; gap: 10px; }
  #faq .accordion-panel { padding-inline: 50px 16px; }
  .hero-cta { gap: 10px; }
  .btn { padding-inline: 18px; }
}

/* Android download: oversized specifications and a contrasting download panel. */
.apk-panel { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); background: #091d42; color: #fff; }
.apk-overview { padding: clamp(28px, 4vw, 56px); }
.apk-eyebrow { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.apk-overview .apk-eyebrow { color: #a9c5ff; margin-bottom: 24px; }
.apk-overview h2 { max-width: 560px; color: #fff; font-size: clamp(1.8rem, 3.3vw, 3rem); margin-bottom: 20px; }
.apk-intro { max-width: 470px; color: #d0dcf1; }
.apk-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; padding-top: 24px; border-top: 1px solid #ffffff35; }
.apk-specs dt { font-size: .875rem; color: #a9c5ff; margin-bottom: 6px; }
.apk-specs dd { font-family: var(--font-heading); font-size: clamp(2rem, 3.7vw, 3.5rem); font-weight: 600; line-height: 1.2; letter-spacing: -.05em; }
.apk-specs dd span { display: inline-block; font-family: var(--font-body); font-size: .875rem; font-weight: 400; letter-spacing: 0; }
.apk-devices { margin-top: 22px; color: #d0dcf1; font-size: .875rem; }
.apk-download { display: flex; flex-direction: column; align-items: stretch; padding: clamp(28px, 4vw, 48px); background: #1749d1; }
.apk-file-label { display: flex; justify-content: space-between; gap: 16px; font-size: .75rem; font-weight: 700; letter-spacing: .1em; padding-bottom: 16px; border-bottom: 1px solid #ffffff55; }
.apk-download-symbol { font-size: 5rem; line-height: 1; margin: 24px 0; font-weight: 400; }
.apk-download h3 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 12px; }
.apk-download p { color: #e1eaff; margin-bottom: 28px; }
.apk-download .apk-download-button { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: auto; background: #fff; color: #123caf; border: 1px solid #fff; font-size: 1rem; padding: 16px 20px; }
.apk-download-button span { font-size: 1.5rem; line-height: 1; }
.apk-download .apk-download-button:hover { background: #e8effb; color: #091d42; text-decoration: none; }
.apk-guide-link { align-self: center; margin-top: 18px; font-size: .875rem; color: #fff; text-underline-offset: 5px; }
.apk-guide-link span { margin-left: 10px; }
.apk-download a:focus-visible { outline: 3px solid #fff; outline-offset: 5px; }
.apk-install { padding-top: 32px; scroll-margin-top: 120px; }
.apk-install-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.apk-install-heading .apk-eyebrow { color: #1749d1; }
.apk-install-heading h3 { margin: 0; }
.apk-install-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; gap: 28px; }
.apk-install-steps li { display: flex; align-items: flex-start; gap: 18px; border-top: 2px solid #c2d1eb; padding-top: 20px; }
.apk-step-number { font-family: var(--font-heading); color: #1749d1; font-size: 1.75rem; line-height: 1.2; }
.apk-install-steps h4 { font-size: 1rem; margin-bottom: 8px; }
.apk-install-steps p { font-size: 1rem; }
@media (max-width: 768px) {
  .apk-panel { grid-template-columns: 1fr; }
  .apk-download-symbol { font-size: 3.5rem; margin-block: 20px; }
  .apk-install-heading { flex-direction: column; gap: 10px; }
  .apk-install-steps { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 380px) {
  .apk-overview, .apk-download { padding: 24px 20px; }
  .apk-specs { gap: 16px; }
  .apk-specs dd span { display: block; margin-top: 6px; }
}

/* Breadcrumb navigation */
.breadcrumb-bar {
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-base);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 16px 0;
  gap: 8px;
  font: 13px/1.5 "SFMono-Regular", Consolas, monospace;
  letter-spacing: .02em;
  color: var(--text-muted);
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-list li:not(:last-child)::after {
  content: "/";
  color: var(--border-subtle);
}
.breadcrumb-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb-list a:hover {
  color: var(--accent-amber);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.breadcrumb-list li[aria-current="page"] {
  color: var(--text-primary);
}
@media (max-width: 480px) {
  .breadcrumb-list {
    padding: 12px 0;
    font-size: 12px;
  }
}
