
  @font-face { font-family: "Inter"; font-style: normal; font-weight: 400 500; font-display: swap; src: url('../fonts/TTInterphasesPro-Medium.ttf') format('truetype'); }
  @font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/TTInterphasesPro-DemiBold.ttf') format('truetype'); }
  @font-face { font-family: "Inter"; font-style: normal; font-weight: 700 900; font-display: swap; src: url('../fonts/TTInterphasesPro-Bold.ttf') format('truetype'); }
  @font-face { font-family: "Sora"; font-style: normal; font-weight: 600 900; font-display: swap; src: url('../fonts/TTInterphasesPro-Bold.ttf') format('truetype'); }

  :root {
    --bg: #0a0c18;
    --bg-2: #0f1228;
    --panel: #141936;
    --panel-2: #1b2147;
    --border: rgba(255,255,255,.08);
    --border-strong: rgba(255,255,255,.16);
    --text: #ffffff;
    --muted: #9aa0c2;
    --primary: #4558ff;
    --primary-2: #7c8bff;
    --radius: 18px;
    --maxw: 1180px;
    --hdr-h: 68px;
    --drawer-w: 400px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: var(--text);
    background:
      radial-gradient(1100px 700px at 80% -10%, rgba(69,88,255,.20), transparent 60%),
      radial-gradient(900px 700px at -10% 10%, rgba(124,139,255,.12), transparent 55%),
      var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
  }
  body.no-scroll { overflow: hidden; }
  a { color: inherit; text-decoration: none; }
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

  /* ---------- Header ---------- */
  .hdr {
    position: sticky; top: 0; z-index: 40;
    height: var(--hdr-h);
    background: rgba(8,10,22,.72);
    backdrop-filter: saturate(150%) blur(14px);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
    border-bottom: 1px solid var(--border);
  }
  .hdr .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Sora"; font-weight: 800; font-size: 21px; letter-spacing: -.02em; }
  .brand .brand-logo { height: 30px; width: auto; display: block; flex: none; }
  .brand small { color: var(--muted); font-weight: 600; font-size: 12px; font-family: "Inter"; letter-spacing: .04em; text-transform: uppercase; }
  .hdr-actions { display: flex; align-items: center; gap: 10px; }

  .btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; border-radius: 12px; padding: 11px 18px; border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, background .2s ease, border-color .2s ease; line-height: 1; }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: linear-gradient(150deg, var(--primary-2), var(--primary)); color: #fff; box-shadow: 0 12px 30px -12px rgba(69,88,255,.9); }
  .btn-primary:hover { filter: brightness(1.07); }
  .btn-ghost { background: rgba(255,255,255,.05); border-color: var(--border-strong); color: #fff; }
  .btn-ghost:hover { background: rgba(255,255,255,.1); }
  .btn svg { width: 18px; height: 18px; }

  /* ---------- Hero ---------- */
  .hero { padding: clamp(54px, 9vw, 110px) 0 clamp(40px, 6vw, 72px); position: relative; }
  .hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--primary-2); background: rgba(69,88,255,.12); border: 1px solid rgba(69,88,255,.3); padding: 7px 13px; border-radius: 999px; }
  .hero h1 { font-family: "Sora"; font-weight: 900; letter-spacing: -.03em; line-height: 1.03; font-size: clamp(38px, 7vw, 76px); margin: 20px 0 0; }
  .hero h1 .grad { background: linear-gradient(110deg, #fff 20%, var(--primary-2) 60%, var(--primary) 95%); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hero p.lead { max-width: 620px; color: var(--muted); font-size: clamp(16px, 2vw, 19px); margin: 22px 0 0; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
  .hero-stats { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 46px; }
  .hero-stats .s { }
  .hero-stats .s b { display: block; font-family: "Sora"; font-weight: 800; font-size: 28px; }
  .hero-stats .s span { color: var(--muted); font-size: 14px; }
  .hero { overflow: hidden; isolation: isolate; }
  .hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url('../img/banner.webp') center / cover no-repeat; opacity: .65; }
  .hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,16,24,.30) 0%, rgba(15,16,24,.70) 52%, var(--bg) 100%), linear-gradient(90deg, rgba(15,16,24,.62) 0%, rgba(15,16,24,.18) 55%, rgba(15,16,24,.45) 100%); }

  /* ---------- Section ---------- */
  section { scroll-margin-top: 84px; }
  .sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 26px; }
  .sec-head h2 { font-family: "Sora"; font-weight: 800; letter-spacing: -.02em; font-size: clamp(26px, 4vw, 40px); margin: 0; }
  .sec-head p { color: var(--muted); margin: 8px 0 0; max-width: 560px; }
  .games { padding: 18px 0 30px; }

  /* ---------- Game grid cards ---------- */
  .grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
  .gcard {
    flex: 0 1 264px;
    position: relative; display: flex; flex-direction: column; gap: 14px;
    padding: 22px; border-radius: var(--radius);
    background: linear-gradient(165deg, var(--panel) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .gcard::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 100% 0%, var(--hue, rgba(69,88,255,.18)), transparent 55%); opacity: .8; pointer-events: none; }
  .gcard:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: 0 26px 50px -28px rgba(0,0,0,.8); }
  .gcard .ic { position: relative; width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; background: var(--tile, linear-gradient(150deg, #2a3270, #171c3c)); border: 1px solid var(--border-strong); }
  .gcard .ic svg { width: 30px; height: 30px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .gcard .art { position: relative; align-self: center; width: 300px; max-width: 100%; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-strong); box-shadow: 0 18px 40px -22px rgba(0,0,0,.85); }
  .gcard .art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
  .gcard.has-art:hover .art img { transform: scale(1.05); }
  .gcard.has-art { align-items: stretch; }
  .gcard h3 { position: relative; margin: 0; font-family: "Sora"; font-weight: 700; font-size: 20px; letter-spacing: -.01em; }
  .gcard p { position: relative; margin: 0; color: var(--muted); font-size: 14px; flex: 1; }
  .gcard .meta { position: relative; display: flex; align-items: center; gap: 8px; }
  .tag { font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; background: rgba(69,88,255,.16); color: var(--primary-2); border: 1px solid rgba(69,88,255,.3); }
  .tag.fair { background: rgba(31,174,90,.14); color: #4fd98a; border-color: rgba(31,174,90,.32); }

  /* ---------- Features ---------- */
  .features { padding: 30px 0 10px; }
  .feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
  .feat { padding: 24px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--border); }
  .feat .fi { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(69,88,255,.14); border: 1px solid rgba(69,88,255,.3); margin-bottom: 14px; }
  .feat .fi svg { width: 24px; height: 24px; stroke: var(--primary-2); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .feat h3 { margin: 0 0 6px; font-family: "Sora"; font-weight: 700; font-size: 18px; }
  .feat p { margin: 0; color: var(--muted); font-size: 14px; }

  /* ---------- Review (long-form) ---------- */
  .review { padding: 46px 0 6px; }
  .review .prose { max-width: 780px; }
  .review .container.review-grid { display: grid; grid-template-columns: minmax(0, 1fr) 236px; gap: 48px; align-items: start; }
  .review h2[id], .review h3[id], #r-verdict { scroll-margin-top: 92px; }
  @media (max-width: 920px) { .review .container.review-grid { grid-template-columns: 1fr; gap: 0; } }
  .review .kicker { display: inline-block; color: var(--primary-2); font-weight: 800; text-transform: uppercase; letter-spacing: .09em; font-size: 12.5px; margin-bottom: 12px; }
  .review h2 { font-family: "Sora"; font-weight: 800; letter-spacing: -.02em; font-size: clamp(26px, 4vw, 38px); margin: 0 0 10px; line-height: 1.1; }
  .review .byline { color: var(--muted); font-size: 13.5px; margin: 0 0 26px; display: flex; align-items: center; gap: 8px; }
  .review .byline .pill { background: rgba(31,174,90,.14); color: #4fd98a; border: 1px solid rgba(31,174,90,.32); border-radius: 999px; padding: 3px 10px; font-weight: 700; font-size: 12px; white-space: nowrap; flex: none; }
  .review p { color: #c7ccea; font-size: 16.5px; margin: 0 0 16px; }
  .review .lead { font-size: 19px; line-height: 1.6; color: #e8eaf7; }
  .review h3 { font-family: "Sora"; font-weight: 700; font-size: clamp(20px, 3vw, 24px); letter-spacing: -.01em; margin: 32px 0 10px; }
  .review strong { color: #fff; font-weight: 700; }
  .review .callout { margin: 22px 0; padding: 18px 20px; border-radius: 14px; background: rgba(69,88,255,.08); border: 1px solid rgba(69,88,255,.28); border-left: 4px solid var(--primary); }
  .review .callout p { margin: 0; color: #dfe2f5; font-size: 16px; }
  .review ul { margin: 14px 0 18px; padding: 0; list-style: none; display: grid; gap: 10px; }
  .review ul li { position: relative; padding-left: 30px; color: #c7ccea; font-size: 16px; }
  .review ul li svg { position: absolute; left: 0; top: 3px; width: 20px; height: 20px; stroke: #4fd98a; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
  .verdict { margin-top: 30px; padding: 24px; border-radius: var(--radius); background: linear-gradient(165deg, var(--panel) 0%, var(--bg-2) 100%); border: 1px solid var(--border-strong); display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
  .verdict .score { flex: none; width: 96px; height: 96px; border-radius: 18px; display: grid; place-items: center; text-align: center; background: linear-gradient(150deg, var(--primary-2), var(--primary)); box-shadow: 0 18px 40px -20px rgba(69,88,255,.9); }
  .verdict .score b { font-family: "Sora"; font-weight: 900; font-size: 30px; line-height: 1; }
  .verdict .score span { display: block; font-size: 11px; opacity: .85; margin-top: 2px; letter-spacing: .04em; }
  .verdict .vtext { flex: 1; min-width: 240px; }
  .verdict .vtext h3 { margin: 0 0 6px; font-family: "Sora"; font-weight: 700; font-size: 20px; }
  .verdict .vtext p { margin: 0; color: var(--muted); font-size: 15px; }
  .review .rtp-wrap { overflow-x: auto; margin: 18px 0 8px; border: 1px solid var(--border); border-radius: 14px; }
  .review table.rtp { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 480px; }
  .review table.rtp th, .review table.rtp td { text-align: left; padding: 11px 15px; border-bottom: 1px solid var(--border); }
  .review table.rtp thead th { background: rgba(255,255,255,.03); color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: 11.5px; }
  .review table.rtp tbody td:first-child { font-weight: 700; color: #fff; }
  .review table.rtp tr:last-child td { border-bottom: 0; }
  .review table.rtp td.rtp-v { color: #4fd98a; font-weight: 700; white-space: nowrap; }
  .review .note { font-size: 13px; color: var(--muted); margin-top: 4px; }

  /* ---------- Drawer (right slide-out games menu) ---------- */
  .drawer-backdrop {
    position: fixed; inset: 0; z-index: 50;
    background: rgba(4,6,16,.6);
    backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
  }
  .drawer-backdrop.open { opacity: 1; visibility: visible; }
  .drawer {
    position: fixed; top: 0; right: 0; z-index: 51;
    height: 100%; width: min(var(--drawer-w), 100vw);
    background: linear-gradient(180deg, #11152e 0%, #0a0c18 100%);
    border-left: 1px solid var(--border-strong);
    box-shadow: -30px 0 80px -30px rgba(0,0,0,.9);
    transform: translateX(100%);
    transition: transform .36s cubic-bezier(.22,.61,.36,1);
    display: flex; flex-direction: column;
  }
  .drawer.open { transform: translateX(0); }
  .drawer-top { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border); }
  .drawer-top .t { font-family: "Sora"; font-weight: 800; font-size: 18px; }
  .drawer-top .t span { color: var(--muted); font-weight: 600; font-size: 12px; display: block; text-transform: uppercase; letter-spacing: .05em; }
  .drawer-close { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--border-strong); background: rgba(255,255,255,.05); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .2s ease, transform .2s ease; }
  .drawer-close:hover { background: rgba(255,255,255,.12); transform: rotate(90deg); }
  .drawer-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
  .drawer-list { overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .drawer-list::-webkit-scrollbar { width: 8px; }
  .drawer-list::-webkit-scrollbar-thumb { background: var(--panel-2); border-radius: 8px; }

  .dcard {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 14px; border-radius: 14px;
    background: rgba(255,255,255,.025);
    border: 1px solid var(--border);
    transition: transform .18s ease, background .2s ease, border-color .2s ease;
  }
  .dcard:hover { transform: translateX(-4px); background: rgba(255,255,255,.06); border-color: var(--border-strong); }
  .dcard .ic { flex: none; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--tile, linear-gradient(150deg, #2a3270, #171c3c)); border: 1px solid var(--border-strong); }
  .dcard .ic svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .dcard .ic.has-art { padding: 0; overflow: hidden; }
  .dcard .ic.has-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .dcard .txt { flex: 1; min-width: 0; }
  .dcard .txt b { display: block; font-family: "Sora"; font-weight: 700; font-size: 15.5px; }
  .dcard .txt span { display: block; color: var(--muted); font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .dcard .chev { flex: none; color: var(--muted); }
  .dcard .chev svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .drawer-foot { padding: 14px 16px 18px; border-top: 1px solid var(--border); }
  .drawer-foot .btn { width: 100%; justify-content: center; }

  /* ---------- Footer ---------- */
  .site-footer { margin-top: 40px; border-top: 1px solid var(--border); padding: 34px 0; color: var(--muted); }
  .site-footer .fr { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; }
  .site-footer a:hover { color: #fff; }
  .site-footer .links { display: flex; flex-wrap: wrap; gap: 18px; }
  .fine { font-size: 12.5px; margin-top: 18px; max-width: 760px; }
  .age { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--border-strong); font-weight: 800; font-size: 12px; color: #fff; margin-right: 8px; }

  @media (max-width: 760px) {
    .header-nav-hide { display: none; }
    .hero-stats { gap: 22px; }
    :root { --drawer-w: 100vw; }
  }

  @media (max-width: 560px) {
    .grid .gcard { flex-basis: 100%; max-width: 440px; }
  }


  /* ---------- Game detail pages ---------- */
  .ghero { padding: clamp(36px, 6vw, 64px) 0 10px; }
  .crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--muted); font-size: 13.5px; margin-bottom: 22px; }
  .crumbs a:hover { color: #fff; }
  .crumbs .sep { opacity: .5; }
  .ghero-grid { display: grid; grid-template-columns: 360px 1fr; gap: 38px; align-items: center; }
  .ghero-art { margin: 0; position: relative; width: 100%; aspect-ratio: 1 / 1; border-radius: 22px; overflow: hidden; border: 1px solid var(--border-strong); box-shadow: 0 30px 60px -28px rgba(0,0,0,.85); background: var(--tile); }
  .ghero-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ghero-info .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--primary-2); background: rgba(69,88,255,.12); border: 1px solid rgba(69,88,255,.3); padding: 6px 12px; border-radius: 999px; }
  .ghero-info h1 { font-family: "Sora"; font-weight: 900; letter-spacing: -.02em; font-size: clamp(34px, 6vw, 56px); line-height: 1.04; margin: 16px 0 12px; }
  .ghero-info p.tagline { color: var(--muted); font-size: clamp(16px, 2vw, 18px); margin: 0 0 22px; max-width: 540px; }
  .spec { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
  .spec .chip { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 12px; padding: 9px 13px; font-size: 13px; }
  .spec .chip b { display: block; font-family: "Sora"; font-size: 15px; }
  .spec .chip.green b { color: #4fd98a; }
  .gcta { display: flex; flex-wrap: wrap; gap: 12px; }
  .gbody { padding: 18px 0 6px; }
  .gbody .prose { max-width: 780px; }
  .gbody .container.gbody-grid { display: grid; grid-template-columns: minmax(0, 1fr) 236px; gap: 48px; align-items: start; }
  .gbody h2[id], #verdict { scroll-margin-top: 92px; }
  .toc { position: sticky; top: 92px; }
  .toc-inner { border: 1px solid var(--border); background: linear-gradient(165deg, var(--panel) 0%, var(--bg-2) 100%); border-radius: 16px; padding: 16px 14px; }
  .toc-h { display: block; font-family: "Sora"; font-weight: 800; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 2px 8px 10px; }
  .toc nav { display: flex; flex-direction: column; gap: 1px; }
  .toc a { display: block; padding: 8px 12px; border-radius: 9px; color: var(--muted); font-size: 14px; font-weight: 600; border-left: 2px solid transparent; transition: color .15s ease, background .15s ease, border-color .15s ease; }
  .toc a:hover { color: #fff; background: rgba(255,255,255,.04); }
  .toc a.active { color: #fff; background: rgba(69,88,255,.12); border-left-color: var(--primary-2); }
  @media (max-width: 920px) { .gbody .container.gbody-grid { grid-template-columns: 1fr; gap: 0; } .toc { display: none; } }
  .gbody h2 { font-family: "Sora"; font-weight: 800; letter-spacing: -.02em; font-size: clamp(23px, 3.4vw, 30px); margin: 34px 0 10px; }
  .gbody p { color: #c7ccea; font-size: 16.5px; margin: 0 0 16px; }
  .gbody p.lead { font-size: 18.5px; line-height: 1.6; color: #e8eaf7; }
  .gbody strong { color: #fff; }
  .gbody .prose a, .review .prose a { color: var(--primary-2); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(124,139,255,.4); }
  .gbody .prose a:hover, .review .prose a:hover { color: #fff; border-bottom-color: #fff; }
  .gbody ul { margin: 14px 0 18px; padding: 0; list-style: none; display: grid; gap: 10px; }
  .gbody ul li { position: relative; padding-left: 30px; color: #c7ccea; font-size: 16px; }
  .gbody ul li svg { position: absolute; left: 0; top: 3px; width: 20px; height: 20px; stroke: #4fd98a; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
  .gbody figure.shot, .review figure.shot { margin: 22px 0 26px; }
  .gbody figure.shot img, .review figure.shot img { width: 100%; height: auto; display: block; border-radius: 16px; border: 1px solid var(--border-strong); box-shadow: 0 26px 54px -30px rgba(0,0,0,.9); }
  .gbody figure.shot figcaption, .review figure.shot figcaption { margin-top: 10px; font-size: 13px; color: var(--muted); text-align: center; }
  .gbody .callout { margin: 22px 0; padding: 18px 20px; border-radius: 14px; background: rgba(69,88,255,.08); border: 1px solid rgba(69,88,255,.28); border-left: 4px solid var(--primary); }
  .gbody .callout p { margin: 0; color: #dfe2f5; font-size: 16px; }
  .gbody .tbl-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 14px; margin: 18px 0; }
  .gbody table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 360px; }
  .gbody th, .gbody td { text-align: left; padding: 11px 15px; border-bottom: 1px solid var(--border); vertical-align: top; }
  .gbody thead th { background: rgba(255,255,255,.03); color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: 11.5px; }
  .gbody tbody th { color: var(--muted); font-weight: 600; width: 42%; }
  .gbody tbody td { color: #fff; font-weight: 600; }
  .gbody table tr:last-child th, .gbody table tr:last-child td { border-bottom: 0; }
  .gbody td.good, .gbody .good { color: #4fd98a; font-weight: 700; }
  .gbody td.warn { color: #ffce6a; font-weight: 700; }
  .proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
  .pc { padding: 18px 20px; border-radius: 14px; border: 1px solid var(--border); background: var(--panel); }
  .pc h3 { margin: 0 0 12px; font-family: "Sora"; font-weight: 700; font-size: 17px; display: flex; align-items: center; gap: 8px; }
  .pc h3 svg { width: 20px; height: 20px; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
  .pc.pros h3 { color: #4fd98a; } .pc.pros h3 svg { stroke: #4fd98a; }
  .pc.cons h3 { color: #ff8a7a; } .pc.cons h3 svg { stroke: #ff8a7a; }
  .pc ul { margin: 0 !important; }
  .pc.cons ul li svg { stroke: #ff8a7a; }
  @media (max-width: 680px) { .proscons { grid-template-columns: 1fr; } }
  .more-games { padding: 30px 0 10px; }
  .more-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .mini { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 14px; background: rgba(255,255,255,.025); border: 1px solid var(--border); transition: transform .18s ease, background .2s ease, border-color .2s ease; }
  .mini:hover { transform: translateY(-3px); background: rgba(255,255,255,.06); border-color: var(--border-strong); }
  .mini .mi { flex: none; width: 44px; height: 44px; border-radius: 11px; overflow: hidden; border: 1px solid var(--border-strong); background: var(--tile); }
  .mini .mi img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .mini b { font-family: "Sora"; font-weight: 700; font-size: 14.5px; }
  @media (max-width: 720px) {
    .ghero-grid { grid-template-columns: 1fr; gap: 24px; }
    .ghero-art { max-width: 320px; }
  }
