/* ==========================================================================
   BigBassBlast.com — Design System
   ========================================================================== */

/* ---- Tokens -------------------------------------------------------------- */
:root {
  /* Color: one background, one surface, one text pair, one border, one accent */
  --bg: #0a0f1a;
  --surface: #121b2c;
  --surface-2: #1a2438;
  --text: #eef2f7;
  --text-secondary: #93a4bb;
  --border: #253049;
  --border-strong: #32405e;

  --accent: #3b9eff;
  --accent-hover: #62b1ff;
  --accent-tint: rgba(59, 158, 255, 0.12);

  /* Reserved for affiliate/promo emphasis only — never used as a general accent */
  --promo: #e0ac3f;
  --promo-tint: rgba(224, 172, 63, 0.12);

  --success: #3ecf8e;
  --success-tint: rgba(62, 207, 142, 0.12);
  --warning: #e0ac3f;
  --warning-tint: rgba(224, 172, 63, 0.1);
  --error: #ef5a60;
  --error-tint: rgba(239, 90, 96, 0.1);

  /* Type scale */
  --fs-display: clamp(2.25rem, 1.4rem + 3.2vw, 3.5rem);
  --fs-h1: clamp(1.75rem, 1.35rem + 1.6vw, 2.5rem);
  --fs-h2: clamp(1.375rem, 1.2rem + 0.7vw, 1.75rem);
  --fs-h3: 1.125rem;
  --fs-body: 1rem;
  --fs-body-sm: 0.9375rem;
  --fs-label: 0.75rem;
  --fs-caption: 0.8125rem;

  /* Spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-24: 96px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Shadow — soft, low-opacity, used sparingly */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.28);

  --header-h: 64px;
  --container: 1180px;
  --container-narrow: 720px;

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
ul, ol { padding-left: 1.25em; }
table { width: 100%; border-collapse: collapse; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-weight: 800; color: var(--text); line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); margin-top: var(--sp-12); margin-bottom: var(--sp-3); }
h3 { font-size: var(--fs-h3); margin-top: var(--sp-6); margin-bottom: var(--sp-2); }
p { color: var(--text); margin-bottom: var(--sp-4); }
p, li { font-size: var(--fs-body-sm); }
main p, main li { color: var(--text); }
strong { font-weight: 700; color: var(--text); }
.text-secondary, .muted { color: var(--text-secondary); }
.accent { color: var(--accent); }

main { flex: 1 0 auto; }

/* Focus visibility everywhere */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Layout ---------------------------------------------------------------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-6); }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--sp-6); }
.section { padding-block: var(--sp-12); }
.section-head { max-width: 620px; margin-bottom: var(--sp-8); }
.section-head h2 { margin-top: 0; }
.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 1000;
  background: var(--accent); color: #04101f; font-weight: 700;
  padding: 10px 16px; border-radius: var(--radius-sm); text-decoration: none;
  transition: top 0.15s var(--ease);
}
.skip-link:focus { top: 8px; }

.layout-with-rail { display: flex; gap: var(--sp-8); align-items: flex-start; max-width: 1440px; margin-inline: auto; padding-inline: var(--sp-6); }
.layout-with-rail .main-col { flex: 1; min-width: 0; }
.layout-with-rail .main-col .container,
.layout-with-rail .main-col .container-narrow { padding-inline: 0; max-width: none; }
.rail { width: 300px; flex-shrink: 0; }
.rail-sticky { position: sticky; top: calc(var(--header-h) + 16px); display: flex; flex-direction: column; gap: var(--sp-4); }
@media (max-width: 1100px) { .rail { display: none; } }

/* ---- Icons ------------------------------------------------------------------ */
.icon { width: 20px; height: 20px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 28px; height: 28px; }

/* ---- Header / Nav ------------------------------------------------------------ */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 200;
  height: var(--header-h);
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 30px; width: auto; }
.nav-logo-text { font-size: 1.05rem; font-weight: 800; color: var(--text); text-decoration: none; letter-spacing: -0.01em; }
.nav-logo-text span { color: var(--promo); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: var(--text-secondary); text-decoration: none; font-size: 0.84rem; font-weight: 500;
  padding: 8px 10px; border-radius: var(--radius-sm); transition: color 0.15s var(--ease), background 0.15s var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--surface-2); }
