/* laser247-india.com v13 — hybrid-brand lobby */

   Visual: soft-green commerce, light surfaces, lime accent, cool-gray frame.
   Palette: light page field, dark ink, single restrained action color.
   Type: premium modern sans (Manrope + Noto Sans Devanagari fallback). */

:root {
  --surface-page: #f4f7f3;
  --surface-raised: #ffffff;
  --surface-muted: #eaf0e7;
  --surface-band: #f8faf6;
  --surface-game: #0f1a17;
  --text-primary: #0f1f17;
  --text-secondary: #4a5d52;
  --text-muted: #7a8a82;
  --line-subtle: rgba(15, 31, 23, 0.08);
  --line-soft: rgba(15, 31, 23, 0.14);
  --accent: #5fb83d;
  --accent-strong: #3d9c25;
  --accent-soft: rgba(95, 184, 61, 0.12);
  --accent-ink: #0a1a0e;
  --info: #1c7d6f;
  --danger: #b64545;
  --gold: #d4a017;
  --focus-ring: 0 0 0 3px rgba(95, 184, 61, 0.45);
  --radius-card: 14px;
  --radius-pill: 999px;
  --radius-chip: 8px;
  --shadow-card: 0 1px 2px rgba(15, 31, 23, 0.05), 0 4px 14px rgba(15, 31, 23, 0.06);
  --shadow-pop: 0 6px 24px rgba(15, 31, 23, 0.12);
  --max: 1280px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Manrope', 'Noto Sans', 'Noto Sans Devanagari', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
body { overflow-x: hidden; }

a {
  color: var(--accent-strong);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', 'Noto Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin: 0 0 0.6em;
  color: var(--text-primary);
}
h1 { font-size: clamp(28px, 4.4vw, 48px); letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(22px, 3.2vw, 32px); }
h3 { font-size: clamp(18px, 2.4vw, 22px); }
p { margin: 0 0 1em; }

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

/* === Top brand utility strip === */
.utility-bar {
  background: linear-gradient(135deg, #0f2b1d 0%, #163826 100%);
  color: #e8f3e6;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.utility-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.utility-bar .util-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}
.utility-bar .util-pill {
  background: rgba(95, 184, 61, 0.2);
  color: #b8e09a;
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.utility-bar .util-text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.utility-bar .util-cta {
  background: var(--accent);
  color: #0a1a0e;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  white-space: nowrap;
  text-decoration: none;
}
.utility-bar .util-cta:hover { background: #74d04c; text-decoration: none; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface-raised);
  border-bottom: 1px solid var(--line-subtle);
  box-shadow: 0 1px 0 rgba(15, 31, 23, 0.03);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  flex: 0 0 auto;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0a1a0e;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-name {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.brand-tag {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: -2px;
}
.main-nav {
  display: none;
  flex: 1 1 auto;
  justify-content: center;
  gap: 4px;
}
.main-nav a {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none;
}
.main-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent-strong);
}
.main-nav a.is-cta {
  background: var(--accent);
  color: var(--accent-ink);
  margin-left: 4px;
}
.main-nav a.is-cta:hover { background: #74d04c; }

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.header-cta-ghost {
  display: none;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  background: transparent;
  border: 1.5px solid var(--line-soft);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
}
.header-cta-ghost:hover { background: var(--accent-soft); border-color: var(--accent); text-decoration: none; }
.header-cta {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  text-decoration: none;
}
.header-cta:hover { background: #74d04c; text-decoration: none; }

.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1.5px solid var(--line-soft);
  background: var(--surface-raised);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 60;
}
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text-primary);
  margin: 3px 0;
  border-radius: 2px;
  transition: transform 0.18s, opacity 0.18s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .header-cta-ghost { display: inline-flex; }
  .hamburger { display: none; }
}

/* === Mobile drawer === */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(15, 31, 23, 0.4);
  display: none;
}
.mobile-drawer.is-open { display: block; }
.mobile-drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 86vw);
  background: var(--surface-raised);
  box-shadow: -8px 0 24px rgba(15, 31, 23, 0.18);
  display: flex;
  flex-direction: column;
  padding: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-subtle);
  margin-bottom: 12px;
}
.mobile-drawer-close {
  background: var(--surface-muted);
  border: none;
  width: 36px; height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-primary);
}
.mobile-drawer-nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-drawer-nav a {
  padding: 12px 12px;
  border-radius: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.mobile-drawer-nav a:hover, .mobile-drawer-nav a:focus {
  background: var(--accent-soft);
  color: var(--accent-strong);
}
.mobile-drawer-nav a.is-cta {
  background: var(--accent);
  color: var(--accent-ink);
  margin-top: 8px;
  text-align: center;
  font-weight: 800;
}
.mobile-drawer-utility {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-subtle);
  font-size: 13px;
  color: var(--text-muted);
}
.mobile-drawer-utility a {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
}

