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

    :root {
      --bg-primary: #0a0a0f;
      --bg-secondary: #0f0f1a;
      --bg-card: #1a1a2e;
      --bg-card-hover: #1e1e38;
      --accent: #7c3aed;
      --accent-light: #9d5ff5;
      --accent-glow: rgba(124, 58, 237, 0.35);
      --cyan: #06b6d4;
      --cyan-glow: rgba(6, 182, 212, 0.25);
      --gold: #f59e0b;
      --gold-glow: rgba(245, 158, 11, 0.25);
      --green: #22c55e;
      --red: #ef4444;
      --text-primary: #f0f0ff;
      --text-secondary: #a0a0c0;
      --text-muted: #6060a0;
      --border: rgba(124, 58, 237, 0.2);
      --border-cyan: rgba(6, 182, 212, 0.2);
      --radius: 14px;
      --radius-sm: 8px;
      --radius-lg: 20px;
      --font: 'Outfit', sans-serif;
      --transition: 0.3s ease;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background-color: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-secondary); }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

    /* ─── NAVIGATION ─── */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 10, 15, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 0 2rem;
    }
    .nav-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      gap: 1.5rem;
    }
    .nav-logo {
      font-size: 1.6rem;
      font-weight: 900;
      text-decoration: none;
      background: linear-gradient(135deg, var(--accent-light), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.5px;
      flex-shrink: 0;
    }
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 0.25rem;
      flex-wrap: wrap;
    }
    .nav-menu a {
      display: block;
      padding: 0.45rem 0.85rem;
      text-decoration: none;
      color: var(--text-secondary);
      font-weight: 500;
      font-size: 0.88rem;
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }
    .nav-menu a:hover, .nav-menu a.active {
      color: var(--text-primary);
      background: rgba(124, 58, 237, 0.15);
    }
    .nav-menu a.active { color: var(--accent-light); }
    .nav-cta {
      background: linear-gradient(135deg, var(--accent), #5b21b6);
      color: #fff !important;
      padding: 0.5rem 1.2rem !important;
      border-radius: 25px !important;
      font-weight: 700 !important;
      font-size: 0.85rem !important;
      box-shadow: 0 0 18px var(--accent-glow);
      transition: var(--transition) !important;
    }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 24px var(--accent-glow) !important; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text-secondary);
      border-radius: 2px;
      transition: var(--transition);
    }

    /* ─── HERO ─── */
    .page-hero {
      background: linear-gradient(135deg, #0a0a0f 0%, #12082b 50%, #081820 100%);
      padding: 4rem 2rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,58,237,0.18) 0%, transparent 70%);
    }
    .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), var(--cyan), transparent);
    }
    .hero-tag {
      display: inline-block;
      background: rgba(245, 158, 11, 0.15);
      border: 1px solid rgba(245, 158, 11, 0.4);
      color: var(--gold);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.3rem 1rem;
      border-radius: 25px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 1rem;
      position: relative;
    }
    .hero-title {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 900;
      background: linear-gradient(135deg, #fff 30%, var(--accent-light), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.15;
      margin-bottom: 1rem;
      position: relative;
    }
    .hero-sub {
      font-size: 1.05rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto 2rem;
      position: relative;
    }
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      position: relative;
    }
    .hero-stat { text-align: center; }
    .hero-stat-num {
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--gold), #f97316);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-stat-label { font-size: 0.8rem; color: var(--text-muted); }

    /* ─── BREADCRUMB ─── */
    .breadcrumb-bar {
      background: var(--bg-secondary);
      border-bottom: 1px solid var(--border);
      padding: 0.75rem 2rem;
    }
    .breadcrumb-inner {
      max-width: 1400px;
      margin: 0 auto;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      list-style: none;
      font-size: 0.85rem;
    }
    .breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
    .breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
    .breadcrumb a:hover { color: var(--accent-light); }
    .breadcrumb li:last-child { color: var(--accent-light); font-weight: 600; }
    .breadcrumb-sep { color: var(--text-muted); font-size: 0.75rem; }

    /* ─── LAYOUT ─── */
    .content-wrapper {
      max-width: 1400px;
      margin: 0 auto;
      padding: 2.5rem 2rem;
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 2rem;
    }
    .main-content { min-width: 0; }

    /* ─── FEATURED REVIEW ─── */
    .featured-review {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 2.5rem;
      box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    }
    .featured-banner {
      background: linear-gradient(135deg, #1a0a3e 0%, #0a1a3e 50%, #0a2a1a 100%);
      padding: 2.5rem 2.5rem 2rem;
      position: relative;
      overflow: hidden;
    }
    .featured-banner::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .featured-label {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: linear-gradient(135deg, var(--gold), #f97316);
      color: #000;
      font-size: 0.72rem;
      font-weight: 800;
      padding: 0.3rem 0.9rem;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 1.2rem;
    }
    .featured-genre-tag {
      display: inline-block;
      background: rgba(6, 182, 212, 0.15);
      border: 1px solid var(--border-cyan);
      color: var(--cyan);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      margin-left: 0.5rem;
    }
    .featured-title {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.25;
      margin-bottom: 1rem;
    }
    .review-meta {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      flex-wrap: wrap;
      font-size: 0.83rem;
      color: var(--text-muted);
    }
    .review-meta-item { display: flex; align-items: center; gap: 0.35rem; }
    .review-meta-item svg { width: 14px; height: 14px; opacity: 0.7; }

    .review-body { padding: 2rem 2.5rem 2.5rem; }

    /* Score Card */
    .score-card {
      background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.08) 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.8rem;
      margin-bottom: 2rem;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1.5rem 2.5rem;
      align-items: center;
    }
    .overall-score-wrap { text-align: center; }
    .overall-label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }
    .overall-score {
      font-size: 4.5rem;
      font-weight: 900;
      line-height: 1;
      background: linear-gradient(135deg, var(--gold), #f97316);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .overall-max { font-size: 1.1rem; color: var(--text-muted); font-weight: 600; }
    .overall-stars { margin-top: 0.5rem; font-size: 1.3rem; color: var(--gold); letter-spacing: 2px; }
    .overall-verdict {
      margin-top: 0.5rem;
      display: inline-block;
      background: rgba(34, 197, 94, 0.15);
      border: 1px solid rgba(34, 197, 94, 0.4);
      color: var(--green);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.2rem 0.7rem;
      border-radius: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .score-breakdown { }
    .score-breakdown-title {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-muted);
      margin-bottom: 0.9rem;
    }
    .score-row {
      display: grid;
      grid-template-columns: 140px 1fr 45px;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.6rem;
    }
    .score-row-label { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); }
    .score-bar-track {
      height: 6px;
      background: rgba(255,255,255,0.06);
      border-radius: 3px;
      overflow: hidden;
    }
    .score-bar-fill {
      height: 100%;
      border-radius: 3px;
      background: linear-gradient(90deg, var(--accent), var(--cyan));
      transition: width 1s cubic-bezier(0.4,0,0.2,1);
    }
    .score-row-val {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text-primary);
      text-align: right;
    }

    /* Review Sections */
    .review-section { margin-bottom: 2rem; }
    .review-section h2 {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.9rem;
      padding-bottom: 0.6rem;
      border-bottom: 2px solid;
      border-image: linear-gradient(90deg, var(--accent), transparent) 1;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .review-section h2 .section-icon {
      font-size: 1.1rem;
    }
    .review-section p {
      color: var(--text-secondary);
      margin-bottom: 0.75rem;
      font-size: 0.97rem;
    }

    /* Pro Con Table */
    .pro-con-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin: 1.5rem 0;
    }
    .pro-con-card {
      background: rgba(255,255,255,0.03);
      border-radius: var(--radius);
      padding: 1.2rem;
      border: 1px solid;
    }
    .pro-con-card.pros { border-color: rgba(34, 197, 94, 0.25); }
    .pro-con-card.cons { border-color: rgba(239, 68, 68, 0.25); }
    .pro-con-header {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .pro-con-card.pros .pro-con-header { color: var(--green); }
    .pro-con-card.cons .pro-con-header { color: var(--red); }
    .pro-con-list { list-style: none; }
    .pro-con-list li {
      font-size: 0.88rem;
      color: var(--text-secondary);
      padding: 0.4rem 0;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .pro-con-list li::before {
      flex-shrink: 0;
      margin-top: 0.15rem;
      font-size: 0.85rem;
    }
    .pros .pro-con-list li::before { content: ''; color: var(--green); }
    .cons .pro-con-list li::before { content: ''; display: inline-block; width: 0.85em; height: 0.85em; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; vertical-align: middle; margin-right: 0.35em; color: var(--red); }

    /* Verdict Box */
    .verdict-box {
      background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.08));
      border: 1px solid var(--border);
      border-left: 4px solid var(--accent);
      border-radius: var(--radius);
      padding: 1.5rem;
      margin: 1.5rem 0;
    }
    .verdict-box-label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--accent-light);
      margin-bottom: 0.5rem;
    }
    .verdict-box p { color: var(--text-secondary); font-size: 0.97rem; margin: 0; }

    /* Author Box */
    .author-box {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      display: flex;
      gap: 1.2rem;
      margin-top: 2rem;
      align-items: flex-start;
    }
    .author-avatar {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--cyan));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
      border: 2px solid var(--accent);
    }
    .author-info-label {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-muted);
      margin-bottom: 0.2rem;
    }
    .author-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-primary);
    }
    .author-title-badge {
      font-size: 0.78rem;
      color: var(--accent-light);
      font-weight: 500;
      margin-bottom: 0.5rem;
    }
    .author-bio {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }
    .author-stats {
      display: flex;
      gap: 1rem;
      font-size: 0.78rem;
      color: var(--text-muted);
    }
    .author-stats span { color: var(--text-secondary); font-weight: 600; }

    /* References */
    .references {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }
    .references-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 0.75rem;
    }
    .references ol {
      padding-left: 1.2rem;
    }
    .references ol li {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 0.35rem;
    }
    .references ol li a {
      color: var(--cyan);
      text-decoration: none;
    }
    .references ol li a:hover { text-decoration: underline; }

    /* Tags */
    .review-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }
    .review-tag {
      background: rgba(124,58,237,0.1);
      border: 1px solid var(--border);
      color: var(--text-muted);
      font-size: 0.78rem;
      padding: 0.3rem 0.75rem;
      border-radius: 20px;
      text-decoration: none;
      transition: var(--transition);
    }
    .review-tag:hover {
      background: rgba(124,58,237,0.2);
      color: var(--accent-light);
    }

    /* ─── REVIEW GRID ─── */
    .section-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .section-title {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text-primary);
    }
    .section-title span {
      background: linear-gradient(135deg, var(--accent-light), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .see-all-link {
      font-size: 0.83rem;
      font-weight: 600;
      color: var(--accent-light);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      white-space: nowrap;
    }
    .see-all-link:hover { color: var(--cyan); }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-bottom: 2.5rem;
    }
    .review-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .review-card:hover {
      transform: translateY(-4px);
      border-color: rgba(124,58,237,0.5);
      box-shadow: 0 12px 40px rgba(124,58,237,0.18);
    }
    .card-thumb {
      height: 130px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
    }
    .card-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 50%, var(--bg-card));
    }
    .card-thumb-pubg { background: linear-gradient(135deg, #1a0a00, #3d1f00); }
    .card-thumb-ff { background: linear-gradient(135deg, #0a1a00, #1f3d00); }
    .card-thumb-gi { background: linear-gradient(135deg, #0a0a2a, #1a1a4d); }
    .card-thumb-wr { background: linear-gradient(135deg, #1a0a1a, #3d0a3d); }
    .card-thumb-cod { background: linear-gradient(135deg, #0a1a0a, #003d00); }
    .card-thumb-hok { background: linear-gradient(135deg, #1a1a0a, #3d3d00); }

    .card-genre-badge {
      position: absolute;
      top: 0.6rem;
      left: 0.6rem;
      z-index: 2;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      color: var(--cyan);
      font-size: 0.68rem;
      font-weight: 700;
      padding: 0.2rem 0.55rem;
      border-radius: 10px;
      border: 1px solid var(--border-cyan);
    }
    .card-rating-badge {
      position: absolute;
      top: 0.6rem;
      right: 0.6rem;
      z-index: 2;
      background: linear-gradient(135deg, var(--gold), #f97316);
      color: #000;
      font-size: 0.75rem;
      font-weight: 800;
      padding: 0.25rem 0.55rem;
      border-radius: 10px;
    }
    .card-content { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
    .card-game-title {
      font-size: 0.97rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.3rem;
    }
    .card-stars {
      color: var(--gold);
      font-size: 0.85rem;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }
    .card-excerpt {
      font-size: 0.8rem;
      color: var(--text-muted);
      flex: 1;
      margin-bottom: 0.9rem;
      line-height: 1.5;
    }
    .card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--text-muted);
      padding-top: 0.8rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .read-more-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--accent-light);
      text-decoration: none;
      transition: color var(--transition);
    }
    .read-more-btn:hover { color: var(--cyan); }

    /* ─── METHODOLOGY ─── */
    .methodology-section {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem 2.5rem;
      margin-bottom: 2.5rem;
    }
    .methodology-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .methodology-subtitle {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 1.8rem;
    }
    .methodology-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .method-item {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: 1.2rem;
      transition: var(--transition);
    }
    .method-item:hover {
      background: rgba(124,58,237,0.08);
      border-color: var(--border);
    }
    .method-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
    .method-name {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.3rem;
    }
    .method-weight {
      display: inline-block;
      background: rgba(124,58,237,0.15);
      color: var(--accent-light);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.15rem 0.5rem;
      border-radius: 8px;
      margin-bottom: 0.5rem;
    }
    .method-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

    /* ─── FAQ ─── */
    .faq-section { margin-bottom: 2.5rem; }
    .faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 1.1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
      text-align: left;
      color: var(--text-primary);
      font-family: var(--font);
      font-size: 0.95rem;
      font-weight: 600;
      transition: background var(--transition);
    }
    .faq-question:hover { background: rgba(124,58,237,0.06); }
    .faq-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(124,58,237,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--accent-light);
      font-size: 1.1rem;
      font-weight: 700;
      transition: transform var(--transition), background var(--transition);
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--accent);
      color: #fff;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer-inner {
      padding: 0 1.5rem 1.2rem;
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* ─── SIDEBAR ─── */
    .sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
    .sidebar-widget {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .widget-header {
      padding: 0.9rem 1.2rem;
      background: rgba(124,58,237,0.1);
      border-bottom: 1px solid var(--border);
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--accent-light);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .widget-body { padding: 1rem 1.2rem; }

    /* Top Rated */
    .top-game-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 0.65rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      text-decoration: none;
      transition: var(--transition);
    }
    .top-game-item:last-child { border-bottom: none; }
    .top-game-item:hover .top-game-title { color: var(--accent-light); }
    .top-rank {
      width: 26px;
      height: 26px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 800;
      flex-shrink: 0;
    }
    .rank-gold { background: linear-gradient(135deg, var(--gold), #f97316); color: #000; }
    .rank-silver { background: linear-gradient(135deg, #9ca3af, #6b7280); color: #000; }
    .rank-bronze { background: linear-gradient(135deg, #b45309, #78350f); color: #fff; }
    .rank-normal { background: rgba(255,255,255,0.06); color: var(--text-muted); }
    .top-game-icon { font-size: 1.3rem; }
    .top-game-info { flex: 1; min-width: 0; }
    .top-game-title { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .top-game-genre { font-size: 0.72rem; color: var(--text-muted); }
    .top-game-score { font-size: 0.9rem; font-weight: 800; color: var(--gold); flex-shrink: 0; }

    /* Recent Reviews Widget */
    .recent-review-item {
      display: flex;
      gap: 0.75rem;
      padding: 0.7rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      text-decoration: none;
      transition: var(--transition);
      align-items: flex-start;
    }
    .recent-review-item:last-child { border-bottom: none; }
    .recent-review-item:hover .recent-review-title { color: var(--accent-light); }
    .recent-thumb-mini {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .recent-review-title {
      font-size: 0.83rem;
      font-weight: 600;
      color: var(--text-secondary);
      line-height: 1.3;
      margin-bottom: 0.25rem;
    }
    .recent-review-meta {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    /* Rating Display Widget */
    .rating-cta {
      text-align: center;
      padding: 0.5rem 0;
    }
    .rating-cta p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
    .rating-cta a {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: linear-gradient(135deg, var(--accent), #5b21b6);
      color: #fff;
      font-size: 0.85rem;
      font-weight: 700;
      padding: 0.6rem 1.3rem;
      border-radius: 25px;
      text-decoration: none;
      box-shadow: 0 4px 16px var(--accent-glow);
      transition: var(--transition);
    }
    .rating-cta a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }

    /* ─── FOOTER ─── */
    .site-footer {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border);
      padding: 3.5rem 2rem 1.5rem;
    }
    .footer-inner {
      max-width: 1400px;
      margin: 0 auto;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2.5rem;
      margin-bottom: 3rem;
    }
    .footer-brand { }
    .footer-logo {
      font-size: 1.6rem;
      font-weight: 900;
      text-decoration: none;
      background: linear-gradient(135deg, var(--accent-light), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
      margin-bottom: 0.8rem;
    }
    .footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.6; }
    .footer-socials { display: flex; gap: 0.6rem; }
    .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.85rem;
      transition: var(--transition);
    }
    .social-btn:hover {
      background: rgba(124,58,237,0.2);
      border-color: var(--accent);
      color: var(--accent-light);
    }
    .footer-col-title {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-secondary);
      margin-bottom: 1rem;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-links a {
      font-size: 0.85rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color var(--transition);
    }
    .footer-links a:hover { color: var(--accent-light); }
    .footer-bottom {
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-copyright { font-size: 0.82rem; color: var(--text-muted); }
    .footer-legal { display: flex; gap: 1.2rem; }
    .footer-legal a {
      font-size: 0.8rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color var(--transition);
    }
    .footer-legal a:hover { color: var(--accent-light); }

    /* ─── BACK TO TOP ─── */
    .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--accent), #5b21b6);
      border: none;
      border-radius: 12px;
      color: #fff;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px var(--accent-glow);
      opacity: 0;
      transform: translateY(20px);
      transition: var(--transition);
      z-index: 999;
      text-decoration: none;
    }
    .back-to-top.visible { opacity: 1; transform: translateY(0); }
    .back-to-top:hover { transform: translateY(-3px); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .content-wrapper { grid-template-columns: 1fr; }
      .sidebar { grid-row: 1; display: grid; grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) {
      .review-grid { grid-template-columns: repeat(2, 1fr); }
      .methodology-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .pro-con-grid { grid-template-columns: 1fr; }
      .score-card { grid-template-columns: 1fr; }
      .overall-score-wrap { display: flex; align-items: center; gap: 1.5rem; text-align: left; }
    }
    @media (max-width: 700px) {
      .nav-menu { display: none; }
      .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(10,10,15,0.98); padding: 1rem; gap: 0.25rem; border-bottom: 1px solid var(--border); }
      .hamburger { display: flex; }
      .review-grid { grid-template-columns: 1fr; }
      .methodology-grid { grid-template-columns: 1fr; }
      .sidebar { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .score-row { grid-template-columns: 110px 1fr 40px; }
      .featured-banner, .review-body { padding: 1.5rem; }
      .hero-stats { gap: 1.5rem; }
    }

    /* ─── UTILITIES ─── */
    .highlight-box {
      background: rgba(6,182,212,0.06);
      border: 1px solid var(--border-cyan);
      border-left: 3px solid var(--cyan);
      border-radius: var(--radius-sm);
      padding: 1rem 1.2rem;
      margin: 1rem 0;
      font-size: 0.9rem;
      color: var(--text-secondary);
    }
    .highlight-box strong { color: var(--cyan); }
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
      margin: 2rem 0;
    }
  