.nav-link.is-active { color: var(--text); background: var(--accent-tint); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 4px; background: none; border: none; cursor: pointer;
  color: var(--text-secondary); font: inherit; font-size: 0.84rem; font-weight: 500;
  padding: 8px 10px; border-radius: var(--radius-sm);
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.nav-dropdown-toggle:hover, .nav-dropdown-toggle[aria-expanded="true"] { color: var(--text); background: var(--surface-2); }
.nav-dropdown-toggle.is-active { color: var(--text); background: var(--accent-tint); }
.nav-dropdown-toggle .icon { width: 14px; height: 14px; transition: transform 0.15s var(--ease); }
.nav-dropdown-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 180px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); padding: 6px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease), visibility 0.15s;
  z-index: 50;
}
.nav-dropdown-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-panel a { display: block; padding: 8px 10px; border-radius: var(--radius-sm); color: var(--text-secondary); text-decoration: none; font-size: 0.875rem; white-space: nowrap; }
.nav-dropdown-panel a:hover { background: var(--surface-2); color: var(--text); }
.nav-dropdown-panel a.is-active { color: var(--text); background: var(--accent-tint); }

.nav-cta {
  margin-left: var(--sp-2);
  background: var(--accent); color: #04101f; font-weight: 700; font-size: 0.875rem;
  padding: 9px 18px; border-radius: var(--radius-sm); text-decoration: none; white-space: nowrap;
  transition: background 0.15s var(--ease);
}
.nav-cta:hover { background: var(--accent-hover); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: transparent; cursor: pointer;
}
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1160px) {
  .nav-links {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; padding: var(--sp-2);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.15s var(--ease), transform 0.15s var(--ease), visibility 0.15s;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav-link, .nav-cta { width: 100%; text-align: left; }
  .nav-cta { margin-left: 0; margin-top: 4px; text-align: center; }
  .nav-toggle { display: inline-flex; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
  .nav-dropdown-panel {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; padding: 0 0 4px 14px;
    display: flex;
  }
}
@media (min-width: 1161px) and (max-width: 1300px) {
  .nav-link { padding: 8px 8px; font-size: 0.8rem; }
}

/* ---- Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 0.9375rem; padding: 13px 26px; border-radius: var(--radius-md);
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease), transform 0.1s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; border-radius: var(--radius-sm); }
.btn-primary { background: var(--accent); color: #04101f; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary { background: var(--surface-2); color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--accent); }
.btn-ghost { background: transparent; color: var(--text-secondary); border-color: var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--border-strong); }
.btn-promo { background: var(--promo); color: #1a1206; }
.btn-promo:hover { filter: brightness(1.08); }
.btn-block { width: 100%; }

/* ---- Badges / Tags -------------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; background: var(--surface-2); color: var(--text-secondary); border: 1px solid var(--border);
}
.badge-accent { color: var(--accent); background: var(--accent-tint); border-color: transparent; }
.tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 4px 10px; border-radius: var(--radius-sm); background: var(--accent-tint); color: var(--accent);
}

/* ---- Cards --------------------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.card-hover { transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.card-hover:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-link { display: block; text-decoration: none; color: inherit; }

.grid { display: grid; gap: var(--sp-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-auto-sm { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
@media (max-width: 720px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* Feature / icon card */
.feature-card { display: flex; flex-direction: column; gap: var(--sp-3); }
.feature-card .icon-wrap {
  width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--accent-tint);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.feature-card h3 { margin: 0; }
.feature-card p { margin: 0; color: var(--text-secondary); }

/* Stat */
.stat { text-align: center; padding: var(--sp-4); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); }
.stat-value { display: block; font-size: 1.4rem; font-weight: 800; color: var(--text); }
.stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); }
.stat-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }

/* ---- Hero ---------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: calc(var(--header-h) + var(--sp-12)) 0 var(--sp-12); text-align: center; }
.hero > * { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: var(--sp-4);
}
.hero h1 { margin-bottom: var(--sp-3); }
.hero-subtitle { max-width: 600px; margin: 0 auto var(--sp-8); color: var(--text-secondary); font-size: 1.0625rem; }
.hero-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; margin-bottom: var(--sp-4); }
.hero-links { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; margin-bottom: var(--sp-8); }
.hero-stats { margin-top: var(--sp-2); }

/* Signature hero graphic — a slow ripple, on-brand for a fishing game, restrained to one accent color */
.hero-visual {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(760px, 150vw); aspect-ratio: 1; pointer-events: none; z-index: 0;
}
.hero-visual svg { width: 100%; height: 100%; }
.hero-visual circle {
  fill: none; stroke: var(--accent); stroke-width: 1.2; opacity: 0;
  transform-origin: 200px 200px;
}
.hero-visual .ripple-1 { animation: hero-ripple 4.8s ease-out infinite; }
.hero-visual .ripple-2 { animation: hero-ripple 4.8s ease-out infinite; animation-delay: 1.6s; }
.hero-visual .ripple-3 { animation: hero-ripple 4.8s ease-out infinite; animation-delay: 3.2s; }
.hero-visual .hero-glow {
  fill: url(#heroGlow); animation: hero-glow-pulse 6s ease-in-out infinite;
}
@keyframes hero-ripple {
  0%   { r: 30; opacity: 0.5; stroke-width: 2px; }
  100% { r: 195; opacity: 0; stroke-width: 0.4px; }
}
@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.85; }
}
.hero-visual.is-promo circle:not(.hero-glow) { stroke: var(--promo); }
@media (prefers-reduced-motion: reduce) {
  .hero-visual .ripple-1, .hero-visual .ripple-2, .hero-visual .ripple-3 { animation: none; opacity: 0.18; r: 120; }
  .hero-visual .hero-glow { animation: none; opacity: 0.6; }
}
@media (max-width: 640px) { .hero-visual { opacity: 0.7; } }

/* ---- Scroll reveal (class applied by JS only — content is fully visible without JS) --- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---- Breadcrumb ------------------------------------------------------------------ */
.breadcrumb { font-size: var(--fs-caption); color: var(--text-secondary); margin-bottom: var(--sp-4); }
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- Table ---------------------------------------------------------------------- */
.table-wrap { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; overflow-x: auto; margin: var(--sp-4) 0 var(--sp-6); }
table.data-table { min-width: 480px; }
.data-table th, .data-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.data-table th { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.72rem; background: var(--surface); }
.data-table td { color: var(--text); background: var(--surface); }
.data-table tr:last-child td { border-bottom: none; }

/* ---- Callouts (tip / warning) ------------------------------------------------------ */
.callout { display: flex; gap: 12px; padding: var(--sp-4) var(--sp-5, 20px); border-radius: var(--radius-md); margin: var(--sp-4) 0; }
.callout p { margin: 0; }
.callout .icon { margin-top: 2px; }
.callout-info { background: var(--accent-tint); border: 1px solid transparent; border-left: 3px solid var(--accent); color: var(--text); }
.callout-info .icon { color: var(--accent); }
.callout-warning { background: var(--warning-tint); border-left: 3px solid var(--warning); }
.callout-warning .icon { color: var(--warning); }

/* ---- FAQ / Accordion --------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-6); }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 20px; font-weight: 700; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { transition: transform 0.2s var(--ease); color: var(--text-secondary); }
.faq-item[open] summary .icon { transform: rotate(180deg); }
.faq-body { padding: 0 20px 18px; color: var(--text-secondary); font-size: 0.9375rem; }
.faq-body a { color: var(--accent); }

/* ---- Pros / Cons ----------------------------------------------------------------------- */
.split-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); margin: var(--sp-4) 0; }
.split-list .card h4 { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--sp-3); margin-top: 0; }
.split-list .col-pos h4 { color: var(--success); }
.split-list .col-neg h4 { color: var(--error); }
.split-list ul { padding-left: 1.1em; margin: 0; }
.split-list li { margin-bottom: 6px; }
@media (max-width: 640px) { .split-list { grid-template-columns: 1fr; } }