/* === Sticky mobile CTA === */
.sticky-cta {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 45;
  display: flex;
  gap: 8px;
  pointer-events: none;
}
.sticky-cta a {
  pointer-events: auto;
  flex: 1 1 0;
  text-align: center;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: var(--shadow-pop);
  white-space: nowrap;
}
.sticky-cta a:hover { background: #74d04c; text-decoration: none; }
body.has-sticky { padding-bottom: 84px; }

@media (min-width: 1024px) {
  .sticky-cta { display: none; }
  body.has-sticky { padding-bottom: 0; }
}

/* === Hero === */
.hero {
  background: linear-gradient(160deg, #f4f7f3 0%, #e6efe2 50%, #d8e6d3 100%);
  position: relative;
  padding: 32px 0 40px;
  overflow: visible;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(95, 184, 61, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -180px; left: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(28, 125, 111, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .hero { padding: 64px 0 80px; }
  .hero .container {
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(95, 184, 61, 0.18);
  color: var(--accent-strong);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  margin-bottom: 18px;
  color: var(--text-primary);
}
@media (max-width: 599px) {
  .hero h1 { font-size: 28px; line-height: 1.15; margin-bottom: 14px; }
  .hero-lede { font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
  .hero-cta { margin-bottom: 18px; }
  .hero-cta .btn { flex: 1 1 auto; padding: 11px 16px; font-size: 14px; }
  .hero-trust { gap: 12px 16px; padding-top: 14px; }
  .hero-trust-item { font-size: 12px; gap: 8px; }
  .hero-trust-icon { width: 26px; height: 26px; flex: 0 0 26px; font-size: 13px; }
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-strong) 0%, #1c7d6f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 4px 14px rgba(95, 184, 61, 0.35);
}
.btn-primary:hover { background: #74d04c; text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--line-soft);
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-soft); text-decoration: none; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-subtle);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.hero-trust-icon {
  width: 28px; height: 28px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex: 0 0 28px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #103b2e 0%, #1a5742 100%);
  box-shadow: var(--shadow-pop);
}
@media (max-width: 599px) {
  .hero-visual { aspect-ratio: auto; min-height: 220px; max-height: none; height: auto; }
  .hero::before { width: 160px; height: 160px; top: -50px; right: 20px; }
  .hero::after { width: 180px; height: 180px; bottom: 0; left: -50px; }
  .hero-trust { padding-bottom: 20px; }
  .hero-overlay {
    position: absolute;
    left: 12px; right: 12px; bottom: 12px;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 12px 14px;
  }
  .hero-overlay-stat { flex: 1 1 30%; text-align: center; }
  .hero-overlay-stat strong { font-size: 20px; }
  .hero-overlay-stat span { font-size: 10px; }
}
.hero-visual-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
  padding: 12px;
}
.hero-tile {
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}
.hero-tile-label {
  position: absolute;
  bottom: 6px; left: 6px;
  background: rgba(15, 31, 23, 0.78);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  white-space: nowrap;
}
.hero-overlay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  padding: 14px 16px;
  backdrop-filter: blur(4px);
  border: 1px solid var(--line-subtle);
}
@media (min-width: 600px) {
  .hero-overlay {
    position: absolute;
    left: 18px; right: 18px; bottom: 18px;
  }
}
.hero-overlay-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.hero-overlay-stat span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === Sections === */
.section {
  padding: 48px 0;
  border-top: 1px solid var(--line-subtle);
}
.section:first-of-type { border-top: none; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-head h2 { margin: 0; }
.section-head .section-sub {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 460px;
}
.section-head a { font-size: 14px; font-weight: 700; }

/* === Trust strip === */
.trust-strip {
  background: var(--surface-band);
  padding: 28px 0;
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 720px) {
  .trust-strip .container { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
}
.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--surface-raised);
  border-radius: var(--radius-card);
  border: 1px solid var(--line-subtle);
  min-width: 0;
  overflow: hidden;
}
.trust-card > div { min-width: 0; }
.trust-card h3 { font-size: 13px; margin: 0 0 4px; overflow-wrap: anywhere; }
.trust-card p { font-size: 11px; color: var(--text-muted); margin: 0; line-height: 1.4; overflow-wrap: anywhere; }
.trust-card-icon {
  width: 40px; height: 40px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 40px;
}

/* === Category rail === */
.cat-rail {
  background: var(--surface-raised);
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
  padding: 14px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.cat-rail-inner {
  display: flex;
  gap: 8px;
  padding: 0 20px;
  max-width: var(--max);
  margin: 0 auto;
}
.cat-rail a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: none;
  background: var(--surface-muted);
  border: 1px solid transparent;
  white-space: nowrap;
}
.cat-rail a:hover, .cat-rail a.is-active {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: var(--accent);
  text-decoration: none;
}

/* === Game grid === */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (min-width: 600px) { .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px) { .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1180px) { .game-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; } }

.game-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-raised);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.game-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pop);
  border-color: var(--accent);
  text-decoration: none;
}
.game-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface-muted);
  overflow: hidden;
}
.game-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.game-card-meta {
  padding: 10px 12px 12px;
}
.game-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
.game-card-provider {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.game-card-cat {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(15, 31, 23, 0.85);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === Featured rail === */
.featured-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 76%;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
@media (min-width: 720px) { .featured-rail { grid-auto-columns: 38%; } }
@media (min-width: 1024px) { .featured-rail { grid-auto-columns: 24%; } }
.featured-card {
  scroll-snap-align: start;
  background: var(--surface-raised);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.featured-card:hover { box-shadow: var(--shadow-pop); border-color: var(--accent); text-decoration: none; }
.featured-card .game-card-media { aspect-ratio: 4 / 3; }
.featured-card-body { padding: 12px 14px 14px; }
.featured-card-body h3 { font-size: 15px; margin: 0 0 4px; }
.featured-card-body p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* === Split rows === */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.2fr 1fr; gap: 48px; }
  .split.split-rev { grid-template-columns: 1fr 1.2fr; }
}

/* === Methodology / spec card === */
.spec-card {
  background: var(--surface-raised);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-card);
  padding: 24px;
}
.spec-card h3 { font-size: 16px; margin: 0 0 12px; color: var(--text-primary); }
.spec-card ul { list-style: none; padding: 0; margin: 0 0 16px; }
.spec-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-top: 1px solid var(--line-subtle);
}
.spec-card ul li:first-child { border-top: none; }
.spec-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  flex: 0 0 6px;
}

