:root {
  /* Dark purple palette — base #51007a */
  --purple-base: #51007a;
  --purple-950: #180030;
  --purple-900: #240048;
  --purple-850: #2d0058;
  --purple-800: #3a0068;
  --purple-700: #450074;
  --purple-600: #51007a;
  --purple-500: #5c0088;
  --purple-400: #680096;
  --purple-glow: #7200a8;
  --purple-light: #d793ff;
  --purple-soft: #9b6fd4;
  --gold: #c7aa2b;
  --gold-hover: #d4bc45;
  --gold-orange: #b89924;
  --gold-light: #e0ce7a;
  --accent-lime: #c6fe57;
  --success: #6bd104;
  --text: #ffffff;
  --text-muted: #c9a8f0;
  --text-body: #e8dcff;
  --grad-section-a:
    linear-gradient(165deg, rgba(81, 0, 122, 0.38) 0%, rgba(58, 0, 104, 0.46) 32%, rgba(42, 0, 72, 0.52) 68%, rgba(24, 0, 48, 0.56) 100%);
  --grad-section-b:
    linear-gradient(165deg, rgba(69, 0, 116, 0.4) 0%, rgba(45, 0, 88, 0.48) 38%, rgba(29, 0, 58, 0.54) 72%, rgba(18, 0, 36, 0.58) 100%);
  --grad-section-accent:
    linear-gradient(135deg, rgba(81, 0, 122, 0.44) 0%, rgba(58, 0, 104, 0.5) 48%, rgba(24, 0, 48, 0.56) 100%),
    radial-gradient(circle at 72% 28%, rgba(114, 0, 168, 0.16), transparent 58%);
  --grad-card:
    linear-gradient(145deg, rgba(81, 0, 122, 0.72) 0%, rgba(36, 0, 72, 0.88) 100%);
  --grad-footer:
    linear-gradient(180deg, rgba(36, 0, 72, 0.92) 0%, rgba(18, 0, 36, 0.96) 100%);
  --bg-image: url("assets/images/bg-image.webp");
  --bg-image-mobile: url("assets/images/bg-image-mobile.webp");
  --bg-overlay:
    linear-gradient(180deg, rgba(81, 0, 122, 0.16) 0%, rgba(58, 0, 104, 0.25) 45%, rgba(36, 0, 72, 0.38) 100%);
  --layout: 1360px;
  --layout-wide: 1360px;
  --banner-width: min(80vw, calc(100% - 24px));
  --pad: clamp(16px, 3vw, 24px);
  --radius: 10px;
  --font: "Open Sans", "Noto Sans Thai", "Segoe UI", sans-serif;
  --font-display: "Montserrat", "Open Sans", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  background: linear-gradient(180deg, var(--purple-base) 0%, var(--purple-800) 55%, var(--purple-950) 100%);
  background-color: var(--purple-950);
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  background: transparent;
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}