/* ---- Score bars ------------------------------------------------------------------------- */
.score-row { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-3); }
.score-row:last-child { margin-bottom: 0; }
.score-label { font-size: 0.875rem; color: var(--text-secondary); width: 150px; flex-shrink: 0; }
.score-track { flex: 1; background: var(--surface-2); border-radius: 6px; height: 8px; overflow: hidden; }
.score-fill { height: 100%; border-radius: 6px; background: var(--accent); transition: width 1s var(--ease); }
.score-num { font-size: 0.875rem; font-weight: 700; width: 34px; text-align: right; }

/* ---- CTA / Promo banner ----------------------------------------------------------------- */
.promo-banner {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--sp-12) var(--sp-8); text-align: center;
}
.promo-banner h2 { margin-top: 0; }
.promo-banner p { color: var(--text-secondary); margin-bottom: var(--sp-6); }
.disclaimer-fine { font-size: 0.75rem; color: var(--text-secondary); margin-top: var(--sp-3); opacity: 0.85; }

/* Rewards / code display */
.code-chip {
  display: inline-block; background: var(--promo-tint); border: 1.5px solid var(--promo); color: var(--promo);
  font-size: 1.5rem; font-weight: 800; padding: 8px 28px; border-radius: var(--radius-md); letter-spacing: 0.2em;
}
.rewards-block {
  background: var(--promo-tint); border: 1px solid var(--promo); border-radius: var(--radius-lg);
  padding: var(--sp-6); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap;
  margin: var(--sp-4) 0 var(--sp-6);
}
.rewards-block h3 { color: var(--promo); margin: 0 0 4px; font-size: 1rem; }
.rewards-block p { margin: 0; color: var(--text-secondary); font-size: 0.875rem; }

/* ---- Ad slots (sponsor banners) ---------------------------------------------------------- */
.ad-slot {
  display: block; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border);
  background: var(--surface); text-decoration: none; transition: border-color 0.15s var(--ease);
}
.ad-slot:hover { border-color: var(--border-strong); }
.ad-slot-horizontal { width: 100%; margin: var(--sp-6) 0; }
.ad-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); opacity: 0.7; padding: 6px 10px 0; }

/* ---- Casino card ------------------------------------------------------------------------- */
.casino-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--sp-6); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  flex-wrap: wrap; margin-bottom: var(--sp-4);
}
.casino-card.is-top { border-color: var(--promo); }
.casino-left { display: flex; align-items: center; gap: var(--sp-4); }
.rank-badge { font-size: 1.6rem; font-weight: 800; color: var(--promo); }
.casino-logo { height: 44px; width: auto; }
.casino-info .bonus-line { font-size: 0.875rem; color: var(--promo); font-weight: 700; margin-bottom: 8px; }
.casino-info .tags { display: flex; flex-wrap: wrap; gap: 6px; }
@media (max-width: 640px) { .casino-card { flex-direction: column; align-items: stretch; } }

/* ---- VS comparison -------------------------------------------------------------------------- */
.vs-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--sp-4); align-items: center; margin: var(--sp-6) 0; }
.vs-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--sp-6); }
.vs-card.is-subject { border-color: var(--accent); }
.vs-card h3 { margin-top: 0; margin-bottom: var(--sp-3); font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.vs-stat { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.vs-stat:last-child { border-bottom: none; }
.vs-stat .k { color: var(--text-secondary); }
.vs-stat .v { font-weight: 700; }
.vs-divider { font-size: 0.8125rem; font-weight: 800; color: var(--text-secondary); text-align: center; }
@media (max-width: 640px) { .vs-grid { grid-template-columns: 1fr; } .vs-divider { display: none; } }

.verdict-box { background: var(--accent-tint); border: 1px solid var(--accent); border-radius: var(--radius-md); padding: var(--sp-5, 20px); margin: var(--sp-4) 0; }
.verdict-box.is-alt { background: var(--promo-tint); border-color: var(--promo); }
.verdict-box h3 { margin: 0 0 8px; font-size: 0.95rem; }
.verdict-box p { margin: 0; }

/* ---- Quick facts / meta grid ---------------------------------------------------------------- */
.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--sp-3); }
.fact-item { display: flex; flex-direction: column; gap: 2px; }
.fact-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-secondary); }
.fact-value { font-size: 0.9375rem; font-weight: 700; }

