/* Game review layout — from /games/aviator */
.content-wrap { width: 100%; max-width: 1100px; margin: 0 auto; padding: 56px 24px; display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 44px; align-items: start; }
    .content-wrap > article, .content-wrap > aside { min-width: 0; max-width: 100%; }
    @media (max-width: 1050px) {
      .content-wrap {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
          "toc"
          "article"
          "cta";
      }
      .content-wrap > article { grid-area: article; }
      .content-wrap > aside { display: contents; }
      .content-wrap > aside > .sidebar-panel {
        grid-area: toc;
        min-width: 0;
        margin-bottom: 0;
      }
      .content-wrap > aside > .sidebar-card-cta { grid-area: cta; min-width: 0; margin-top: -28px; }
    }
    .article h2 {
      font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
      margin: 40px 0 10px; padding-top: 8px; letter-spacing: .04em;
      color: #fff;
      scroll-margin-top: calc(var(--site-header-h, 64px) + var(--games-cat-bar-h, 0px) + 16px);
    }
    .article h2:first-child { margin-top: 0; }
    .article p { color: var(--muted); font-size: 0.93rem; line-height: 1.78; margin-bottom: 14px; }
    .article strong { color: var(--text); }
    .divider { width: 32px; height: 1px; background: rgba(240,180,41,.4); margin: 8px 0 18px; }
    .spec-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.04);
      font-size: 0.86rem;
    }
    .spec-row:last-child { border-bottom: none; }
    .spec-key { color: rgba(255,255,255,.45); font-size: .82rem; }
    .spec-val { font-weight: 700; text-align: right; color: var(--text); }
    .highlight-box {
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
        linear-gradient(155deg, rgba(22, 15, 12, 0.98) 0%, rgba(10, 7, 6, 0.99) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 16px 20px;
      margin: 20px 0;
    }
    .highlight-box p { color: var(--muted); font-size: 0.9rem; margin: 0; line-height: 1.65; }
    .verdict-box {
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
        linear-gradient(155deg, rgba(22, 15, 12, 0.98) 0%, rgba(10, 7, 6, 0.99) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      margin: 32px 0 0;
      display: flex;
      align-items: stretch;
    }
    .verdict-score-panel {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 22px 20px;
      min-width: 112px;
      border-right: 1px solid rgba(255,255,255,.08);
      flex-shrink: 0;
    }
    .verdict-score {
      font-family: var(--font-display);
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -.02em;
    }
    .verdict-label {
      font-size: .62rem;
      color: rgba(255,255,255,.35);
      text-transform: uppercase;
      letter-spacing: .14em;
      margin-top: 8px;
      text-align: center;
    }
    .verdict-content { flex: 1; padding: 20px 24px; }
    .verdict-title {
      display: block;
      font-family: var(--font-display);
      font-size: .72rem;
      font-weight: 800;
      color: rgba(255,255,255,.42);
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 10px;
    }
    .verdict-text { color: var(--muted); font-size: 0.88rem; margin: 0; line-height: 1.75; }
    @media (max-width: 600px) {
      .verdict-box { flex-direction: column; }
      .verdict-score-panel { flex-direction: row; align-items: baseline; gap: 10px; padding: 18px 20px 0; border-right: none; min-width: unset; }
      .verdict-label { margin-top: 0; }
      .verdict-content { padding: 16px 20px 20px; }
    }
    .sidebar-panel {
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
        linear-gradient(155deg, rgba(22, 15, 12, 0.98) 0%, rgba(10, 7, 6, 0.99) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 18px 18px 14px;
      margin-bottom: 14px;
    }
    .review-scoreboard {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      padding: 18px 4px;
      margin: 32px 0 14px;
    }
    .review-scoreboard .sidebar-col { padding: 0 16px; min-width: 0; }
    .review-scoreboard .sidebar-col + .sidebar-col {
      margin-top: 0;
      padding-top: 0;
      border-top: none;
      border-left: 1px solid rgba(255,255,255,.07);
    }
    .review-scoreboard .rating-bar-wrap { width: 110px; }
    .review-scoreboard + .verdict-box { margin-top: 0; }
    .review-scoreboard--specs {
      grid-template-columns: 1fr;
      padding: 18px 18px 14px;
    }
    .review-scoreboard--specs .sidebar-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 32px;
      padding: 0;
    }
    .review-scoreboard--specs .sidebar-col h4 { grid-column: 1 / -1; }
    .sidebar-col h4 {
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 800;
      color: rgba(255,255,255,.42);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: .12em;
    }
    .sidebar-col + .sidebar-col {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,.07);
    }
    .sidebar-card {
      background: linear-gradient(160deg, rgba(20,14,8,.97) 0%, rgba(13,9,5,1) 100%);
      border: 1px solid rgba(255,255,255,.07);
      border-top: 2px solid rgba(240,180,41,.3);
      border-radius: 16px;
      padding: 22px 22px 20px;
      margin-bottom: 16px;
      position: relative;
      overflow: hidden;
      transition: border-color .2s, box-shadow .2s;
      box-shadow: 0 4px 24px rgba(0,0,0,.35);
    }
    .sidebar-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(240,180,41,.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .sidebar-card:hover { border-color: rgba(240,180,41,.28); box-shadow: 0 6px 32px rgba(0,0,0,.45), 0 0 20px rgba(240,180,41,.06); }
    .sidebar-card h4 {
      font-family: var(--font-display); font-size: 0.72rem; font-weight: 800;
      color: rgba(240,180,41,.8); margin-bottom: 16px;
      text-transform: uppercase; letter-spacing: .12em;
      display: flex; align-items: center; gap: 8px;
    }
    .sidebar-card h4::after {
      content: ''; flex: 1; height: 1px;
      background: linear-gradient(90deg, rgba(240,180,41,.2), transparent);
    }
    .btn { display: inline-block; padding: 12px 22px; border-radius: 10px; font-weight: 700; font-size: 0.9rem; transition: transform .15s, box-shadow .2s; width: 100%; text-align: center; }
    .btn-gold {
      background: linear-gradient(135deg, #b87d10 0%, #e8a820 30%, #ffe066 55%, #f0b429 75%, #a87820 100%);
      color: #1a0e00; box-shadow: 0 4px 20px rgba(240,180,41,.5), inset 0 1px 0 rgba(255,240,150,.4);
      border: 1px solid rgba(255,220,80,.3);
      letter-spacing: .02em;
    }
    .btn-gold:hover { color: #1a0e00; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(240,180,41,.7), inset 0 1px 0 rgba(255,240,150,.5); }
    .btn-outline { background: transparent; border: 1px solid rgba(240,180,41,.3); color: var(--text); margin-top: 10px; border-radius: 10px; }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(240,180,41,.04); }
    .toc-list { list-style: none; }
    .toc-list li a {
      display: flex; align-items: center; gap: 8px;
      padding: 7px 0; color: var(--muted); font-size: 0.86rem;
      border-bottom: 1px solid rgba(255,255,255,.04);
      transition: color .2s;
    }
    .toc-list li a::before {
      content: '›';
      font-size: .9rem;
      color: rgba(240,180,41,.3);
      display: inline-block;
    }
    .toc-list li:last-child a { border-bottom: none; }
    .toc-list li a:hover { color: var(--gold); }
    .toc-list li a:hover::before { color: var(--gold); }
    .rating-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.04); font-size: 0.86rem; }
    .rating-row:last-child { border-bottom: none; }
    .rating-label { flex: 1; color: rgba(255,255,255,.55); font-size: .82rem; }
    .rating-bar-wrap { width: 80px; height: 6px; background: rgba(255,255,255,.07); border-radius: 3px; overflow: hidden; }
    .rating-bar { height: 6px; background: linear-gradient(90deg, var(--crimson), var(--gold)); border-radius: 3px; }
    .rating-score { min-width: 28px; text-align: right; font-weight: 800; font-size: 0.82rem; color: var(--gold); }
    @media (min-width: 1051px) {
      aside {
        position: sticky;
        top: calc(var(--site-header-h, 64px) + var(--games-cat-bar-h, 0px) + 12px);
        align-self: start;
      }
    }

    .sidebar-card-cta {
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
        linear-gradient(155deg, rgba(22, 15, 12, 0.98) 0%, rgba(10, 7, 6, 0.99) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: none;
    }
    .sidebar-card-cta::before { display: none; }
    .sidebar-card-cta:hover {
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: none;
    }

    @media (max-width: 1050px) {
      .toc-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 8px;
      }
      .toc-list li a { font-size: .78rem; padding: 5px 0; border-bottom: none; }
      .sidebar-card { margin-bottom: 0; }
      .sidebar-card-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 14px;
        align-items: center;
      }
      .sidebar-card-cta h4 { grid-column: 1 / -1; margin-bottom: 2px; }
      .sidebar-card-cta .btn-outline { margin-top: 0; }
    }
    @media (max-width: 720px) {
      .review-scoreboard {
        grid-template-columns: 1fr;
        padding: 18px 18px 14px;
      }
      .review-scoreboard .sidebar-col { padding: 0; }
      .review-scoreboard .sidebar-col + .sidebar-col {
        margin-top: 16px;
        padding-top: 16px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,.07);
      }
      .review-scoreboard--specs .sidebar-col { grid-template-columns: 1fr; }
      .review-scoreboard .rating-bar-wrap { width: 80px; }
      .toc-list li a { font-size: .84rem; padding: 6px 0; }
      .sidebar-card-cta { grid-template-columns: 1fr; }
    }

    /* ── MOBILE OPTIMISATIONS ── */
    @media (max-width: 640px) {
      .content-wrap { padding: 28px 16px; gap: 24px; }
      .article h2 { font-size: 1.05rem; margin: 28px 0 10px; }
      .article p { font-size: 0.875rem; }
      .highlight-box { padding: 14px 15px; }
      .verdict-box { margin: 20px 0 0; }
      .content-wrap > aside > .sidebar-card-cta { margin-top: -8px; }
      .verdict-score { font-size: 2.4rem; }
      .verdict-text { font-size: 0.84rem; }
      .stat-hud-grid { gap: 10px; }
      .rfaq-q { font-size: .82rem; }
      .rfaq-a p { font-size: .8rem; }
      .meta-row { gap: 8px; margin-top: 14px; }
      .meta-pill { font-size: 0.73rem; padding: 4px 11px; }
      .info-box { padding: 15px 16px; }
      .pros-box, .cons-box { padding: 14px 15px; }
    }

    @media (max-width: 420px) {
      .stat-hud-grid { grid-template-columns: 1fr; }
      .verdict-score { font-size: 2.2rem; }
    }

    /* Bankroll table — card layout on mobile */
    @media (max-width: 560px) {
      .bankroll-table thead { display: none; }
      .bankroll-table, .bankroll-table tbody { display: block; }
      .bankroll-table tr {
        display: block;
        background:
          linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
          linear-gradient(155deg, rgba(22, 15, 12, 0.98) 0%, rgba(10, 7, 6, 0.99) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 0;
        margin-bottom: 10px;
        overflow: hidden;
        transition: border-color .2s, box-shadow .2s;
      }
      .bankroll-table tr:hover { border-color: rgba(240,180,41,.22); box-shadow: 0 6px 24px rgba(0,0,0,.4); }
      .bankroll-table tr:last-child { margin-bottom: 0; }
      /* Card title: session budget */
      .bankroll-table td:first-child {
        display: block;
        font-size: 1rem;
        font-weight: 700;
        padding: 14px 16px 12px;
        border-bottom: 1px solid rgba(255,255,255,.06);
        background: rgba(255,255,255,.02);
        letter-spacing: .01em;
      }
      .bankroll-table td:first-child::before { display: none; }
      /* Data rows */
      .bankroll-table td {
        display: grid;
        grid-template-columns: 130px 1fr;
        align-items: center;
        gap: 10px;
        padding: 9px 16px;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,.035);
        font-size: .87rem;
        width: 100%;
      }
      .bankroll-table td:last-child { border-bottom: none; }
      .bankroll-table td::before {
        content: attr(data-label);
        font-size: .63rem;
        text-transform: uppercase;
        letter-spacing: .1em;
        color: rgba(255,255,255,.3);
        font-weight: 700;
      }
    }
    .compare-table { width: 100%; border-collapse: collapse; font-size: .87rem; }
    .compare-table thead tr {
      background: rgba(0,0,0,.28);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .compare-table th {
      text-align: left; color: rgba(255,255,255,.38); font-size: .65rem;
      text-transform: uppercase; letter-spacing: .13em; padding: 13px 20px;
      font-weight: 800;
    }
    .compare-table th:not(:first-child), .compare-table td:not(:first-child) { text-align: center; }
    .compare-table:has(thead th:nth-child(2):last-child) th:not(:first-child),
    .compare-table:has(thead th:nth-child(2):last-child) td:not(:first-child) { text-align: left; }
    .compare-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.04); transition: background .15s; }
    .compare-table tbody tr:hover td { background: rgba(240,180,41,.06) !important; }
    .compare-table tbody tr:last-child { border-bottom: none; }
    .compare-table td { padding: 15px 20px; vertical-align: middle; font-size: .86rem; color: rgba(255,255,255,.65); }
    .compare-table tbody tr:nth-child(even) td { background: rgba(255,255,255,.015); }
    .compare-table tbody tr.featured-row td {
      background: rgba(240,180,41,.05);
      color: rgba(255,255,255,.85);
    }
    .compare-table tbody tr.featured-row td:first-child {
      color: var(--gold);
      font-weight: 700;
    }
    .compare-table tbody tr.featured-row:hover td { background: rgba(240,180,41,.08) !important; }
    @media (max-width: 600px) {
      .compare-table thead { display: none; }
      .compare-table, .compare-table tbody { display: block; }
      .compare-table:has(td[data-label]) tr {
        display: block;
        background:
          linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
          linear-gradient(155deg, rgba(22, 15, 12, 0.98) 0%, rgba(10, 7, 6, 0.99) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 0;
        margin-bottom: 10px;
        overflow: hidden;
        transition: border-color .2s, box-shadow .2s;
      }
      .compare-table:has(td[data-label]) tr:hover { border-color: rgba(240,180,41,.22); box-shadow: 0 6px 24px rgba(0,0,0,.4); }
      .compare-table:has(td[data-label]) tbody tr.featured-row {
        border-color: rgba(240,180,41,.3);
        border-top: 3px solid var(--gold);
        background: linear-gradient(160deg, rgba(28,18,4,.98), rgba(16,10,2,.99));
      }
      .compare-table:has(td[data-label]) tbody tr.featured-row td:first-child { border-left: none; padding-left: 16px; }
      .compare-table:has(td[data-label]) tr:last-child { margin-bottom: 0; }
      .compare-table:has(td[data-label]) td:first-child {
        display: block;
        font-size: 1rem;
        font-weight: 700;
        padding: 14px 16px 12px;
        border-bottom: 1px solid rgba(255,255,255,.06);
        letter-spacing: .01em;
        background: rgba(255,255,255,.02);
      }
      .compare-table:has(td[data-label]) td:first-child::before { display: none; }
      .compare-table:has(td[data-label]) td {
        display: grid;
        grid-template-columns: 110px 1fr;
        align-items: center;
        gap: 10px;
        padding: 9px 16px;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,.035);
        text-align: left !important;
        font-size: .87rem;
      }
      .compare-table:has(td[data-label]) td:last-child { border-bottom: none; }
      .compare-table:has(td[data-label]) td::before {
        content: attr(data-label);
        font-size: .63rem;
        text-transform: uppercase;
        letter-spacing: .1em;
        color: rgba(255,255,255,.3);
        font-weight: 700;
      }

      .compare-table:has(thead th:nth-child(2):last-child) tr {
        display: block;
        background: none;
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 14px 16px;
        box-shadow: none;
        overflow: visible;
        border-bottom: 1px solid rgba(255,255,255,.06);
      }
      .compare-table:has(thead th:nth-child(2):last-child) tr:hover,
      .compare-table:has(thead th:nth-child(2):last-child) tbody tr.featured-row {
        border-color: transparent;
        box-shadow: none;
        background: none;
      }
      .compare-table:has(thead th:nth-child(2):last-child) tr:last-child { border-bottom: none; margin-bottom: 0; }
      .compare-table:has(thead th:nth-child(2):last-child) td,
      .compare-table:has(thead th:nth-child(2):last-child) td:first-child,
      .compare-table:has(thead th:nth-child(2):last-child) td:last-child {
        display: block;
        width: auto;
        grid-template-columns: none;
        text-align: left !important;
        background: none !important;
        padding: 0;
        border: none;
      }
      .compare-table:has(thead th:nth-child(2):last-child) td::before { content: none; display: none; }
      .compare-table:has(thead th:nth-child(2):last-child) td:first-child {
        font-size: .95rem;
        font-weight: 700;
        color: var(--gold);
        letter-spacing: .01em;
        padding-bottom: 6px;
      }
      .compare-table:has(thead th:nth-child(2):last-child) td:last-child {
        font-size: .84rem;
        color: rgba(255,255,255,.55);
        line-height: 1.5;
      }
    }
    .pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 20px 0; }
    @media (max-width: 520px) { .pros-cons-grid { grid-template-columns: 1fr; } }
    .review-plain-list {
      padding-left: 1.2rem;
      margin: 0 0 14px;
      color: var(--muted);
      line-height: 1.7;
    }
    .review-plain-list li { margin-bottom: 8px; }
    .key-facts {
      list-style: none;
      margin: 0 0 8px;
      padding: 0;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .key-facts li {
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.65;
    }
    .key-facts li:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
    .key-facts strong { color: var(--text, #f0e8e0); font-weight: 700; }
    .key-facts a { color: var(--gold, #f0b429); }
    .pros-box, .cons-box {
      border-radius: 16px;
      padding: 0;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
        linear-gradient(155deg, rgba(22, 15, 12, 0.98) 0%, rgba(10, 7, 6, 0.99) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: none;
    }
    .pros-box::before,
    .cons-box::before {
      display: none;
    }
    .pros-box h4, .cons-box h4 {
      font-size: .7rem;
      text-transform: uppercase;
      letter-spacing: .14em;
      font-weight: 800;
      margin: 0;
      padding: 13px 18px;
      display: flex;
      align-items: center;
      gap: 9px;
      border-bottom: 1px solid rgba(255,255,255,.06);
      position: relative;
      z-index: 1;
    }
    .pros-box h4 { color: var(--green); background: rgba(62,207,130,.07); }
    .pros-box h4::before {
      content: '';
      display: inline-block;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 10px rgba(62,207,130,.9);
    }
    .cons-box h4 { color: var(--crimson2); background: rgba(192,24,42,.08); }
    .cons-box h4::before {
      content: '';
      display: inline-block;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--crimson2);
      box-shadow: 0 0 10px rgba(192,24,42,.9);
    }
    .pc-list { list-style: none; display: flex; flex-direction: column; gap: 0; padding: 8px 14px 12px; position: relative; z-index: 1; }
    .pc-list li {
      font-size: .86rem;
      color: rgba(255,255,255,.75);
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.55;
      padding: 9px 6px;
      border-radius: 8px;
      border-bottom: 1px solid rgba(255,255,255,.04);
      transition: background .18s;
    }
    .pc-list li:last-child { border-bottom: none; }
    .pros-box .pc-list li:hover { background: rgba(62,207,130,.07); }
    .cons-box .pc-list li:hover { background: rgba(192,24,42,.07); }
    .pc-list li::before { flex-shrink: 0; margin-top: 2px; font-weight: 700; font-size: .7rem; }
    .pros-box .pc-list li::before {
      content: '✓';
      width: 18px; height: 18px;
      display: flex; align-items: center; justify-content: center;
      color: var(--green);
      background: rgba(62,207,130,.14);
      border: 1px solid rgba(62,207,130,.28);
      border-radius: 50%;
      box-shadow: 0 0 6px rgba(62,207,130,.2);
    }
    .cons-box .pc-list li::before {
      content: '✗';
      width: 18px; height: 18px;
      display: flex; align-items: center; justify-content: center;
      color: var(--crimson2);
      background: rgba(192,24,42,.12);
      border: 1px solid rgba(192,24,42,.25);
      border-radius: 50%;
      box-shadow: 0 0 6px rgba(192,24,42,.2);
    }
    .bankroll-table { width: 100%; border-collapse: collapse; font-size: .86rem; margin: 0; }
    .bankroll-table thead tr {
      background: rgba(0,0,0,.3);
      border-bottom: 1px solid rgba(240,180,41,.2);
    }
    .bankroll-table th {
      color: rgba(240,180,41,.7); font-size: .65rem; text-transform: uppercase;
      letter-spacing: .13em; padding: 13px 20px; text-align: left;
      font-weight: 800;
    }
    .bankroll-table th:first-child { color: var(--gold); }
    .bankroll-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.04); transition: background .15s; }
    .bankroll-table td { padding: 15px 20px; color: rgba(255,255,255,.72); vertical-align: middle; }
    .bankroll-table tbody tr:nth-child(odd) td { background: rgba(255,255,255,.015); }
    .bankroll-table tbody tr:last-child { border-bottom: none; }
    .bankroll-table tr:hover td { background: rgba(240,180,41,.06) !important; }
    .bankroll-table td:first-child { color: var(--gold); font-weight: 700; font-size:.9rem; }
    .bankroll-table td:first-child strong { color: var(--gold); }
    .comp-wrap {
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
        linear-gradient(155deg, rgba(22, 15, 12, 0.98) 0%, rgba(10, 7, 6, 0.99) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      overflow: hidden;
      overflow-x: auto;
      margin: 18px 0;
    }
    .comp-table { width: 100%; border-collapse: collapse; font-size: .87rem; }
    .comp-table thead tr { background: rgba(0,0,0,.28); border-bottom: 1px solid rgba(255,255,255,.08); }
    .comp-th-feat { text-align: left; padding: 16px 22px; color: rgba(255,255,255,.38); font-size: .63rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
    .comp-th-avi {
      text-align: center; padding: 12px 22px 16px;
      color: var(--gold); font-size: .63rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800;
      background: rgba(240,180,41,.06);
    }
    .comp-th-badge {
      display: block; margin-top: 6px;
      font-size: .55rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
      color: #120c00; background: var(--gold);
      border-radius: 4px; padding: 2px 8px; line-height: 1.6;
      width: fit-content; margin-inline: auto;
    }
    .comp-th-slot { text-align: center; padding: 16px 22px; color: rgba(255,255,255,.38); font-size: .63rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
    .comp-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.05); }
    .comp-table tbody tr:last-child { border-bottom: none; }
    .comp-table tbody tr:hover td { background: rgba(255,255,255,.03) !important; }
    .comp-table tbody tr:nth-child(even) td { background: rgba(255,255,255,.015); }
    .comp-td-feat { padding: 16px 22px; color: rgba(255,255,255,.6); font-size: .86rem; vertical-align: middle; }
    .comp-td-avi {
      padding: 16px 22px; text-align: center; font-weight: 700; font-size: .88rem; vertical-align: middle;
      background: rgba(240,180,41,.04);
      color: rgba(255,255,255,.9);
    }
    .comp-td-slot { padding: 16px 22px; text-align: center; color: rgba(255,255,255,.45); font-size: .86rem; vertical-align: middle; }
    .comp-val-green { color: var(--green) !important; }
    .comp-val-gold { color: var(--gold) !important; }
    .prob-wrap {
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
        linear-gradient(155deg, rgba(22, 15, 12, 0.98) 0%, rgba(10, 7, 6, 0.99) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      overflow: hidden;
      overflow-x: auto;
      margin: 18px 0 12px;
    }
    .prob-table { width: 100%; border-collapse: collapse; font-size: .87rem; }
    .prob-table thead tr { background: rgba(0,0,0,.28); border-bottom: 1px solid rgba(255,255,255,.08); }
    .prob-table th { text-align: left; padding: 14px 22px; color: rgba(255,255,255,.38); font-size: .63rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
    .prob-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.05); }
    .prob-table tbody tr:last-child { border-bottom: none; }
    .prob-table tbody tr:hover td { background: transparent; }
    .prob-table tbody tr:nth-child(even) td { background: transparent; }
    .prob-td { padding: 16px 22px; color: rgba(255,255,255,.65); vertical-align: middle; }
    .prob-table .tag { background: none; border: none; padding: 0; border-radius: 0; }
    .prob-td-target { font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em; color: rgba(255,255,255,.92); }
    .prob-bar-bg { height: 6px; background: rgba(255,255,255,.08); border-radius: 99px; min-width: 120px; }
    .prob-bar { height: 6px; border-radius: 99px; }
    .prob-bar-80 { width: 80%; background: var(--green); }
    .prob-bar-65 { width: 65%; background: var(--green); }
    .prob-bar-48 { width: 48%; background: var(--gold); }
    .prob-bar-19 { width: 19%; background: var(--gold); }
    .prob-bar-10 { width: 10%; background: var(--red); }
    .prob-bar-2  { width: 2%;  background: var(--red); }
    .prob-bar-1  { width: 1%;  background: var(--red); }
    @media (max-width: 580px) {
      .prob-wrap:has(.prob-table) {
        border-radius: 16px;
        overflow-x: unset;
      }
      .prob-table thead { display: none; }
      .prob-table, .prob-table tbody { display: block; }
      .prob-table tbody tr {
        display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto;
        padding: 12px 14px; gap: 0 10px; border-bottom: 1px solid rgba(255,255,255,.05);
      }
      .prob-td-target { grid-column: 1; grid-row: 1; font-size: 1.1rem; padding: 0 0 4px; display: flex; align-items: center; }
      .prob-td[data-label="Probability"] { grid-column: 2; grid-row: 1; padding: 0 0 4px; display: flex; align-items: center; }
      .prob-td[data-label="Risk"] { grid-column: 3; grid-row: 1; padding: 0 0 4px; display: flex; align-items: center; justify-content: flex-end; }
      .prob-td-bar { grid-column: 1 / -1; grid-row: 2; padding: 4px 0 2px; }
      .prob-bar-bg { min-width: unset; width: 100%; }
      .prob-td[data-label="Frequency"] { grid-column: 1 / -1; grid-row: 3; font-size: .75rem; padding: 2px 0 0; }
    }
    @media (max-width: 600px) {
      .prob-wrap:has(.compare-table td[data-label]),
      .compare-table:has(td[data-label]),
      .compare-table:has(td[data-label]) tbody {
        display: contents;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        overflow: visible;
      }
      .compare-table:has(td[data-label]) tr:first-child { margin-top: 18px; }
      .compare-table:has(td[data-label]) tr:last-child { margin-bottom: 12px; }
    }
    .stat-hud-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin: 20px 0;
    }
    @media (max-width: 900px) { .stat-hud-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 700px) { .stat-hud-grid { grid-template-columns: 1fr; } }
    .hud-cell {
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
        linear-gradient(155deg, rgba(22, 15, 12, 0.98) 0%, rgba(10, 7, 6, 0.99) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 18px 20px 16px;
      display: flex; flex-direction: column; gap: 8px;
    }
    .hud-cell h3 {
      font-family: var(--font-display); font-weight: 700; font-size: .95rem;
      letter-spacing: .015em; color: #fff; line-height: 1.25; margin: 0;
    }
    .hud-cell p {
      font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.55; margin: 0;
    }
    .wtp-rail {
      margin: 6px 0 4px;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      overflow: hidden;
      isolation: isolate;
    }
    .wtp-viewport {
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      overscroll-behavior-x: none;
      overflow-anchor: none;
      scroll-behavior: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: none;
      scrollbar-width: none;
      cursor: grab;
      mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
    }
    .wtp-viewport::-webkit-scrollbar { display: none; }
    .wtp-viewport.is-dragging { cursor: grabbing; user-select: none; }
    .wtp-viewport.is-dragging a { pointer-events: none; }
    .wtp-track {
      list-style: none;
      display: flex;
      width: max-content;
      margin: 0;
      padding: 4px 0 8px;
    }
    .wtp-track > li { flex: 0 0 13.5rem; margin-right: 12px; }
    @media (prefers-reduced-motion: reduce) {
      .wtp-track > li[aria-hidden="true"] { display: none; }
    }
    .wtp-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      height: 100%;
      padding: 18px 16px 16px;
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
        linear-gradient(155deg, rgba(22, 15, 12, 0.98) 0%, rgba(10, 7, 6, 0.99) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      text-align: center;
      box-sizing: border-box;
    }
    .wtp-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      width: 100%;
    }
    .wtp-logo img {
      height: 40px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
    }
    .wtp-logo img.wtp-logo--moonwin {
      height: 44px;
      max-width: 168px;
    }
    .wtp-bonus { width: 100%; }
    .wtp-bonus-val {
      display: block;
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1.25;
    }
    .wtp-bonus-label {
      display: block;
      margin-top: 4px;
      font-size: .68rem;
      font-weight: 600;
      color: rgba(255,255,255,.38);
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .wtp-card .btn { margin-top: auto; padding: 10px 14px; font-size: .84rem; }
    .wtp-card .btn-gold {
      box-shadow: none;
      animation: none;
    }
    .wtp-card .btn-gold:hover {
      transform: none;
      box-shadow: none;
      animation: none;
      filter: brightness(1.08);
    }
    .wtp-more { margin-top: 12px; font-size: .86rem; }
    @media (max-width: 720px) { .wtp-track > li { flex-basis: 12.5rem; } }
    .rfaq-list {
      display: flex; flex-direction: column; gap: 0;
      max-width: 40rem; width: 100%; margin: 0;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .rfaq-item {
      background: none; border: none; border-radius: 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      overflow: hidden;
    }
    .rfaq-q {
      width: 100%; text-align: left; background: none; border: none;
      color: var(--text); font-family: var(--font); font-size: .9rem; font-weight: 600;
      padding: 16px 0; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      transition: color .2s;
    }
    .rfaq-q:hover, .rfaq-item.open .rfaq-q { color: #fff; }
    .rfaq-icon {
      width: 22px; height: 22px; flex-shrink: 0;
      border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .65rem; color: rgba(255,255,255,.35);
      transition: transform .28s ease, border-color .2s, color .2s;
    }
    .rfaq-item.open .rfaq-icon { transform: rotate(180deg); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.55); }
    .rfaq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
    .rfaq-item.open .rfaq-a { max-height: 400px; }
    .rfaq-a p {
      padding: 0 0 16px; font-size: .85rem;
      color: var(--muted); line-height: 1.7; margin: 0;
    }
    .meta-pill { background: var(--bg3); border: 1px solid var(--border); border-radius: 20px; padding: 5px 14px; font-size: 0.78rem; color: var(--muted); }
    .meta-pill strong { color: var(--gold); }
    .meta-pill.pill-rating { border-color: rgba(240,180,41,.4); background: rgba(240,180,41,.08); }
    .meta-pill.pill-green { background: rgba(62,207,130,.08); border-color: rgba(62,207,130,.2); color: #3ecf82; }
    .meta-pill.pill-green strong { color: #3ecf82; }
    .meta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
    .breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 14px; }
    .breadcrumb a { color: var(--muted); }
    .breadcrumb a:hover { color: var(--gold); }
    .info-box {
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
        linear-gradient(155deg, rgba(22, 15, 12, 0.98) 0%, rgba(10, 7, 6, 0.99) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 18px 20px 14px;
      margin: 20px 0;
    }
    .info-box h4 {
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 800;
      color: rgba(255,255,255,.42);
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 12px;
    }
    .page-hero { background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(192,24,42,.18), transparent 60%), radial-gradient(ellipse 70% 50% at 80% 120%, rgba(240,180,41,.07), transparent 60%), linear-gradient(175deg, #090608 0%, #100c0e 50%, #090608 100%); padding: 56px 20px 52px; border-bottom: 1px solid rgba(255,255,255,.08); position: relative; overflow: hidden; }
    .page-hero::before { display: none; }
    .page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; }
    .hero-layout { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
    @media (max-width: 700px) { .hero-layout { grid-template-columns: 1fr; } }
    .page-hero h1 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 10px; letter-spacing: .02em; }
    .page-hero h1 em { font-style: normal; color: var(--gold); }
    .page-hero p { color: var(--muted); max-width: 580px; font-size: 1rem; margin-bottom: 0; }
    .hero-game-cover {
      position: relative;
      display: flex;
      flex-direction: column;
      width: 228px;
      min-width: 228px;
      border-radius: 16px;
      overflow: hidden;
      text-decoration: none;
      border: 1px solid rgba(240,180,41,.28);
      box-shadow: 0 12px 48px rgba(0,0,0,.7), 0 0 0 1px rgba(240,180,41,.06);
      flex-shrink: 0;
      background: #0a0a0c;
    }
    .hero-game-cover img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      object-position: center bottom;
    }
    .hero-game-cover-score {
      position: absolute;
      top: 8px;
      right: 8px;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 2.1rem;
      padding: 0.28rem 0.48rem;
      border-radius: 8px;
      border: 1px solid rgba(240,180,41,.4);
      background: rgba(10,8,6,.92);
      color: #fde68a;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      font-variant-numeric: tabular-nums;
      line-height: 1;
      pointer-events: none;
    }
    .hero-game-cover-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 38px;
      padding: 0 10px;
      border: none;
      box-shadow: inset 0 0 0 1px rgba(240,180,41,.28);
      background: linear-gradient(135deg, #b87d10 0%, #e8a820 30%, #ffe066 55%, #f0b429 75%, #a87820 100%);
      color: #1a0e00;
      font-family: var(--font-display);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1;
      pointer-events: none;
      transition: filter .15s;
    }
    .hero-game-cover:hover .hero-game-cover-cta,
    .hero-game-cover:focus-visible .hero-game-cover-cta { filter: brightness(1.08); }
    .hero-game-cover:focus-visible { outline: 2px solid rgba(240,180,41,.75); outline-offset: 3px; }
    @media (max-width: 700px) {
      .hero-game-cover { width: 100%; max-width: 280px; min-width: 0; margin: 0 auto; }
      .hero-game-cover-cta { min-height: 44px; }
    }
    .page-hero { border-bottom: none; }
    .games-cat-bar {
      position: relative;
      width: 100%;
      z-index: 90;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: transparent;
    }
    .games-cat-bar.is-fixed {
      position: fixed;
      top: var(--site-header-h, 56px);
      left: 0;
      right: 0;
      background: #07060a;
      border-top: none;
      box-shadow: none;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    body.games-cat-stuck > nav {
      border-bottom-color: transparent !important;
      box-shadow: none !important;
    }
    .games-cat-bar-spacer { display: block; width: 100%; pointer-events: none; }
    .games-cat-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .games-subnav {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 4px;
      margin: 0;
      padding: 0 0 2px;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-x: contain;
      scrollbar-width: none;
      background: none;
      border: none;
      box-shadow: none;
      position: static;
      z-index: auto;
    }
    .games-subnav::-webkit-scrollbar { display: none; }
    .games-subnav a {
      flex: 0 0 auto;
      white-space: nowrap;
      padding: 8px 12px;
      border-bottom: 1px solid transparent;
      color: rgba(255,255,255,.45);
      font-size: .875rem;
      font-weight: 500;
      text-decoration: none;
    }
    .games-subnav a:hover { color: #fff; }
    .games-subnav a.is-active {
      color: #fff;
      border-bottom-color: var(--gold);
    }
    @media (max-width: 768px) {
      .games-subnav a.is-active { border-bottom-color: transparent; }
    }

/* Leftover catalog-review widgets on the Aviator chrome */
body.game-review .win-brand {
  color: inherit;
  font-weight: 700;
}
body.game-review .gold-text {
  color: var(--gold, #f0b429);
  background: none;
  -webkit-text-fill-color: unset;
  animation: none;
}
body.game-review .article .review-section {
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 8px;
  box-shadow: none;
}
body.game-review .article .review-section > h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 40px 0 10px;
  padding-top: 8px;
  letter-spacing: .04em;
  color: #fff;
}
body.game-review .article .review-section:first-child > h2 { margin-top: 0; }
body.game-review .game-review-editor-take {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 20px 0;
}
body.game-review .game-review-editor-take-label {
  display: block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  color: rgba(255,255,255,.42);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}
body.game-review .game-review-editor-take p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.65;
}
body.game-review .section--related-games,
body.game-review .section--popular-games.section--related-games {
  background: #141018;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 56px 24px;
}
body.game-review .section--related-games .section-title {
  margin: 0 0 20px !important;
  max-width: none !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  animation: none !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: normal !important;
  line-height: inherit !important;
  filter: none !important;
}
body.game-review .section--related-games .section-eyebrow {
  display: block !important;
  font-family: var(--font-display) !important;
  font-size: .72rem !important;
  font-weight: 800 !important;
  color: rgba(255,255,255,.42) !important;
  -webkit-text-fill-color: rgba(255,255,255,.42) !important;
  text-transform: uppercase !important;
  letter-spacing: .12em !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  background: none !important;
  line-height: 1.2 !important;
}
body.game-review .section--related-games h2,
body.game-review .section--related-games .section-title h2 {
  font-family: var(--font-display) !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  line-height: 1.2 !important;
  letter-spacing: .02em !important;
  background: none !important;
  animation: none !important;
  filter: none !important;
}
body.game-review .section--related-games h2 .gold-text,
body.game-review .section--related-games .section-title h2 .gold-text {
  display: inline !important;
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
  background: none !important;
  padding: 0 !important;
  animation: none !important;
  filter: none !important;
  letter-spacing: inherit !important;
}
body.game-review .section--related-games .section-title p {
  color: var(--muted) !important;
  -webkit-text-fill-color: var(--muted) !important;
  font-family: var(--font) !important;
  font-size: .9rem !important;
  font-weight: 400 !important;
  margin: 0 !important;
  max-width: none !important;
  line-height: 1.6 !important;
  letter-spacing: 0 !important;
  background: none !important;
  animation: none !important;
}
body.game-review .section--related-games > .container {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 0;
}
body.game-review .section--related-games .section-title,
body.game-review .section--related-games .popular-games-rail {
  max-width: none;
  margin: 0;
}
body.game-review .section--related-games .popular-games-rail {
  overflow: hidden;
  isolation: isolate;
}
body.game-review .section--related-games .popular-games-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: none;
  overflow-anchor: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
}
body.game-review .section--related-games .popular-games-viewport::-webkit-scrollbar { display: none; }
body.game-review .section--related-games .popular-games-viewport.is-dragging { cursor: grabbing; user-select: none; }
body.game-review .section--related-games .popular-games-viewport.is-dragging a { pointer-events: none; }
body.game-review .section--related-games .popular-games-track {
  list-style: none;
  margin: 0;
  padding: 0.15rem 0 0.35rem;
  display: flex;
  width: max-content;
  gap: 0.85rem;
}
body.game-review .section--related-games .popular-games-track > li {
  flex: 0 0 auto;
  width: clamp(7.25rem, 14vw, 8.75rem);
}
body.game-review .section--related-games .popular-game { display: block; text-decoration: none; color: inherit; }
body.game-review .section--related-games .popular-game__media {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  transition: transform .25s ease, box-shadow .25s ease;
}
body.game-review .section--related-games .popular-game img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  background: var(--bg3, #16101a);
}
body.game-review .section--related-games .popular-game__score {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  padding: 0.22rem 0.4rem;
  border-radius: 7px;
  border: 1px solid rgba(251,191,36,.4);
  background: rgba(11,18,32,.92);
  color: #fde68a;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
body.game-review .section--related-games .popular-game:hover .popular-game__media,
body.game-review .section--related-games .popular-game:focus-visible .popular-game__media {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,.36);
}
body.game-review .section--related-games .popular-game:focus-visible { outline: none; }
body.game-review .section--related-games .popular-game:focus-visible .popular-game__media {
  outline: 2px solid rgba(240,180,41,.75);
  outline-offset: 3px;
}
@media (max-width: 768px) {
  body.game-review .section--related-games { padding: 40px 16px; }
  body.game-review .section--related-games .popular-games-track { gap: 0.7rem; }
  body.game-review .section--related-games .popular-games-track > li { width: 6.5rem; }
}
body.game-review .game-review-play-rail {
  max-width: 100%;
}

/* Catalog widgets that used to live in review.css */
body.game-review .article .comparison-table-wrapper {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
    linear-gradient(155deg, rgba(22, 15, 12, 0.98) 0%, rgba(10, 7, 6, 0.99) 100%);
  margin: 16px 0 24px;
  position: relative;
}
body.game-review .article .comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .86rem;
}
body.game-review .article .comparison-table thead th {
  text-align: left;
  padding: 14px 16px;
  color: rgba(255,255,255,.38);
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.28);
}
body.game-review .article .comparison-table tbody td {
  padding: 14px 16px;
  color: rgba(255,255,255,.68);
  border-bottom: 1px solid rgba(255,255,255,.05);
  vertical-align: top;
}
body.game-review .article .comparison-table tbody tr:last-child td { border-bottom: none; }
body.game-review .article .comparison-table tbody tr:nth-child(even) td { background: rgba(255,255,255,.015); }
body.game-review .article .comparison-table .highlighted-row td {
  background: rgba(240,180,41,.08) !important;
  color: rgba(255,255,255,.92);
}
body.game-review .article .comparison-col {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}
body.game-review .article .comparison-col.pros {
  background: linear-gradient(175deg, #081410 0%, #060d0a 100%);
  border-color: rgba(62,207,130,.22);
  border-left: 3px solid rgba(62,207,130,.65);
}
body.game-review .article .comparison-col.cons {
  background: linear-gradient(175deg, #160609 0%, #0d0406 100%);
  border-color: rgba(192,24,42,.22);
  border-left: 3px solid rgba(192,24,42,.65);
}
body.game-review .article .comparison-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
body.game-review .article .comparison-col.pros .comparison-col-header { background: rgba(62,207,130,.07); }
body.game-review .article .comparison-col.cons .comparison-col-header { background: rgba(192,24,42,.08); }
body.game-review .article .comparison-col-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
body.game-review .article .comparison-col.pros .comparison-col-icon { color: var(--green); }
body.game-review .article .comparison-col.cons .comparison-col-icon { color: var(--crimson2); }
body.game-review .article .comparison-col h4 {
  margin: 0;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  color: #fff;
}
body.game-review .article .comparison-col.pros h4 { color: var(--green); }
body.game-review .article .comparison-col.cons h4 { color: var(--crimson2); }
body.game-review .article .comparison-col h4 small {
  display: block;
  margin-top: 3px;
  font-size: .62rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.4);
  text-transform: none;
  font-weight: 500;
}
body.game-review .article .comparison-col ul {
  list-style: none;
  margin: 0;
  padding: 8px 14px 12px;
}
body.game-review .article .comparison-col ul li {
  font-size: .86rem;
  color: rgba(255,255,255,.75);
  padding: 9px 6px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  line-height: 1.55;
}
body.game-review .article .comparison-col ul li:last-child { border-bottom: none; }
body.game-review .article .casino-card-logo {
  display: block;
  max-height: 40px;
  width: auto;
  object-fit: contain;
}