body::before {
  background-attachment: fixed;
  background-color: var(--purple-base);
  background-image: var(--bg-overlay), var(--bg-image);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: 0;
  min-height: 100%;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

@media (max-width: 640px) {
  body::before {
    background-attachment: scroll;
    background-image: var(--bg-overlay), var(--bg-image-mobile);
    background-position: center top;
  }
}

a { color: inherit; text-decoration: none; }
img { display: block; height: auto; max-width: 100%; }
button { cursor: pointer; font: inherit; }

.sheet {
  margin: 0 auto;
  max-width: var(--layout);
  padding-left: clamp(12px, 2vw, 20px);
  padding-right: clamp(12px, 2vw, 20px);
  width: 100%;
}

.sheet--wide {
  max-width: var(--layout-wide);
}

main { display: block; }

/* Header */
.site-header {
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 30;
}

.site-header .brand { pointer-events: auto; }

.header-inner {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 72px;
  padding-top: 14px;
}

.brand-logo {
  filter: drop-shadow(0 2px 8px rgba(42, 5, 82, 0.6));
  height: auto;
  max-height: 56px;
  width: auto;
}

/* Hero slider */
.hero-slider-section {
  align-items: center;
  background: transparent;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-slider-frame {
  margin: 0 auto;
  max-width: var(--banner-width);
  padding-top: clamp(56px, 8vw, 72px);
  width: var(--banner-width);
}

.hero-slider-wrap {
  background: var(--purple-950);
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
  line-height: 0;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-slider {
  background: var(--purple-950);
  position: relative;
  width: 100%;
}

.hero-slide {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.65s ease;
  visibility: hidden;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  visibility: visible;
  z-index: 1;
}

.hero-slide img {
  backface-visibility: hidden;
  border: 0;
  display: block;
  height: auto;
  max-width: none;
  outline: none;
  transform: translateZ(0);
  vertical-align: top;
  width: 100%;
}

.hero-slider-section .hero-actions {
  margin-top: 0;
  max-width: var(--banner-width);
  padding: 6px 0 8px;
  width: var(--banner-width);
}

#intro.u-grey-80 {
  padding-bottom: 28px;
  padding-top: 18px;
}

#intro .section-lead {
  margin-bottom: 18px;
}

#intro .stats-grid {
  margin-bottom: 24px;
  margin-top: 16px;
}

#intro .split-row {
  gap: 20px;
  margin-top: 4px;
}

.slider-overlay {
  align-items: flex-end;
  background:
    linear-gradient(180deg, transparent 0%, transparent 55%, rgba(0, 0, 0, 0.22) 78%, rgba(0, 0, 0, 0.42) 100%);
  border-radius: 0;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 0 12px 10px;
  pointer-events: none;
  position: absolute;
  text-align: center;
  z-index: 2;
}

.slider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 6px;
  pointer-events: auto;
  position: static;
  z-index: 3;
}

.slider-dot {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(199, 170, 43, 0.45);
  border-radius: 50%;
  flex-shrink: 0;
  height: 8px;
  padding: 0;
  width: 8px;
}

.slider-dot.is-active {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(199, 170, 43, 0.65);
}

.hero-slider-section.u-grey-90 {
  background: transparent;
}

.hero-slider-section.u-grey-90::before {
  display: none;
}

.hero-video-section {
  position: relative;
}