/* === Tables === */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--surface-raised);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.data-table th, .data-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line-subtle);
}
.data-table th {
  background: var(--surface-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--surface-band); }

/* === Stat tiles === */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 720px) { .stat-row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stat-tile {
  background: var(--surface-raised);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-card);
  padding: 16px;
}
.stat-tile strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-tile span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* === Score strip (signature device) === */
.score-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  background: var(--surface-game);
  border-radius: 16px;
  padding: 16px;
  color: #e8f3e6;
}
@media (min-width: 720px) { .score-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.score-cell {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 14px;
}
.score-cell strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}
.score-cell span {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #93a89a;
  font-weight: 600;
}
.score-cell small {
  display: block;
  font-size: 12px;
  color: #c8d6c8;
  margin-top: 6px;
}

/* === News cards === */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.news-card {
  background: var(--surface-raised);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.news-card:hover { box-shadow: var(--shadow-pop); border-color: var(--accent); text-decoration: none; }
.news-card-thumb {
  aspect-ratio: 16 / 9;
  background: var(--surface-muted);
  overflow: hidden;
}
.news-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 14px 16px 16px; }
.news-card-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 4px;
}
.news-card h3 { font-size: 16px; margin: 0 0 6px; line-height: 1.3; }
.news-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.news-card-meta time { font-weight: 600; }

/* === Promo band === */
.promo-band {
  background: linear-gradient(135deg, #103b2e 0%, #1a5742 60%, #2a7a5a 100%);
  color: #e8f3e6;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.promo-band::after {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(95, 184, 61, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.promo-band h2 { color: #ffffff; }
.promo-band p { color: #c8d6c8; max-width: 600px; }
.promo-band .btn-primary { background: var(--accent); color: var(--accent-ink); }
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}
@media (min-width: 720px) { .promo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.promo-cell {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
  position: relative;
  z-index: 1;
}
.promo-cell strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}
.promo-cell span {
  font-size: 12px;
  color: #c8d6c8;
  display: block;
  line-height: 1.5;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface-raised);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-card);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--accent-strong);
  transition: transform 0.18s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item-body { padding: 0 18px 18px; }
.faq-item-body p { font-size: 14px; color: var(--text-secondary); margin: 0; }