/* ---- Rating box (review) --------------------------------------------------------------------- */
.rating-box { display: flex; align-items: center; gap: var(--sp-5, 20px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--sp-6); margin-bottom: var(--sp-8); }
.rating-score { font-size: 2.75rem; font-weight: 800; color: var(--promo); line-height: 1; }
.rating-score-max { font-size: 0.8125rem; color: var(--text-secondary); text-transform: uppercase; }
.rating-text { font-weight: 700; margin-bottom: 4px; }

/* ---- Step list -------------------------------------------------------------------------------- */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--sp-4); margin: var(--sp-4) 0; }
.step-card { display: flex; gap: var(--sp-3); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--sp-4) var(--sp-5, 20px); }
.step-num { font-size: 1.4rem; font-weight: 800; color: var(--accent); line-height: 1.3; flex-shrink: 0; }
.step-card h3, .step-body h3 { margin: 0 0 4px; font-size: 0.9375rem; }
.step-card p, .step-body p { margin: 0; color: var(--text-secondary); font-size: 0.875rem; }
.steps-vertical { max-width: 700px; }
.steps-vertical .step { display: flex; gap: var(--sp-5, 20px); margin-bottom: var(--sp-6); }
.steps-vertical .step-num-circle {
  width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: #04101f;
  font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ---- Blog ---------------------------------------------------------------------------------------- */
.blog-card { display: block; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--sp-6); text-decoration: none; color: inherit; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.blog-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.blog-card .tag { margin-bottom: var(--sp-3); }
.blog-card h2 { margin: 0 0 10px; font-size: 1.05rem; line-height: 1.35; }
.blog-card p { color: var(--text-secondary); font-size: 0.875rem; margin-bottom: var(--sp-3); }
.blog-card .meta { font-size: 0.75rem; color: var(--text-secondary); opacity: 0.75; }

.post-meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: var(--fs-caption); color: var(--text-secondary); margin-bottom: var(--sp-8); }
.post-meta span { display: inline-flex; align-items: center; gap: 6px; background: var(--surface); border: 1px solid var(--border); padding: 4px 10px; border-radius: var(--radius-sm); }
.post-intro { font-size: 1.0625rem; color: var(--text-secondary); border-left: 3px solid var(--accent); padding-left: var(--sp-5, 20px); margin-bottom: var(--sp-6); }
.highlight-stat { background: var(--promo-tint); border: 1px solid var(--promo); border-radius: var(--radius-lg); padding: var(--sp-6); text-align: center; margin: var(--sp-6) 0; }
.highlight-stat .v { font-size: 2.25rem; font-weight: 800; color: var(--promo); }
.highlight-stat .l { font-size: var(--fs-caption); text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-secondary); margin-top: 4px; }

/* ---- Iframe / demo game ------------------------------------------------------------------------------ */
.game-frame { background: #000; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; width: 100%; aspect-ratio: 16/9; }
.game-frame iframe { width: 100%; height: 100%; border: none; display: block; }
@media (max-width: 640px) { .game-frame { aspect-ratio: 4/3; } }
.below-game { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; justify-content: space-between; margin-top: var(--sp-4); }
.below-game .note { display: flex; align-items: center; gap: 6px; font-size: var(--fs-caption); color: var(--text-secondary); }

/* ---- Footer -------------------------------------------------------------------------------------------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: var(--sp-16) 0 var(--sp-8); margin-top: var(--sp-16); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--sp-8); margin-bottom: var(--sp-8); }
.footer-brand .nav-logo-text { font-size: 1.15rem; }
.footer-brand p { color: var(--text-secondary); font-size: 0.875rem; margin-top: var(--sp-3); max-width: 320px; }
.footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); margin-bottom: var(--sp-3); }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text); text-decoration: none; font-size: 0.875rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: var(--sp-6); }
.footer-disclaimer { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.7; max-width: 900px; margin-bottom: var(--sp-3); }
.footer-disclaimer a { color: var(--accent); }
.footer-copy { font-size: 0.8125rem; color: var(--text-secondary); opacity: 0.7; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- Utilities ------------------------------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