.video-wrap {
  height: clamp(260px, 52vw, 520px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-bg {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-video,
.hero-poster {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-video { z-index: 2; }
.hero-poster {
  transition: opacity 0.3s ease;
  z-index: 1;
}

.video-overlay {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(13, 2, 32, 0.35) 0%, rgba(42, 5, 82, 0.55) 50%, rgba(13, 2, 32, 0.65) 100%);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 88px var(--pad) 24px;
  position: absolute;
  text-align: center;
  z-index: 3;
}

.overlay-box {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 640px;
  width: 100%;
}

.overlay-users {
  color: var(--text);
  font-size: clamp(0.82rem, 2.2vw, 1.2rem);
  line-height: 1.2;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(42, 5, 82, 0.75);
}

.overlay-users strong { color: var(--gold-hover); }

.overlay-stars {
  color: var(--gold);
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(42, 5, 82, 0.6);
}

.hero-video-section.u-grey-90 {
  background: transparent;
}

.hero-video-section.u-grey-90::before {
  display: none;
}

.hero-actions {
  align-items: center;
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 12px var(--pad) 24px;
}

.btn {
  align-items: center;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  min-width: 180px;
  padding: 0 28px;
  position: relative;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  user-select: none;
}

.btn-gradient {
  background: linear-gradient(180deg, #ddd06a 0%, var(--gold) 20%, var(--gold-orange) 58%, #96801f 100%);
  border: 1px solid #a89228;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 0 rgba(42, 5, 82, 0.25),
    0 4px 0 #5c4f15,
    0 7px 14px rgba(42, 5, 82, 0.45);
  color: #2a1050;
  top: 0;
}

.btn-gradient:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 0 rgba(42, 5, 82, 0.2),
    0 5px 0 #5c4f15,
    0 10px 18px rgba(42, 5, 82, 0.5);
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.btn-gradient:active {
  box-shadow:
    inset 0 2px 4px rgba(42, 5, 82, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 1px 0 #5c4f15,
    0 2px 6px rgba(42, 5, 82, 0.35);
  filter: brightness(0.98);
  transform: translateY(3px);
}

.btn-link {
  background: none;
  border: none;
  border-bottom: 2px solid rgba(215, 147, 255, 0.45);
  border-radius: 0;
  color: var(--purple-light);
  display: inline-block;
  font-size: 0.88rem;
  min-height: auto;
  min-width: 0;
  padding: 4px 0;
}

.btn-link:hover {
  border-bottom-color: var(--accent-lime);
  color: var(--accent-lime);
}

.btn-wide { margin-bottom: 24px; }

/* Sections */
.u-grey-80 {
  background: var(--grad-section-a);
  padding: 52px 0;
  position: relative;
}

.u-grey-80::before {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(114, 0, 168, 0.14), transparent 65%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.u-grey-90 {
  background: var(--grad-section-b);
  padding: 52px 0;
  position: relative;
}

.u-grey-90::before {
  background: radial-gradient(ellipse 70% 40% at 20% 100%, rgba(104, 0, 150, 0.14), transparent 60%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.u-grey-80 .sheet,
.u-grey-90 .sheet,
.u-blue-dark .sheet {
  position: relative;
  z-index: 1;
}

.u-blue-dark {
  background: var(--grad-section-accent);
  padding: 44px 0;
}

.section-title {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 auto 16px;
  max-width: 920px;
  text-align: center;
}

.section-title--wide {
  max-width: none;
}

.section-lead {
  color: var(--text-body);
  font-size: 0.95rem;
  margin: 0 auto 32px;
  max-width: 920px;
  text-align: center;
}

.brand-link,
.brand-link strong {
  color: var(--gold);
  font-weight: 700;
}

/* Stats */
.stats-grid {
  background: rgba(45, 0, 88, 0.72);
  border: 1px solid rgba(114, 0, 168, 0.38);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin: 28px auto 36px;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}

.stat-box {
  background: transparent;
  border-right: 1px solid rgba(114, 0, 168, 0.42);
  padding: 20px 12px;
  text-align: center;
}

.stat-box:last-child {
  border-right: none;
}

.stat-box p {
  color: var(--text);
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-box strong {
  color: var(--gold);
  display: block;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
}

/* Split row */
.split-row {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(300px, 1.15fr) minmax(260px, 0.85fr);
}

.split-media {
  display: flex;
  justify-content: center;
}

.split-media img {
  aspect-ratio: 1 / 1;
  max-height: 520px;
  object-fit: contain;
  width: min(100%, 520px);
}

.split-text p {
  color: var(--text-body);
  font-size: 0.92rem;
  text-align: justify;
}

/* License */
.section-sub {
  color: var(--text-body);
  font-size: 0.82rem;
  margin-bottom: 22px;
  text-align: center;
}

.license-grid {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, 1fr);
}

.license-item {
  align-items: center;
  display: flex;
  justify-content: center;
}

.license-item img {
  border-radius: 6px;
  display: block;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  width: 100%;
}

.license-fallback {
  background: linear-gradient(145deg, rgba(61, 8, 120, 0.55), rgba(26, 4, 53, 0.85));
  border: 1px solid rgba(215, 147, 255, 0.28);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 12px 8px;
  text-align: center;
  width: 100%;
}

/* Experience */
.experience-strip {
  margin-bottom: 22px;
  width: 100%;
}

.experience-strip img {
  aspect-ratio: 978 / 118;
  border-radius: var(--radius);
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.experience-content h2 {
  color: var(--text);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  line-height: 1.35;
  margin-bottom: 14px;
  text-align: center;
}

.experience-content > p {
  color: var(--text-body);
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-align: justify;
}

.feature-cards {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  background: var(--grad-card);
  border: 1px solid rgba(215, 147, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(215, 147, 255, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px;
}

.feature-card h3 {
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-body);
  font-size: 0.82rem;
}

/* Games */
.game-grid {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.game-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.game-item img {
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  margin-bottom: 10px;
  object-fit: cover;
  width: 100%;
}

.game-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.game-item p {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.game-item .btn-link {
  margin-top: auto;
}

.center-actions { text-align: center; }

.providers-head {
  margin: 28px auto 0;
  text-align: center;
  width: 100%;
}

.providers-head h4 {
  color: var(--text);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.providers-head p {
  color: var(--text-body);
  font-size: clamp(0.92rem, 1.35vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.55;
  text-transform: uppercase;
  width: 100%;
}

/* Promos */
.promo-grid {
  align-items: stretch;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
}

.promo-card {
  background: var(--grad-card);
  border: 3px solid var(--gold-orange);
  box-shadow: 0 6px 20px rgba(13, 2, 32, 0.4);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  padding: 14px 12px 12px;
  text-align: center;
}

.promo-card h3 {
  color: var(--text);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}

.promo-card .terms {
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.promo-card ul {
  color: var(--text-body);
  flex: 1 1 auto;
  font-size: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0 6px;
  text-align: left;
  width: 100%;
}

.promo-card li { margin-bottom: 2px; }
.promo-card li:last-child { margin-bottom: 0; }
.promo-card li::before { content: "• "; }

/* Deco */
.deco-section {
  overflow: hidden;
  padding: 12px 0 28px;
}

.deco-section .sheet {
  align-items: center;
  display: flex;
  justify-content: center;
}

.deco-section img {
  max-height: 260px;
  object-fit: contain;
  width: min(100%, 420px);
}

/* Reviews */
.review-grid {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.review-card {
  background: var(--grad-card);
  border: 1px solid rgba(215, 147, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(13, 2, 32, 0.35);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 18px;
}

.review-card h3 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.review-card p {
  color: var(--text-body);
  flex: 1 1 auto;
  font-size: 0.88rem;
}

.review-card cite {
  color: var(--text);
  display: block;
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 700;
  margin-top: auto;
  padding-top: 10px;
}

/* SEO */
.seo-section {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(114, 0, 168, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(81, 0, 122, 0.46) 0%, rgba(58, 0, 104, 0.52) 38%, rgba(36, 0, 72, 0.58) 72%, rgba(24, 0, 48, 0.62) 100%);
  padding: 56px 0;
}

.seo-section h1,
.seo-section h2,
.seo-section h3 {
  color: var(--gold);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin: 24px 0 12px;
}

.seo-section h1.section-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin: 0 0 16px;
  max-width: none;
  text-align: center;
}

.seo-section h1:first-child { margin-top: 0; }

.seo-section h2:first-of-type { margin-top: 24px; }

.seo-section h2[id] {
  scroll-margin-top: 20px;
}

.article-strip {
  margin: 28px 0 8px;
  width: 100%;
}

.article-strip img {
  aspect-ratio: 978 / 400;
  border-radius: var(--radius);
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.article-toc {
  margin: 20px 0 28px;
  width: 100%;
}

.toc-table-wrap {
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}

.toc-table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
  table-layout: fixed;
  width: 100%;
}

.toc-table__caption {
  caption-side: top;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 800;
  margin-bottom: 12px;
  text-align: left;
}

.toc-table thead th {
  background: linear-gradient(180deg, rgba(61, 8, 120, 0.95) 0%, rgba(42, 5, 82, 0.95) 100%);
  border-bottom: 2px solid rgba(250, 190, 10, 0.35);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 14px;
  text-align: left;
  text-transform: uppercase;
}

.toc-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
  text-align: center;
  width: 52px;
}

.toc-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.toc-table tbody tr:nth-child(odd) td {
  background: rgba(42, 5, 82, 0.55);
}

.toc-table tbody tr:nth-child(even) td {
  background: rgba(26, 4, 53, 0.62);
}

.toc-table tbody tr:hover td {
  background: rgba(61, 8, 120, 0.72);
}

.toc-table td {
  border-bottom: 1px solid rgba(215, 147, 255, 0.12);
  color: var(--text-body);
  padding: 12px 14px;
  vertical-align: top;
  word-wrap: break-word;
}

.toc-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 var(--radius);
}

.toc-table tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--radius) 0;
}

.toc-table td:first-child {
  color: var(--gold-light);
  font-weight: 700;
  text-align: center;
  width: 52px;
}

.toc-table td a {
  color: var(--gold);
  display: block;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.15s ease;
  word-break: break-word;
}

.toc-table td a:hover {
  color: var(--gold-light);
}

.article-list {
  color: var(--text-body);
  font-size: 0.9rem;
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}

.article-list li {
  margin-bottom: 10px;
  padding-left: 0;
}

.feature-table-wrap {
  margin: 8px 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.feature-table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
  min-width: 520px;
  width: 100%;
}

.feature-table thead th {
  background: linear-gradient(180deg, rgba(61, 8, 120, 0.95) 0%, rgba(42, 5, 82, 0.95) 100%);
  border-bottom: 2px solid rgba(250, 190, 10, 0.35);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 14px;
  text-align: left;
  text-transform: uppercase;
}

.feature-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
  text-align: center;
  width: 52px;
}

.feature-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.feature-table tbody tr:nth-child(odd) td {
  background: rgba(42, 5, 82, 0.55);
}

.feature-table tbody tr:nth-child(even) td {
  background: rgba(26, 4, 53, 0.62);
}

.feature-table tbody tr:hover td {
  background: rgba(61, 8, 120, 0.72);
}

.feature-table td {
  border-bottom: 1px solid rgba(215, 147, 255, 0.12);
  color: var(--text-body);
  padding: 14px;
  vertical-align: top;
}

.feature-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 var(--radius);
}

.feature-table tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--radius) 0;
}

.feature-table__icon {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
  width: 52px;
}

.feature-table__title {
  color: var(--text);
  font-weight: 700;
  min-width: 170px;
  white-space: nowrap;
}

.seo-section p {
  color: var(--text-body);
  font-size: 0.9rem;
  margin-bottom: 12px;
  text-align: justify;
}

.seo-section .faq-q {
  color: var(--gold);
  display: block;
  font-weight: 700;
  margin-top: 16px;
}

/* Footer */
.site-footer {
  background: var(--grad-footer);
  padding: 22px 0 0;
}

.footer-grid {
  align-items: center;
  display: grid;
  gap: 12px 20px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 12px;
}

.footer-brand {
  text-align: left;
}

.footer-brand img {
  margin: 0 0 6px;
  max-height: 48px;
}

.footer-brand p {
  color: var(--text-body);
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 420px;
}

.footer-contact {
  color: var(--text-body);
  font-size: 0.88rem;
  padding-top: 0;
  text-align: right;
}

.footer-contact strong {
  color: var(--text);
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.footer-bar {
  background: linear-gradient(180deg, var(--purple-900) 0%, var(--purple-950) 100%);
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 10px var(--pad);
  text-align: center;
}

.footer-nav {
  border-top: 1px solid rgba(215, 147, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  justify-content: center;
  margin-bottom: 0;
  padding: 10px 0 14px;
}

.footer-nav a {
  color: var(--text-body);
  font-size: 0.84rem;
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: var(--gold);
}

/* Subpages */
.site-header--page {
  background: linear-gradient(180deg, rgba(21, 3, 42, 0.98) 0%, rgba(13, 2, 32, 0.96) 100%);
  border-bottom: 1px solid rgba(215, 147, 255, 0.14);
  pointer-events: auto;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header--page .header-inner {
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: space-between;
  min-height: 64px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.header-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
}

.header-nav a {
  color: var(--text-body);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--gold);
}

.menu-toggle {
  background: rgba(61, 8, 120, 0.55);
  border: 1px solid rgba(215, 147, 255, 0.25);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 38px;
  justify-content: center;
  padding: 8px;
  pointer-events: auto;
  width: 42px;
}

.menu-toggle span {
  background: var(--gold);
  border-radius: 2px;
  display: block;
  height: 2px;
  width: 100%;
}

.sub-page {
  margin: 0 auto;
  max-width: var(--layout);
  padding: 48px var(--pad) 56px;
}

.sub-page h1 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.sub-page h2 {
  color: var(--gold-light);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 700;
  margin: 24px 0 10px;
}

.sub-page p,
.sub-page li {
  color: var(--text-body);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.sub-page ul {
  margin: 0 0 12px 18px;
}

.sub-page li {
  list-style: disc;
}

.sub-page a {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sub-page a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(2),
  .stat-box:nth-child(4) { border-right: none; }
  .stat-box:nth-child(1),
  .stat-box:nth-child(2) { border-bottom: 1px solid rgba(114, 0, 168, 0.42); }
  .split-row,
  .experience-grid { grid-template-columns: 1fr; }
  .split-media img { max-height: 340px; width: min(100%, 340px); }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: 1fr; }
  .license-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-cards { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr;
    margin-bottom: 8px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact {
    padding-top: 0;
    text-align: center;
  }

  .site-header--page .header-inner {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .site-header--page .brand {
    grid-column: 1;
    justify-self: start;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
  }

  .header-nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    grid-column: 1 / -1;
    padding: 8px 0 4px;
    width: 100%;
  }

  .header-nav.open { display: flex; }
}

@media (max-width: 640px) {
  :root {
    --banner-width: 100%;
  }

  .hero-slider-section {
    overflow: hidden;
    width: 100%;
  }

  .hero-slider-frame {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    padding-top: clamp(48px, 12vw, 56px);
    width: 100vw;
  }

  .hero-slider-wrap {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
  }

  .hero-slide img {
    min-width: 100%;
    width: 100%;
  }

  .hero-slider-section .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    max-width: 100%;
    padding: 12px 16px 16px;
    width: 100%;
  }

  .hero-slider-section .hero-actions .btn {
    border-radius: 50px;
    font-size: 0.9rem;
    min-height: 44px;
    min-width: 0;
    padding: 0 20px;
    width: 100%;
  }

  .hero-slider-section .hero-actions .btn-gradient {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.55),
      inset 0 -2px 0 rgba(42, 5, 82, 0.2),
      0 3px 0 #5c4f15,
      0 5px 12px rgba(42, 5, 82, 0.35);
  }

  .hero-slider-section .hero-actions .btn-gradient + .btn-gradient {
    border-top: none;
  }

  .hero-slider-section .hero-actions .btn-gradient:active {
    box-shadow:
      inset 0 2px 4px rgba(42, 5, 82, 0.3),
      0 1px 0 #5c4f15;
    transform: translateY(2px);
  }

  #intro.u-grey-80 {
    padding-top: 22px;
  }

  .slider-overlay {
    align-items: flex-end;
    justify-content: center;
    padding: 0 10px 8px;
  }

  .slider-dots {
    margin-top: 4px;
  }

  .overlay-users {
    font-size: clamp(0.78rem, 3.2vw, 0.95rem);
  }

  .overlay-stars {
    font-size: clamp(0.8rem, 2.8vw, 1rem);
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .slider-overlay {
    padding: 0 8px 6px;
  }

  .slider-dots {
    margin-top: 3px;
  }
  .license-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .center-actions .btn-wide { min-width: 0; width: 100%; }
}
