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

:root {
  --clr-bg: #0e1230;
  --clr-nav: #1a1f3c;
  --clr-gold: #fbc02d;
  --clr-purple: #8e24aa;
  --clr-gold-hover: #f9a825;
  --clr-purple-hover: #6a1b9a;
  --clr-text: #e8eaf6;
  --clr-text-muted: #9fa8da;
  --clr-text-dim: #7986cb;
  --clr-border: rgba(251,192,45,0.18);
  --clr-card: #131836;
  --clr-card-2: #17203f;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 32px rgba(0,0,0,0.45);
  --shadow-gold: 0 0 24px rgba(251,192,45,0.22);
  --transition: 0.28s ease;
  --font: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }

body {
  font-family: var(--font);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}


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

a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 0.6em;
}

h1 { font-size: clamp(1.7rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1em; line-height: 1.75; }
ul, ol { padding-left: 1.4em; margin-bottom: 1em; }
li { margin-bottom: 0.35em; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; width: 100%; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.container--wide { max-width: 1400px; }

.box {
  border-radius: var(--radius);
  overflow: hidden;
}

/* ===================== BUTTONS ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.97); }

.btn--gold {
  background: var(--clr-gold);
  color: #1a1200;
  box-shadow: 0 3px 16px rgba(251,192,45,0.35);
}
.btn--gold:hover { background: var(--clr-gold-hover); box-shadow: 0 4px 24px rgba(251,192,45,0.55); color: #1a1200; }

.btn--purple {
  background: var(--clr-purple);
  color: #fff;
  box-shadow: 0 3px 16px rgba(142,36,170,0.35);
}
.btn--purple:hover { background: var(--clr-purple-hover); box-shadow: 0 4px 24px rgba(142,36,170,0.55); color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
}
.btn--outline:hover { background: var(--clr-gold); color: #1a1200; }

.btn--sm { padding: 8px 16px; font-size: 0.8rem; }
.btn--lg { padding: 14px 34px; font-size: 1rem; }
.btn--xl { padding: 17px 42px; font-size: 1.1rem; letter-spacing: 0.06em; }

.btn svg { flex-shrink: 0; }

/* ===================== HEADER ===================== */

.site-header {
  background: var(--clr-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(251,192,45,0.12);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.header-logo-text {
  display: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border-radius: 6px;
  color: var(--clr-text);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.header-nav a svg { width: 15px; height: 15px; fill: currentColor; opacity: 0.7; }
.header-nav a:hover { color: var(--clr-gold); background: rgba(251,192,45,0.08); }

.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--transition);
}
.burger:hover { background: rgba(255,255,255,0.07); }
.burger span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== MOBILE MENU ===================== */

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,12,30,0.85);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-menu-overlay:not(.active) { pointer-events: none; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 71px;
  left: 0;
  right: 0;
  background: var(--clr-nav);
  z-index: 999;
  border-bottom: 1px solid var(--clr-border);
  padding: 16px 18px 20px;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu:not(.active) { pointer-events: none; }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}
.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--clr-text);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-links a svg { width: 16px; height: 16px; fill: currentColor; opacity: 0.75; }
.mobile-menu-links a:hover { background: rgba(251,192,45,0.09); color: var(--clr-gold); }

.mobile-menu-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mobile-menu-btns .btn { flex: 1; min-width: 100px; }

/* ===================== HERO ===================== */

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-nav);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/hero-banner.png') center center / cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,18,48,0.88) 38%, rgba(14,18,48,0.52) 70%, rgba(14,18,48,0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251,192,45,0.13);
  border: 1px solid rgba(251,192,45,0.3);
  color: var(--clr-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
  margin-bottom: 14px;
}

.hero h1 em {
  color: var(--clr-gold);
  font-style: normal;
}