/* === Footer === */
.site-footer {
  background: var(--surface-game);
  color: #c8d6c8;
  padding: 56px 0 24px;
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.2fr repeat(3, 1fr); } }
.footer-brand .brand-name { color: #ffffff; }
.footer-brand .brand-mark { background: var(--accent); }
.footer-brand p { color: #93a89a; max-width: 360px; margin: 12px 0 0; font-size: 13px; }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93a89a;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: #e8f3e6; text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  color: #93a89a;
}
.footer-bottom a { color: #93a89a; }
.footer-bottom a:hover { color: #c8d6c8; }
.disclosure {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 14px;
  font-size: 12px;
  color: #93a89a;
  line-height: 1.55;
  margin-top: 16px;
  grid-column: 1 / -1;
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--surface-raised);
  border-top: 1px solid var(--line-soft);
  box-shadow: 0 -4px 18px rgba(15, 31, 23, 0.1);
  padding: 16px;
  z-index: 80;
  display: none;
}
.cookie-banner.is-open { display: block; }
.cookie-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 12px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .cookie-banner-inner { grid-template-columns: 1fr auto; } }
.cookie-banner p { font-size: 13px; color: var(--text-secondary); margin: 0; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-actions .btn { padding: 10px 18px; font-size: 13px; }

/* === Article (child page hero) === */
.article-hero {
  background: linear-gradient(160deg, #f4f7f3 0%, #d8e6d3 100%);
  padding: 48px 0;
  border-bottom: 1px solid var(--line-subtle);
}
.article-hero h1 { max-width: 880px; }
.article-hero .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.article-hero .article-meta strong { color: var(--text-secondary); font-weight: 700; }

.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.article-body h2 { margin-top: 32px; }
.article-body h3 { margin-top: 24px; }
.article-body p, .article-body li { font-size: 16px; line-height: 1.7; color: var(--text-secondary); }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 16px; }
.article-body li { margin-bottom: 6px; }
.article-body img { border-radius: var(--radius-card); margin: 16px 0; }
.article-body figure { margin: 20px 0; }
.article-body figcaption {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}
.callout {
  background: var(--surface-band);
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 15px;
  color: var(--text-secondary);
}
.callout strong { color: var(--text-primary); display: block; margin-bottom: 4px; }

/* === Game detail page === */
.game-hero {
  background: var(--surface-game);
  color: #e8f3e6;
  padding: 32px 0;
}
.game-hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 720px) {
  .game-hero .container { grid-template-columns: 280px 1fr; gap: 32px; }
}
.game-hero-art {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.game-hero-art img { width: 100%; height: 100%; object-fit: cover; }
.game-hero h1 { color: #ffffff; font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 8px; }
.game-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.game-hero-meta .chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #c8d6c8;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb-light { color: #93a89a; }
.breadcrumb-light a { color: #c8d6c8; }

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}
@media (min-width: 720px) { .fact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.fact-cell {
  background: var(--surface-raised);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-card);
  padding: 14px 16px;
}
.fact-cell strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 2px;
}
.fact-cell span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* === Banner notice === */
.notice-bar {
  background: var(--surface-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-subtle);
  font-size: 13px;
  color: var(--text-secondary);
}
.notice-bar strong { color: var(--text-primary); }
.notice-bar a { font-weight: 700; }

/* === Inline image row === */
.inline-image-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
  align-items: center;
}
@media (min-width: 720px) {
  .inline-image-row { grid-template-columns: 1fr 1.4fr; }
  .inline-image-row.is-rev { grid-template-columns: 1.4fr 1fr; }
}
.inline-image-row figure { margin: 0; }
.inline-image-row img { border-radius: var(--radius-card); }
.inline-image-row figcaption {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* === Filter bar === */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-subtle);
  margin-bottom: 20px;
}
.filter-bar label { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.filter-bar select, .filter-bar input {
  font: inherit;
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-raised);
  color: var(--text-primary);
  min-width: 0;
}
.filter-bar input[type="search"] { flex: 1 1 200px; min-width: 0; }
.filter-bar .filter-count {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* === Loading skeleton === */
.skeleton {
  background: linear-gradient(90deg, var(--surface-muted) 0%, var(--surface-band) 50%, var(--surface-muted) 100%);
  background-size: 200% 100%;
  animation: skel 1.4s ease-in-out infinite;
  border-radius: 8px;
}
@keyframes skel { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* === A11y helper === */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--accent); color: var(--accent-ink);
  padding: 8px 14px; border-radius: 8px; font-weight: 700;
  z-index: 100; transition: top 0.15s;
}
.skip-link:focus { top: 8px; }

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}

/* === Editor row === */
.editor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .editor-grid { grid-template-columns: 1fr 280px; } }
.editor-aside {
  background: var(--surface-raised);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-card);
  padding: 20px;
  font-size: 13px;
  align-self: start;
}
.editor-aside h3 { font-size: 14px; margin: 0 0 8px; }
.editor-aside p { margin: 0 0 12px; color: var(--text-secondary); }

/* === Helper utilities === */
.muted { color: var(--text-muted); }
.small { font-size: 13px; }
.center { text-align: center; }
.hide-mobile { display: none; }
@media (min-width: 720px) { .hide-mobile { display: initial; } .hide-desktop { display: none; } }
.chip {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.chip-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #c8d6c8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-soft { background: var(--surface-band); }
.bg-muted { background: var(--surface-muted); }
.bg-dark { background: var(--surface-game); color: #e8f3e6; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}