/* ============================
   ONA Gaming — design tokens
   bg:      #0b0b10  near-black
   surface: #16161f  card bg
   text:    #f4f4f7
   muted:   #8d8d9c
   purple:  #8b5cf6  accent / links / CTA
   violet:  #b98cff  score stamps
   ============================ */

   :root {
    --bg: #0b0b10;
    --surface: #16161f;
    --surface-2: #1c1c29;
    --surface-3: #15151f;
    --text: #f4f4f7;
    --text-muted: #8d8d9c;
    --border: #24242f;
    --footer-bg: #08080c;
    --footer-muted: #6a6a76;
    --body-copy: #d4d4dc;
    --track-empty: #3a3a48;
    --stat-track: #2a2a38;
    --accent: #8b5cf6;
    --accent-2: #b98cff;
    --shadow: rgba(0,0,0,0.4);
    --hero-featured-bg: #0b0e21;
    --hero-featured-intro: rgba(244, 244, 247, 0.82);
    --rec-card-hero-bg: rgba(28, 31, 58, 0.92);
    --rec-card-hero-border: rgba(255, 255, 255, 0.08);
    --rec-card-hero-divider: rgba(255, 255, 255, 0.08);
    --rec-card-hero-slider-tick: rgba(255, 255, 255, 0.28);
    --rec-info-icon: rgba(244, 244, 247, 0.55);
    --review-main-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    color-scheme: dark;
  }
  
  [data-theme="light"] {
    --bg: #f3f1fa;
    --surface: #ffffff;
    --surface-2: #f3f0fc;
    --surface-3: #ece8fa;
    --text: #17171d;
    --text-muted: #5c5c6c;
    --border: #e1ddef;
    --footer-bg: #ffffff;
    --footer-muted: #8a8a98;
    --body-copy: #3a3a45;
    --track-empty: #e1ddef;
    --stat-track: #e6e2f5;
    --shadow: rgba(100,90,140,0.18);
    --hero-featured-bg: #ece8fa;
    --hero-featured-intro: #3a3a45;
    --rec-card-hero-bg: #ffffff;
    --rec-card-hero-border: #e1ddef;
    --rec-card-hero-divider: #e1ddef;
    --rec-card-hero-slider-tick: rgba(23, 23, 29, 0.14);
    --rec-info-icon: #8a8a98;
    --review-main-shadow: 0 4px 24px rgba(100, 90, 140, 0.12);
    color-scheme: light;
  }
  
  html {
    scrollbar-gutter: stable;
    overflow-y: scroll;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    transition: background 0.2s ease, color 0.2s ease;
  }
  
  h1, h2, h3 {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.05;
  }
  
  a {
    color: inherit;
  }
  
  .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b5cf6;
    margin-bottom: 10px;
  }
  
  /* ============ Navbar ============ */
  .skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: #8b5cf6;
    color: #fff;
    padding: 12px 18px;
    z-index: 1000;
    border-radius: 0 0 6px 0;
    font-weight: 700;
    text-decoration: none;
  }
  
  .skip-link:focus {
    left: 0;
  }
  
  .navbar {
    padding: 14px 40px;
    background: var(--surface);
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #8b5cf6, #b98cff) 1;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px var(--shadow);
    transition: background 0.2s ease, box-shadow 0.2s ease;
  }
  
  .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 40px;
  }
  
  .brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--text);
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
  }
  
  .brand .logo,
  .brand img.logo {
    width: 36px;
    height: 36px;
    display: block;
    flex-shrink: 0;
  }
  
  .brand span {
    color: var(--accent);
  }
  
  .navbar nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .navbar nav > ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .navbar nav > ul > li > a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
  }
  
  .navbar nav > ul > li > a.accent {
    color: var(--accent);
  }
  
  .navbar nav > ul > li > a:visited {
    color: var(--text);
  }
  
  .navbar nav > ul > li > a.accent:visited {
    color: var(--accent);
  }
  
  .navbar nav > ul > li > a.current {
    color: var(--accent);
    border-color: var(--accent);
  }
  
  .navbar nav > ul > li > a:hover,
  .navbar nav > ul > li > a:focus-visible {
    color: var(--accent);
    border-color: var(--accent);
  }
  
  .arrow {
    font-size: 9px;
    margin-left: 2px;
  }
  
  .navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  
  .theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface-2);
    cursor: pointer;
    font-size: 16px;
    transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
  }
  
  .theme-toggle:hover {
    background: var(--surface-3);
    transform: translateY(-1px);
  }
  
  .theme-icon {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .theme-toggle:hover .theme-icon {
    transform: rotate(-14deg) scale(1.08);
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  }
  
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    list-style: none;
    position: absolute;
    top: 140%;
    left: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 12px 24px var(--shadow);
    border-radius: 8px;
    min-width: 190px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background 0.2s ease;
    z-index: 10;
  }
  
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 9px 18px;
    color: var(--text);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
  }
  
  .dropdown-menu li a:hover,
  .dropdown-menu li a:focus-visible {
    background: var(--surface-2);
    color: var(--accent);
  }
  
  /* Mobile nav */
  @media (max-width: 860px) {
    .navbar {
      padding: 12px 18px;
    }
  
    .navbar-inner {
      flex-wrap: wrap;
      gap: 12px;
    }
  
    .nav-toggle {
      display: flex;
    }
  
    .navbar nav {
      order: 3;
      flex-basis: 100%;
      display: none;
      justify-content: flex-start;
      max-height: calc(100vh - 80px);
      overflow-y: auto;
    }
  
    .navbar nav.open {
      display: flex;
    }
  
    .navbar nav > ul {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      width: 100%;
      padding-top: 8px;
      padding-bottom: 8px;
    }
  
    .navbar nav > ul > li {
      width: 100%;
    }
  
    .navbar nav > ul > li > a {
      width: 100%;
      padding: 10px 4px;
      border-bottom: 1px solid var(--border);
    }
  
    .dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      display: none;
      padding-left: 12px;
      min-width: 0;
      background: transparent;
      border: none;
    }
  
    .dropdown.open .dropdown-menu {
      display: block;
    }
  
    /* Hero — allow content to breathe on tablets/phones */
    .hero {
      height: auto;
      min-height: 0;
      padding: 36px 0 40px;
      align-items: flex-start;
    }
  
    .hero::after {
      background-image: linear-gradient(
        105deg,
        rgba(46, 16, 101, 0.96) 0%,
        rgba(76, 29, 149, 0.88) 38%,
        rgba(30, 27, 75, 0.55) 65%,
        rgba(30, 27, 75, 0.15) 100%
      );
    }
  
    .hero-content {
      padding: 0 20px;
      max-width: 100%;
    }
  
    .hero-content p {
      max-width: 100%;
    }
  
    .hero-marquee-viewport {
      width: 55%;
      opacity: 0.85;
    }
  
    .games, .highlight {
      padding: 56px 20px;
    }
  }
  
  /* ============ Hero ============ */
  .hero {
    position: relative;
    height: 460px;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2e1065, #4c1d95 45%, #1e1b4b 100%);
  }
  
  .hero-banner {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
  }
  
  .hero-marquee-viewport {
    width: 74%;
    height: 108%;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    transform: rotate(-4deg) scale(1.08);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  }
  
  .hero-marquee-viewport::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 26%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(46, 16, 101, 0.95), transparent);
  }
  
  .hero-marquee {
    display: flex;
    width: max-content;
    will-change: transform;
  }
  
  .hero-marquee-track {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-right: 22px;
  }
  
  .hero-tile {
    flex-shrink: 0;
    width: 190px;
    height: 190px;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: rgba(12, 8, 28, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(139, 92, 246, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
  }
  
  .hero-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, transparent 48%);
    pointer-events: none;
  }
  
  .hero-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Soft drifting color blobs behind the overlay for depth and motion */
  .hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
  }
  
  .hero-glow-1 {
    width: 220px;
    height: 220px;
    top: -70px;
    left: -40px;
    background: radial-gradient(circle, #8b5cf6, transparent 70%);
    animation: heroGlowFloat1 16s ease-in-out infinite;
  }
  
  .hero-glow-2 {
    width: 260px;
    height: 260px;
    bottom: -90px;
    right: -60px;
    background: radial-gradient(circle, #d946a8, transparent 70%);
    animation: heroGlowFloat2 20s ease-in-out infinite;
  }
  
  @keyframes heroGlowFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 35px) scale(1.15); }
  }
  
  @keyframes heroGlowFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -45px) scale(1.1); }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .hero-glow,
    .accent-gradient,
    .cta-arrow {
      animation: none !important;
    }
    /* heroFadeUp is an entrance animation - keep it enabled for accessibility */
  }
  
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: linear-gradient(
      105deg,
      rgba(46, 16, 101, 0.94) 0%,
      rgba(76, 29, 149, 0.82) 30%,
      rgba(30, 27, 75, 0.32) 56%,
      rgba(30, 27, 75, 0.05) 78%
    );
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(11, 11, 16, 0.55));
  }
  
  .hero-content {
    position: relative;
    z-index: 3;
    padding: 0 48px;
    max-width: 640px;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(4px);
    font-size: 12px;
    font-weight: 700;
    color: #f4f4f7;
    margin-bottom: 14px;
  }
  
  .hero-badge .stars {
    color: #ffd166;
    letter-spacing: 1px;
    font-size: 11px;
  }
  
  .hero-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 4px;
    font-size: 12px;
    color: #d4d4dc;
  }
  
  .hero-stats strong {
    color: #f4f4f7;
    font-weight: 800;
  }
  
  .hero-stats .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(212, 212, 220, 0.5);
    flex-shrink: 0;
  }
  
  .hero-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #f4f4f7;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  
  .cta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  .hero-content > * {
    opacity: 0;
    animation: heroFadeUp 0.7s ease forwards;
  }
  
  .hero-content > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.15s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.28s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.52s; }
  .hero-content > *:nth-child(6) { animation-delay: 0.64s; }
  .hero-content > *:nth-child(7) { animation-delay: 0.76s; }
  
  @keyframes heroFadeUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero .eyebrow {
    color: #d8c8ff;
  }
  
  .hero-content h1 {
    font-size: 52px;
    margin-bottom: 8px;
    color: #f4f4f7;
    line-height: 1.02;
  }
  
  .accent-gradient {
    display: inline-block;
    position: relative;
    color: #8b5cf6;
    font-family: inherit;
  }
  .accent-gradient::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #8b5cf6, #d946a8, #b98cff, #8b5cf6);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroGradientShift 6s ease infinite;
  }
  
  @keyframes heroGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .hero-content p {
    font-size: 16px;
    color: #d4d4dc;
    margin-bottom: 20px;
    max-width: 440px;
  }
  
  .cta-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #8b5cf6;
    color: var(--bg);
    border: none;
    border-radius: 4px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
  }
  
  .cta-btn:hover {
    background: #a78bfa;
    transform: translateY(-2px);
  }
  
  .cta-arrow {
    display: inline-block;
    animation: ctaArrowNudge 1.6s ease-in-out infinite;
  }
  
  @keyframes ctaArrowNudge {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
  }
  
  .hero-filters {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
  }
  
  .filter-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #f4f4f7;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  
  .filter-pill:hover {
    background: rgba(255,255,255,0.18);
    border-color: #8b5cf6;
  }
  
  /* ============ Section heading ============ */
  .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-heading h2 {
    font-size: 40px;
  }
  
  /* ============ Games grid ============ */
  .games, .highlight {
    padding: 80px 40px;
    text-align: center;
  }
  
  .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
    max-width: 1180px;
    margin: 0 auto;
  }
  
  .game-card {
    text-decoration: none;
    color: var(--text);
    display: block;
    background: var(--surface);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px var(--shadow);
  }
  
  .game-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
  }
  
  .game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .game-card:hover .game-thumb img {
    transform: scale(1.06);
  }
  
  .game-card h3 {
    font-size: 20px;
    padding: 16px 18px 20px;
  }
  
  /* Score stamp badge — signature element */
  .stamp {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #b98cff;
    color: var(--bg);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.5px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-8deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
  }
  
  .stamp-lg {
    width: 96px;
    height: 96px;
    font-size: 34px;
    top: auto;
    bottom: 28px;
    right: 48px;
  }
  
  /* ============ Highlight ============ */
  .highlight-frame {
    max-width: 560px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  
  .highlight-gif {
    width: 100%;
    display: block;
  }
  
  .caption {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 14px;
  }
  
  /* ============ Review page ============ */
  .review-hero {
    position: relative;
    height: 46vh;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  
  .review-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .review-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--bg) 10%, transparent 70%);
  }
  
  .review-hero-text {
    position: relative;
    z-index: 1;
    padding: 0 48px 32px;
  }
  
  .review-hero h1 {
    font-size: 48px;
  }
  
  /* Featured review hero — title + two-column image / scorecard */
  .review-hero-featured {
    height: auto;
    min-height: unset;
    display: block;
    overflow: visible;
    align-items: stretch;
    background: var(--hero-featured-bg);
    padding: 44px 40px 56px;
    transition: background 0.2s ease;
  }
  
  .review-hero-featured::after {
    display: none;
  }
  
  .review-hero-inner {
    max-width: 1080px;
    margin: 0 auto;
  }
  
  .review-hero-header {
    margin-bottom: 32px;
  }
  
  .review-hero-header .eyebrow {
    margin-bottom: 12px;
  }
  
  .review-hero-featured h1 {
    font-size: clamp(34px, 4.5vw, 48px);
    margin-bottom: 14px;
  }
  
  .review-hero-intro {
    max-width: 820px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--hero-featured-intro);
  }
  
  .review-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
  }
  
  .review-hero-media {
    margin: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 12px 40px var(--shadow);
  }
  
  .review-hero-product-img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
  }
  
  .rec-card-hero {
    margin: 0;
    background: var(--rec-card-hero-bg);
    border: 1px solid var(--rec-card-hero-border);
    border-radius: 14px;
    padding: 26px 24px 22px;
    box-shadow: 0 8px 32px var(--shadow);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .rec-card-hero .rec-title {
    text-align: left;
    margin-bottom: 14px;
  }
  
  .rec-card-hero .star-rating {
    justify-content: flex-start;
    font-size: 28px;
    margin-bottom: 6px;
  }
  
  .rec-verdict {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f5b942;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 22px;
  }
  
  .rec-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 14px;
    color: var(--rec-info-icon);
    cursor: help;
  }
  
  .rec-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    margin: 4px 0 20px;
    padding-top: 4px;
  }
  
  .rec-info-value {
    font-weight: 700;
  }
  
  .rec-card-hero .slider-block {
    margin-top: 0;
    padding-top: 18px;
    border-top: 1px solid var(--rec-card-hero-divider);
  }
  
  .rec-card-hero .slider-track {
    height: 10px;
  }
  
  .rec-card-hero .slider-track::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: repeating-linear-gradient(
      90deg,
      var(--rec-card-hero-slider-tick) 0,
      var(--rec-card-hero-slider-tick) 1px,
      transparent 1px,
      transparent 10%
    );
    pointer-events: none;
  }
  
  @media (max-width: 900px) {
    .review-hero-featured {
      padding: 36px 24px 44px;
    }
  
    .review-hero-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .review-hero-media,
    .review-hero-product-img {
      min-height: 320px;
    }
  }
  
  @media (max-width: 480px) {
    .review-hero-featured {
      padding: 28px 16px 36px;
    }
  
    .review-hero-featured h1 {
      font-size: 32px;
    }
  
    .review-hero-media,
    .review-hero-product-img {
      min-height: 280px;
    }
  
    .rec-card-hero {
      padding: 22px 18px 18px;
    }
  }
  
  .review-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 24px 70px;
    line-height: 1.75;
  }
  
  .review-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }
  
  .review-meta .platform {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  
  .review-content h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    font-size: 26px;
  }
  
  .review-content p {
    color: var(--body-copy);
  }
  
  .back-link {
    margin-top: 36px;
  }
  
  /* ============ Recommendation scorecard ============ */
  .rec-card {
    background: linear-gradient(160deg, var(--surface-2), var(--surface-3));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 26px;
    margin: 8px 0 36px;
  }
  
  .rec-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
  }
  
  .star-rating {
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 30px;
    margin-bottom: 8px;
  }
  
  .star {
    color: var(--track-empty);
  }
  
  .star.filled {
    color: #f5b942;
  }
  
  .rec-label {
    text-align: center;
    color: #f5b942;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .rec-count {
    color: var(--text-muted);
    font-weight: 500;
  }
  
  .rec-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 18px 0;
  }
  
  .stat-row {
    display: grid;
    grid-template-columns: 110px 1fr 50px;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14px;
  }
  
  .stat-label {
    color: var(--text);
    font-weight: 500;
  }
  
  .stat-bar {
    height: 8px;
    border-radius: 999px;
    background: var(--stat-track);
    overflow: hidden;
  }
  
  .stat-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #6d5bf7, #d946a8);
  }
  
  .stat-score {
    text-align: right;
    font-weight: 700;
    font-size: 14px;
  }
  
  .slider-block {
    margin-top: 6px;
  }
  
  .slider-title-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 14px;
  }
  
  .slider-value {
    color: #b98cff;
  }
  
  .slider-track {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #d946a8, #f97316, #eab308);
    margin-bottom: 10px;
  }
  
  .slider-dot {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--surface-3);
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  }
  
  .slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text);
    font-weight: 700;
  }
  
  .slider-labels-text {
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-top: 2px;
  }
  
  .slider-caption {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
  }
  
  @media (max-width: 480px) {
    .stat-row {
      grid-template-columns: 90px 1fr 42px;
      font-size: 13px;
    }
    .star-rating {
      font-size: 24px;
    }
  }
  
  /* ============ About / Contact ============ */
  .page-hero {
    padding: 70px 40px 10px;
    text-align: center;
  }
  
  .page-hero h1 {
    font-size: 44px;
  }
  
  .page-content {
    max-width: 640px;
    margin: 0 auto;
    padding: 24px 20px 70px;
    line-height: 1.75;
    text-align: center;
  }
  
  .page-content h2 {
    font-size: 26px;
    margin-bottom: 14px;
  }
  
  .page-content p {
    color: var(--body-copy);
    margin-bottom: 14px;
  }
  
  .profile-pic {
    width: 148px;
    height: 148px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 22px;
    border: 3px solid #8b5cf6;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    margin-top: 30px;
  }
  
  .contact-form label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 14px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: rgb(139, 92, 246);
  }
  
  .contact-form button {
    margin-top: 22px;
    align-self: flex-start;
    border: none;
  }
  
  /* ============ Reviews page layout ============ */
  .reviews-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 40px 80px;
    align-items: start;
  }
  
  .sidebar {
    position: sticky;
    top: 90px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
  }
  
  .sidebar-block + .sidebar-block {
    margin-top: 30px;
  }
  
  .sidebar-title {
    font-size: 22px;
    margin-bottom: 14px;
  }
  
  .search-box {
    display: flex;
    gap: 8px;
  }
  
  .search-box input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
  }
  
  .search-box input:focus {
    outline: none;
    border-color: #8b5cf6;
  }
  
  .search-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    background: #8b5cf6;
    color: var(--bg);
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
  }
  
  .search-btn:hover {
    background: #a78bfa;
  }
  
  .category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .category-list a {
    display: block;
    padding: 7px 10px;
    border-radius: 6px;
    color: var(--body-copy);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.15s ease, color 0.15s ease;
  }
  
  .category-list a:hover {
    background: rgba(139,92,246,0.15);
    color: #8b5cf6;
  }
  
  .category-list a.active {
    background: #8b5cf6;
    color: var(--bg);
    font-weight: 700;
  }

  .sidebar-toggle {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: inherit;
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: inherit;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.05;
    cursor: default;
    text-align: left;
    padding: 0;
    border-radius: 6px;
  }

  .sidebar-toggle-icon {
    display: none;
  }
  
  .game-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .no-results {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 0;
  }
  
  @media (max-width: 860px) {
    .reviews-layout {
      grid-template-columns: 1fr;
    }
    .sidebar {
      position: static;
    }
    .game-grid-3 {
      grid-template-columns: repeat(2, 1fr);
    }

    .sidebar-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      cursor: pointer;
      padding: 8px 10px;
      margin: 0 -10px;
      transition: background 0.15s ease;
    }

    .sidebar-toggle:hover,
    .sidebar-toggle:active {
      background: rgba(139,92,246,0.12);
    }

    .sidebar-toggle-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(139,92,246,0.15);
      color: #8b5cf6;
      font-size: 12px;
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }

    .sidebar-toggle[aria-expanded="true"] .sidebar-toggle-icon {
      transform: rotate(180deg);
    }

    .category-list {
      display: none;
      margin-top: 10px;
    }

    .category-list.open {
      display: flex;
    }
  }
  
  @media (max-width: 480px) {
    .game-grid-3 {
      grid-template-columns: 1fr;
    }
  }
  .footer {
    text-align: center;
    padding: 40px 20px 30px;
    background: var(--footer-bg);
    border-top: 1px solid var(--border);
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
  }
  
  .footer-links a {
    color: var(--body-copy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
  }
  
  .footer-links a:hover {
    color: #8b5cf6;
  }
  
  .footer p {
    color: var(--footer-muted);
    font-size: 12px;
  }
  
  /* ============ Responsive ============ */
  @media (max-width: 640px) {
    .hero {
      padding: 28px 0 32px;
      height: 370px;
    }

    .hero-marquee-viewport {
      width: 85%;
      height: 100%;
      transform: rotate(-3deg) scale(1.02);
    }

    .hero-marquee-viewport::before {
      width: 24%;
    }

    .hero-tile {
      width: 110px;
      height: 110px;
      border-radius: 10px;
    }

    .hero-content {
      padding: 0 16px;
    }

    .hero-content h1 {
      font-size: 36px;
    }

    .hero-content p {
      font-size: 14px;
      line-height: 1.5;
    }

    .hero-cta-group {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
    }

    .hero-cta-group .cta-btn, .hero-cta-group .cta-btn-ghost {
      display: flex;
      justify-content: center;
      width: 100%;
      box-sizing: border-box;
    }

    .hero-stats {
      font-size: 11px;
      flex-wrap: wrap;
      row-gap: 6px;
    }

    .hero-badge {
      font-size: 11px;
      position: relative;
      top: 14px;
    }

    .hero-filters {
      margin-top: 6px;
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 8px;
      -webkit-overflow-scrolling: touch;
    }

  
    .section-heading {
      margin-bottom: 28px;
    }
  
    .section-heading h2 {
      font-size: 32px;
    }
  
    .games, .highlight {
      padding: 48px 16px;
    }
  
    .game-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }
  
    .game-card h3 {
      font-size: 18px;
    }
  
    .footer {
      padding: 32px 16px 24px;
    }
  
    .footer-links {
      flex-wrap: wrap;
      gap: 14px 20px;
    }
  
    .navbar nav > ul {
      gap: 2px;
    }
  
    .review-hero h1 {
      font-size: 34px;
    }
  
    .stamp-lg {
      width: 72px;
      height: 72px;
      font-size: 24px;
      right: 24px;
      bottom: 20px;
    }
  }
  
  /* ============ Reviews toolbar (results count + sort) ============ */
  .results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .results-count {
    color: var(--text-muted);
    font-size: 13.5px;
  }
  
  .sort-control {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-muted);
  }
  
  .sort-control select {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    cursor: pointer;
  }
  
  .sort-control select:focus {
    outline: none;
    border-color: #8b5cf6;
  }
  
  /* ============ Review photo gallery ============ */
  .review-gallery {
    margin: 40px 0;
  }
  
  .review-gallery h3 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  
  .gallery-caption {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 120px;
    grid-auto-flow: dense;
    gap: 12px;
  }
  
  .gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .gallery-item-wide {
    grid-column: span 2;
  }
  
  .gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface-2);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .gallery-item:hover,
  .gallery-item:focus-visible {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 16px 34px var(--shadow);
    outline: none;
    z-index: 2;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .gallery-item:hover img,
  .gallery-item:focus-visible img {
    transform: scale(1.06);
  }
  
  .gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(180deg, transparent 55%, rgba(8, 6, 18, 0.82) 100%);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  
  .gallery-item:hover .gallery-overlay,
  .gallery-item:focus-visible .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
  }
  
  .gallery-label {
    color: #f4f4f7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .gallery-item .gallery-zoom {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(3px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }
  
  @media (max-width: 640px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 130px;
    }
    .gallery-item-lg {
      grid-column: span 2;
      grid-row: span 2;
    }
    .gallery-item-wide {
      grid-column: span 2;
      grid-row: span 1;
    }
  }
  
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(8, 8, 12, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 100px 128px;
  }
  
  .lightbox[hidden] {
    display: none;
  }
  
  .lightbox-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: min(84vw, 900px);
    max-height: 100%;
  }
  
  .lightbox-viewport {
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .lightbox-slide {
    grid-area: 1 / 1;
    max-width: 100%;
    max-height: calc(100vh - 260px);
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    opacity: 0;
    transform: translate3d(0, 0, 0);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    will-change: transform, opacity;
  }
  
  .lightbox-slide.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.28s ease, transform 0.28s ease;
  }
  
  .lightbox-viewport.is-animating .lightbox-slide {
    transition: none !important;
  }
  
  .lightbox-viewport.is-animating .lightbox-slide.slide-out-left {
    z-index: 1;
    opacity: 1;
    animation: lb-out-left 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  .lightbox-viewport.is-animating .lightbox-slide.slide-in-right {
    z-index: 2;
    opacity: 1;
    animation: lb-in-right 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  .lightbox-viewport.is-animating .lightbox-slide.slide-out-right {
    z-index: 1;
    opacity: 1;
    animation: lb-out-right 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  .lightbox-viewport.is-animating .lightbox-slide.slide-in-left {
    z-index: 2;
    opacity: 1;
    animation: lb-in-left 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  @keyframes lb-out-left {
    0% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
      opacity: 0;
      transform: translate3d(-30%, 0, 0) scale(0.94);
    }
  }
  
  @keyframes lb-in-right {
    0% {
      opacity: 0;
      transform: translate3d(30%, 0, 0) scale(0.94);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }
  
  @keyframes lb-out-right {
    0% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
      opacity: 0;
      transform: translate3d(30%, 0, 0) scale(0.94);
    }
  }
  
  @keyframes lb-in-left {
    0% {
      opacity: 0;
      transform: translate3d(-30%, 0, 0) scale(0.94);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    /* Only disable if user explicitly wants reduced motion - do not auto-disable on Windows */
    .hero-glow,
    .lightbox-viewport.is-animating .lightbox-slide {
      animation: none !important;
      transition: opacity 0.15s ease !important;
    }
  }
  
  .lightbox-info {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #f4f4f7;
    font-size: 13px;
  }
  
  .lightbox-caption {
    font-weight: 700;
  }
  
  .lightbox-count {
    color: #b9b9c6;
    font-variant-numeric: tabular-nums;
  }
  
  .lightbox-close {
    position: fixed;
    top: 20px;
    right: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
  }
  
  .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.18);
  }
  
  .lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, transform 0.15s ease;
    z-index: 2;
  }
  
  .lightbox-prev {
    left: 24px;
  }
  
  .lightbox-next {
    right: 24px;
  }
  
  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.06);
  }
  
  .lightbox-nav:active {
    transform: translateY(-50%) scale(0.96);
  }
  
  .lightbox-filmstrip {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 10px;
    padding: 18px 24px 22px;
    overflow-x: auto;
    background: linear-gradient(0deg, rgba(8, 8, 12, 0.95) 30%, transparent 100%);
    scrollbar-width: thin;
  }
  
  .filmstrip-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.5;
    cursor: pointer;
    padding: 0;
    background: var(--surface-2);
    transition: opacity 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  }
  
  .filmstrip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .filmstrip-thumb:hover {
    opacity: 0.8;
  }
  
  .filmstrip-thumb.active {
    opacity: 1;
    border-color: var(--accent, #8b5cf6);
    transform: translateY(-2px);
  }
  
  @media (max-width: 640px) {
    .lightbox {
      padding: 16px 56px 116px;
    }
    .lightbox-slide {
      max-height: calc(100vh - 220px);
    }
    .lightbox-nav {
      width: 40px;
      height: 40px;
      font-size: 15px;
    }
    .lightbox-prev {
      left: 8px;
    }
    .lightbox-next {
      right: 8px;
    }
    .lightbox-close {
      top: 10px;
      right: 12px;
    }
    .filmstrip-thumb {
      width: 50px;
      height: 50px;
    }
  }
  
  /* ============ Related reviews ============ */
  .related-reviews {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }
  
  .related-reviews h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  @media (max-width: 640px) {
    .related-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* ============ Form feedback ============ */
  .form-note {
    margin-top: 16px;
    font-size: 13.5px;
    color: var(--text-muted);
    display: none;
  }
  
  .form-note.visible {
    display: block;
    color: #8b5cf6;
    font-weight: 600;
  }
  
  .field-error {
    color: #f97066;
    font-size: 12px;
    margin-top: 4px;
    display: none;
  }
  
  .field-error.visible {
    display: block;
  }
  
  .contact-form input.invalid,
  .contact-form textarea.invalid {
    border-color: #f97066;
  }
  
  /* ============ Guides / Stores pages ============ */
  .info-section {
    max-width: 780px;
    margin: 0 auto;
    padding: 20px 24px 0;
  }
  
  .info-section + .info-section {
    margin-top: 44px;
  }
  
  .info-section h2 {
    font-size: 26px;
    margin-bottom: 14px;
    scroll-margin-top: 100px;
  }
  
  .info-section p, .info-section li {
    color: var(--body-copy);
    line-height: 1.75;
  }
  
  .info-section ul {
    padding-left: 20px;
    margin-top: 8px;
  }
  
  .code-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  
  .code-store {
    font-weight: 700;
    font-size: 15px;
  }
  
  .code-desc {
    color: var(--text-muted);
    font-size: 13.5px;
  }
  
  .code-value {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    background: var(--surface-2);
    border: 1px dashed #8b5cf6;
    color: #b98cff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 15px;
  }
  
  /* ============ Review article — three-column layout ============ */
  .review-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 240px;
    gap: 28px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 36px 32px 80px;
    align-items: start;
  }
  
  .review-sidebar {
    position: sticky;
    top: 88px;
  }
  
  .sidebar-heading {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  
  .sidebar-heading-spaced {
    margin-top: 28px;
  }
  
  /* Left sidebar — mini review cards */
  .mini-review-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .mini-review-card {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  }
  
  .mini-review-card:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateX(3px);
  }
  
  .mini-review-card.is-current {
    background: rgba(139, 92, 246, 0.14);
    border-color: rgba(139, 92, 246, 0.35);
  }
  
  .mini-review-thumb {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface-2);
  }
  
  .mini-review-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .mini-review-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .mini-review-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
  
  .mini-review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
  }
  
  .mini-stars {
    font-size: 10px;
    color: #f5b942;
    letter-spacing: -1px;
  }
  
  .mini-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--accent-2);
    letter-spacing: 0.5px;
  }
  
  .sidebar-link-all {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
  }
  
  .sidebar-link-all:hover {
    color: var(--accent-2);
  }
  
  /* Main column */
  .review-main {
    min-width: 0;
    line-height: 1.75;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 30px 32px;
    box-shadow: var(--review-main-shadow);
  }
  
  .affiliate-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    margin-bottom: 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(139, 92, 246, 0.22));
    border: 1px solid rgba(139, 92, 246, 0.35);
  }
  
  .affiliate-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
  }
  
  .affiliate-banner-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--body-copy);
  }
  
  .affiliate-badge {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.35);
    color: #93c5fd;
  }
  
  .affiliate-banner-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ec4899, #d946a8);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  
  .affiliate-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.35);
  }
  
  .review-section {
    margin-bottom: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
  }
  
  .review-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .review-section-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 16px;
  }
  
  .section-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--accent);
    opacity: 0.55;
    line-height: 1;
  }
  
  .review-section-head h2 {
    font-size: 26px;
    margin: 0;
  }
  
  .review-main p {
    color: var(--body-copy);
    margin-bottom: 14px;
  }
  
  .review-main p:last-child {
    margin-bottom: 0;
  }
  
  /* Section photo grids — masonry, sized to each image's natural aspect ratio */
  .section-gallery {
    margin-top: 22px;
    column-gap: 10px;
  }
  
  .section-gallery-unbox {
    column-count: 2;
  }
  
  .section-gallery-showcase {
    column-count: 3;
  }
  
  .section-gallery .gallery-item {
    display: block;
    width: 100%;
    height: auto;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 10px;
  }
  
  .section-gallery .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: initial;
  }
  
  .gallery-item-tall {
    min-height: 0;
  }
  
  .review-section-verdict .verdict-callout {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(217, 70, 168, 0.08));
    border: 1px solid rgba(139, 92, 246, 0.25);
  }
  
  .verdict-score {
    flex-shrink: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--accent-2);
    line-height: 1;
  }
  
  .verdict-callout strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: #f5b942;
  }
  
  .verdict-callout p {
    font-size: 13px;
    margin: 0;
    color: var(--text-muted);
  }
  
  .review-main .back-link {
    margin-top: 36px;
  }
  
  /* Right sidebar — shop banners */
  .shop-banner-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .shop-banner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  
  .shop-banner:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  }
  
  .shop-banner-name {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.2px;
  }
  
  .shop-banner-code {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.88;
    letter-spacing: 0.3px;
  }
  
  .shop-banner-purple {
    background: linear-gradient(135deg, #6d28d9, #8b5cf6);
  }
  
  .shop-banner-pink {
    background: linear-gradient(135deg, #db2777, #ec4899);
  }
  
  .shop-banner-teal {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
  }
  
  .shop-banner-dark {
    background: linear-gradient(135deg, #4b331b, #81522e);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .sidebar-quick-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .sidebar-quick-links a {
    display: block;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--body-copy);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
  }
  
  .sidebar-quick-links a:hover {
    background: rgba(139, 92, 246, 0.12);
    color: var(--accent);
  }
  
  .sidebar-tip {
    margin-top: 24px;
    padding: 14px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
  }
  
  .sidebar-tip-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
  }
  
  .sidebar-tip p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
  }
  
  [data-theme="light"] .affiliate-banner {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.12));
  }
  
  [data-theme="light"] .affiliate-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #2563eb;
  }
  
  /* ============ Stores page — store cards ============ */
  .stores-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 24px 90px;
  }

  .disclosure-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 40px;
  }

  .disclosure-box h2 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .disclosure-box p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0;
  }

  .disclosure-box a {
    color: var(--accent-2);
    text-decoration: underline;
  }

  .store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }

  .store-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .store-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px var(--shadow);
  }

  .store-card-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
    text-align: center;
  }

  .store-card-banner img {
    max-width: 100%;
    max-height: 56px;
    display: block;
  }

  .store-card-banner-purple { background: linear-gradient(135deg, #6d28d9, #8b5cf6); }
  .store-card-banner-pink { background: linear-gradient(135deg, #db2777, #ec4899); }
  .store-card-banner-teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }
  .store-card-banner-dark { background: linear-gradient(135deg, #4b331b, #81522e); }

  .store-card-banner-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: #fff;
  }

  .store-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 20px 22px;
    gap: 12px;
  }

  .store-card-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 800;
  }

  .store-card-body p.store-desc {
    color: var(--body-copy);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
  }

  .store-visit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 18px;
    background: #8b5cf6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
  }

  .store-visit-btn:hover {
    background: #a78bfa;
    transform: translateY(-2px);
  }

  .store-code-box {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
  }

  .store-code-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .store-code-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .store-code-value {
    flex: 1;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    font-size: 16px;
    color: var(--accent-2);
    background: var(--surface);
    border: 1px dashed #8b5cf6;
    border-radius: 6px;
    padding: 7px 10px;
    text-align: center;
  }

  .store-code-copy {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
  }

  .store-code-copy:hover {
    background: var(--surface-3);
    border-color: var(--accent);
  }

  .store-code-copy.copied {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }

  .store-code-savings {
    display: block;
    margin-top: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--accent-2);
  }

  .store-best-for {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 12.5px;
    color: var(--text-muted);
  }

  .store-best-for strong {
    color: var(--text);
  }

  @media (max-width: 640px) {
    .stores-wrap {
      padding: 16px 16px 70px;
    }

    .store-grid {
      grid-template-columns: 1fr;
    }
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder,
  .search-box input::placeholder {
    color: var(--text-muted);
    opacity: 1;
  }
  
  .contact-form input,
  .contact-form textarea,
  .search-box input,
  .sort-control select {
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  
  @media (max-width: 1100px) {
    .review-layout {
      grid-template-columns: 1fr;
      gap: 36px;
      padding: 32px 24px 70px;
    }
  
    .review-sidebar {
      position: static;
    }
  
    .mini-review-list {
      flex-direction: row;
      flex-wrap: wrap;
    }
  
    .mini-review-card {
      flex: 1 1 calc(50% - 8px);
      min-width: 200px;
    }
  
    .shop-banner-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 640px) {
    .review-layout {
      padding: 24px 16px 60px;
    }
  
    .affiliate-banner {
      flex-direction: column;
      align-items: stretch;
    }
  
    .affiliate-banner-btn {
      text-align: center;
    }
  
    .section-gallery-unbox,
    .section-gallery-showcase {
      column-count: 1;
    }
  
    .mini-review-card {
      flex: 1 1 100%;
    }
  
    .shop-banner-list {
      grid-template-columns: 1fr;
    }
  
    .review-section-head {
      flex-direction: column;
      gap: 4px;
    }
  
    .verdict-callout {
      flex-direction: column;
      text-align: center;
    }
  }
  
  /* ============ Custom cursor (desktop pointer devices) ============ */
  @media (hover: hover) and (pointer: fine) {
    html.has-custom-cursor,
    html.has-custom-cursor * {
      cursor: none !important;
    }
  }
  
  .ona-cursor {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999999;
    opacity: 0;
  }
  
  .ona-cursor.is-ready {
    opacity: 1;
  }
  
  .ona-cursor.is-hidden {
    opacity: 0 !important;
  }
  
  .ona-cursor-ring,
  .ona-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    will-change: transform;
  }
  
  .ona-cursor-ring {
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.06);
    box-shadow: 0 0 14px rgba(139, 92, 246, 0.35);
    transition:
      width 0.22s ease,
      height 0.22s ease,
      margin 0.22s ease,
      background 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease,
      transform 0.15s ease;
  }
  
  .ona-cursor-dot {
    width: 7px;
    height: 7px;
    margin: -3.5px 0 0 -3.5px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 8px rgba(185, 140, 255, 0.8);
    transition: transform 0.15s ease, background 0.22s ease;
  }
  
  .ona-cursor.is-hover .ona-cursor-ring {
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border-color: var(--accent-2);
    background: rgba(139, 92, 246, 0.14);
    box-shadow: 0 0 22px rgba(185, 140, 255, 0.45);
  }
  
  .ona-cursor.is-hover .ona-cursor-dot {
    background: #fff;
    transform: scale(1.15);
  }
  
  .ona-cursor.is-click .ona-cursor-ring {
    transform: scale(0.82);
  }
  
  .ona-cursor.is-click .ona-cursor-dot {
    transform: scale(0.7);
  }
  
  @media (prefers-reduced-motion: reduce) {
    /* Only disable if user explicitly wants reduced motion - do not auto-disable on Windows */
    .hero-glow,
    .ona-cursor-ring {
      transition: width 0.15s ease, height 0.15s ease, margin 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    }
  }