.hero-intro {
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-spoiler summary {
  cursor: pointer;
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.hero-spoiler summary::after { content: '▼'; font-size: 0.7rem; }
.hero-spoiler[open] summary::after { content: '▲'; }
.hero-spoiler-text {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 8px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ===================== BREADCRUMBS ===================== */

.breadcrumbs-wrap {
  background: rgba(26,31,60,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 10px 0;
}

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

.breadcrumbs a { color: var(--clr-text-muted); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--clr-gold); }

.breadcrumbs-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}

.breadcrumbs-current { color: var(--clr-gold); }

/* ===================== CONTENT AREA ===================== */

.content-area {
  padding: 40px 0 60px;
  flex: 1;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

.sidebar { display: flex; flex-direction: column; gap: 20px; }

/* ===================== SECTION BLOCKS ===================== */

.section-block {
  background: var(--clr-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 28px;
  margin-bottom: 24px;
  animation: fadeInUp 0.5s ease both;
}

.section-block:last-child { margin-bottom: 0; }

.section-block--gold {
  border-color: rgba(251,192,45,0.18);
  box-shadow: 0 0 0 1px rgba(251,192,45,0.05), var(--shadow);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.section-title svg {
  flex-shrink: 0;
  fill: var(--clr-gold);
}

.section-title-icon {
  width: 36px;
  height: 36px;
  background: rgba(251,192,45,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===================== TABLE OF CONTENTS ===================== */

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  border: 1px solid transparent;
}

.toc-list a svg { width: 16px; height: 16px; fill: var(--clr-gold); flex-shrink: 0; }
.toc-list a:hover { background: rgba(251,192,45,0.07); color: var(--clr-gold); border-color: rgba(251,192,45,0.14); }

.toc-num {
  width: 22px;
  height: 22px;
  background: rgba(251,192,45,0.1);
  color: var(--clr-gold);
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===================== GAME IFRAME BLOCK ===================== */

.game-frame-wrap {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid rgba(251,192,45,0.2);
}

.game-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  -webkit-overflow-scrolling: touch;
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(14,18,48,0.92);
  z-index: 2;
  gap: 14px;
  transition: opacity 0.3s;
  padding: 16px;
  box-sizing: border-box;
}

.game-overlay.hidden { opacity: 0; pointer-events: none; }

.game-overlay-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-gold);
  text-align: center;
}

.game-overlay-sub {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  text-align: center;
}

.game-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

/* touch target fix for all buttons */
.btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
  -webkit-appearance: none;
  appearance: none;
  user-select: none;
}

/* ===================== INFO TABLE ===================== */

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  table-layout: fixed;
  word-break: break-word;
  overflow-wrap: break-word;
}

.info-table th, .info-table td {
  padding: 11px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: middle;
  overflow-wrap: break-word;
  word-break: break-word;
}

.info-table thead th {
  background: rgba(251,192,45,0.12);
  color: var(--clr-gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

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

.info-table tbody tr:nth-child(odd) td { background: rgba(255,255,255,0.03); }
.info-table tbody tr:hover td { background: rgba(251,192,45,0.05); }

.info-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 600;
  width: 46%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-table td:first-child svg { width: 15px; height: 15px; fill: var(--clr-gold); flex-shrink: 0; }

.info-table td:last-child { color: #fff; font-weight: 600; }

.tbl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  max-width: 100%;
}

.tbl-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.tbl-badge--green { background: rgba(76,175,80,0.15); color: #81c784; }
.tbl-badge--gold { background: rgba(251,192,45,0.15); color: var(--clr-gold); }
.tbl-badge--purple { background: rgba(142,36,170,0.15); color: #ce93d8; }

/* ===================== APP BLOCK ===================== */

.app-block-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 178px;
  flex-shrink: 0;
}

.phone-frame {
  width: 178px;
  background: var(--clr-nav);
  border: 3px solid rgba(255,255,255,0.18);
  border-radius: 32px;
  padding: 14px 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  width: 54px;
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 5px;
  margin: 0 auto 10px;
}

.phone-screen {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9/18;
  background: #000;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-home-bar {
  width: 44px;
  height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  margin: 10px auto 0;
}

.app-info { display: flex; flex-direction: column; gap: 20px; }

.app-download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.app-btn:hover { background: rgba(251,192,45,0.12); border-color: rgba(251,192,45,0.3); color: var(--clr-gold); transform: translateY(-2px); }
.app-btn svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
.app-btn-label { font-size: 0.68rem; color: rgba(255,255,255,0.55); display: block; line-height: 1; margin-bottom: 2px; font-weight: 500; }
.app-btn-name { font-size: 0.9rem; font-weight: 700; line-height: 1; }

/* ===================== REVIEW CONTENT ===================== */

.review-content { color: var(--clr-text); line-height: 1.8; }

.review-content h2 {
  font-size: 1.35rem;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #fff;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(251,192,45,0.15);
}

.review-content h2:first-child { margin-top: 0; }

.review-content h3 {
  font-size: 1.1rem;
  margin-top: 1.2em;
  margin-bottom: 0.4em;
  color: var(--clr-gold);
}

.review-content h4 { font-size: 1rem; margin-top: 1em; color: #e8eaf6; }

.review-content p { margin-bottom: 0.9em; }

.review-content ul, .review-content ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.review-content li { margin-bottom: 0.45em; }

.review-content strong { color: var(--clr-gold); font-weight: 700; }

.review-content em { color: var(--clr-text-muted); font-style: italic; }

.review-content a { color: var(--clr-gold); }

.review-content table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.review-content table th,
.review-content table td {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  vertical-align: top;
}

.review-content table th {
  background: rgba(251,192,45,0.1);
  color: var(--clr-gold);
  font-weight: 700;
}

.review-content table tbody tr:nth-child(odd) { background: rgba(255,255,255,0.02); }
.review-content table tbody tr:hover { background: rgba(251,192,45,0.05); }

.review-content blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 12px 18px;
  background: rgba(251,192,45,0.05);
  border-radius: 0 8px 8px 0;
  margin: 1.2em 0;
  font-style: italic;
  color: var(--clr-text-muted);
}

.review-content hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 1.5em 0;
}

.review-content code {
  background: rgba(255,255,255,0.07);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.85em;
}

.review-content img {
  border-radius: var(--radius-sm);
  margin: 1em 0;
  max-width: 100%;
}

/* ===================== REVIEWS ===================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.review-card {
  background: var(--clr-card-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
  border-color: rgba(251,192,45,0.22);
  transform: translateY(-3px);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(251,192,45,0.25);
}

.review-meta { flex: 1; min-width: 0; }
.review-name { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-date { font-size: 0.72rem; color: var(--clr-text-muted); }

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.star-svg { width: 16px; height: 16px; }
.star-svg path { fill: var(--clr-gold); }
.star-svg.half path { fill: url(#half-gradient); }
.star-svg.empty path { fill: rgba(255,255,255,0.15); }

.review-text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===================== REVIEW FORM ===================== */

.review-form { display: flex; flex-direction: column; gap: 14px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-input, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--clr-text);
  font-family: var(--font);
  font-size: 0.88rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: rgba(251,192,45,0.45);
  background: rgba(255,255,255,0.07);
}

.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-textarea { min-height: 100px; resize: vertical; line-height: 1.6; }

.form-stars-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.form-stars { display: flex; flex-direction: row-reverse; gap: 4px; }

.form-stars input { display: none; }

.form-stars label {
  cursor: pointer;
  width: 28px;
  height: 28px;
}

.form-stars label svg { width: 28px; height: 28px; }
.form-stars label svg path { fill: rgba(255,255,255,0.18); transition: fill var(--transition); }
.form-stars input:checked ~ label svg path,
.form-stars label:hover svg path,
.form-stars label:hover ~ label svg path { fill: var(--clr-gold); }

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: 10px;
  color: #81c784;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}

/* ===================== AUTHOR BLOCK ===================== */

.author-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.author-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(251,192,45,0.3);
  flex-shrink: 0;
}

.author-info { flex: 1; min-width: 0; }

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.author-position {
  color: var(--clr-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.author-bio {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.author-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.author-social-link:hover { background: rgba(251,192,45,0.1); color: var(--clr-gold); border-color: rgba(251,192,45,0.25); }
.author-social-link svg { width: 14px; height: 14px; fill: currentColor; }

.author-dates {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.author-date {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 5px;
}
.author-date svg { width: 13px; height: 13px; fill: rgba(255,255,255,0.3); }

/* ===================== FAQ ===================== */

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--clr-card-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover { border-color: rgba(251,192,45,0.2); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text);
  list-style: none;
  transition: color var(--transition);
  user-select: none;
}

.faq-question:hover { color: var(--clr-gold); }

.faq-question::after {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--clr-gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform var(--transition);
}

.faq-item[open] .faq-question { color: var(--clr-gold); }
.faq-item[open] .faq-question::after { transform: rotate(180deg); }

.faq-answer {
  padding: 0 18px 15px;
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===================== SIDEBAR ===================== */

.sidebar-card {
  background: var(--clr-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px;
}

.sidebar-card-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.sidebar-card-title svg { width: 16px; height: 16px; fill: var(--clr-gold); }

.quick-info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

.quick-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
}

.quick-info-icon {
  width: 28px;
  height: 28px;
  background: rgba(251,192,45,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.quick-info-icon svg { width: 14px; height: 14px; fill: var(--clr-gold); }

.quick-info-lbl { font-size: 0.72rem; color: var(--clr-text-muted); display: block; margin-bottom: 1px; }
.quick-info-val { font-weight: 700; color: #fff; font-size: 0.88rem; }

.cta-sidebar {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: center;
}

.cta-sidebar .btn { width: 100%; }

.cta-sidebar-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ===================== RELATED GAMES ===================== */

.related-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.related-game-card {
  background: var(--clr-card-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
}

.related-game-card:hover { border-color: rgba(251,192,45,0.25); transform: translateY(-3px); }

.related-game-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--clr-nav);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.related-game-name {
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===================== FOOTER ===================== */

.site-footer {
  background: var(--clr-nav);
  border-top: 1px solid rgba(251,192,45,0.1);
  padding: 48px 0 24px;
  margin-top: auto;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.footer-logo img { height: 40px; width: auto; object-fit: contain; }

.footer-logo-text { font-size: 0.95rem; font-weight: 800; color: var(--clr-gold); }

.footer-desc {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: rgba(251,192,45,0.12); border-color: rgba(251,192,45,0.3); }
.footer-social a svg { width: 16px; height: 16px; fill: var(--clr-text-muted); }
.footer-social a:hover svg { fill: var(--clr-gold); }

.footer-links { display: flex; gap: 48px; }

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

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--clr-gold); }

.footer-mid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}

.footer-trust-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.trust-badge svg { width: 14px; height: 14px; fill: currentColor; }

.footer-payment-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.footer-provider img { height: 28px; width: auto; object-fit: contain; opacity: 0.7; }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
}

.footer-copyright {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

.footer-legal {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.65;
}

.footer-legal a { color: rgba(251,192,45,0.4); }
.footer-legal a:hover { color: var(--clr-gold); }

.footer-email {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.footer-email svg { width: 14px; height: 14px; fill: var(--clr-gold); }
.footer-email a { color: var(--clr-gold); }

/* ===================== INFO PAGES ===================== */

.info-content-wrap {
  max-width: 820px;
  margin: 40px auto;
  padding: 0 18px;
}

.info-content-wrap h1 {
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(251,192,45,0.15);
}

.info-block {
  background: var(--clr-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

.info-block h2 {
  color: var(--clr-gold);
  font-size: 1.1rem;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.info-block h2:first-child { margin-top: 0; }

.info-block p { margin-bottom: 0.9em; }

/* ===================== ANIMATIONS ===================== */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,192,45,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(251,192,45,0); }
}

.animate-fade { animation: fadeIn 0.6s ease both; }
.animate-up { animation: fadeInUp 0.6s ease both; }
.animate-up-1 { animation-delay: 0.1s; }
.animate-up-2 { animation-delay: 0.2s; }
.animate-up-3 { animation-delay: 0.3s; }

.btn--gold { animation: pulse-glow 2.5s infinite; }
.btn--gold:hover { animation: none; }

/* ===================== HELPERS ===================== */

.text-gold { color: var(--clr-gold); }
.text-purple { color: #ce93d8; }
.text-muted { color: var(--clr-text-muted); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 0.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

.divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 24px 0;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(251,192,45,0.1);
  color: var(--clr-gold);
  border: 1px solid rgba(251,192,45,0.2);
}

/* ===================== UNUSED STUBS (uniqueness) ===================== */

.wp-block-heading { line-height: inherit; }
.entry-content { position: relative; }
.elementor-widget-container { display: block; }
.wp-post-image { display: block; }
.site-main { flex: 1; }
.wpcf7-form { display: block; }
.post-thumbnail { display: block; }
.wp-caption { text-align: center; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 16px; }
.alignright { float: right; margin-left: 16px; }
.xk8m2-overlay { display: none; }
.p9w3r-hidden { visibility: hidden; }
.a4b7q-spacer { height: 0; overflow: hidden; }
.z2n5s-tracker { position: absolute; opacity: 0; pointer-events: none; }
.v6c1y-buffer { display: none; }
.f8l3t-mask { overflow: hidden; max-height: 0; }
.k3w7p-void { display: none; }
.q9x4m-layer { opacity: 0; position: absolute; pointer-events: none; }

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1100px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .app-block-inner { grid-template-columns: 1fr; }
  .phone-mockup { margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 24px; }
  .related-games-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-buttons .btn { display: none; }

  .burger { display: flex; }

  /* demo block */
  .game-frame-wrap {
    aspect-ratio: unset;
    height: 460px;
  }

  .game-overlay {
    justify-content: flex-start;
    padding: 20px 16px 16px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .game-overlay-title { font-size: 1.1rem; }
  .game-overlay-sub { font-size: 0.78rem; margin: 0 4px; }

  .game-overlay > img { max-width: 110px !important; }

  #game-iframe { height: 100%; }

  .game-overlay .game-btns {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
  }

  .game-overlay .game-btns .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 12px 16px;
  }

  .game-btns {
    flex-direction: column;
    gap: 10px;
  }

  .game-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .mobile-menu { display: block; }
  .mobile-menu-overlay { display: block; }

  .hero { min-height: 420px; }
  .hero-content { padding: 40px 0; }
  .hero-stats { gap: 18px; }

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

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

  .form-row { grid-template-columns: 1fr; }

  .section-block { padding: 20px; }

  .info-block { padding: 20px; }
}

@media (max-width: 540px) {
  .hero-cta { flex-direction: column; }

  /* info-table: stack rows on small screens */
  .info-table,
  .info-table thead,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table thead { display: none; }

  .info-table tr {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .info-table tbody tr:last-child { border-bottom: none; }

  .info-table tbody tr:nth-child(odd) td { background: none; }

  .info-table td {
    padding: 3px 12px;
    border: none;
    width: 100% !important;
  }

  .info-table td:first-child {
    width: 100% !important;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    margin-bottom: 2px;
  }

  .info-table td:last-child {
    font-size: 0.9rem;
  }
  .hero-cta .btn { width: 100%; }
  .game-btns { flex-direction: column; }
  .game-btns .btn { width: 100%; }
  .app-download-btns { flex-direction: column; }
  .related-games-grid { grid-template-columns: repeat(2, 1fr); }
}
