:root {
 --bg: #ffffff;
 --text: #1c1a17;
 --muted: #5f5a52;
 --dim: #9a948a;
 --gold: #8a6a24;
 --gold-soft: #6f5418;
 --emerald: #2f6a5a;
 --border: rgba(0,0,0,.12);
 --serif: Helvetica, Arial, sans-serif;
 --display: Helvetica, Arial, sans-serif;
 --sans: Helvetica, Arial, sans-serif;
 --mono: Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
 margin: 0;
 background: var(--bg);
 color: var(--text);
 font-family: var(--serif);
 font-size: 17px;
 line-height: 1.55;
 -webkit-font-smoothing: antialiased;
 text-rendering: optimizeLegibility;
 border-top: 4px solid var(--gold);
}

::selection { background: var(--gold); color: #0a0a0a; }

a {
 color: var(--gold);
 text-decoration: none;
 border-bottom: 1px solid transparent;
 transition: border-color .18s, color .18s;
}
a:hover {
 color: var(--gold-soft);
 border-bottom-color: var(--gold-soft);
}

.wrap {
 max-width: 1100px;
 margin: 0 auto;
 padding: 40px 8px 60px;
}

/* Site header. Full-viewport-width bar */
.site-header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 background: #1c1a17;
 color: #f6f2ea;
 flex-wrap: wrap;
 /* Break out of .wrap max-width to viewport edges */
 margin: -40px calc(50% - 50vw) 28px;
 padding: 14px calc(50vw - 50% + 8px);
 border-radius: 0;
}
.site-title {
 font-family: var(--display);
 font-weight: 700;
 font-size: 24px;
 letter-spacing: -.01em;
 color: #f6f2ea;
 border: none;
 display: inline-flex;
 align-items: center;
 gap: 10px;
}
.site-title::before {
 content: "";
 display: inline-block;
 width: 22px;
 height: 28px;
 flex-shrink: 0;
 background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 40'><path d='M3 2 h26 a1 1 0 0 1 1 1 v34 l-14 -8 l-14 8 v-34 a1 1 0 0 1 1 -1 z' fill='%23c8a96a' stroke='%23f6f2ea' stroke-width='1.5' stroke-linejoin='round'/><path d='M13 12 l8 6 l-8 6 z' fill='%231c1a17'/></svg>");
 background-repeat: no-repeat;
 background-position: center;
 background-size: contain;
}
.site-title:hover { color: var(--gold); border: none; }
.site-tagline {
 font-family: var(--mono);
 font-size: 11px;
 color: rgba(246, 242, 234, .55);
 letter-spacing: .02em;
 margin-left: 12px;
 align-self: center;
 padding-left: 12px;
}
@media (max-width: 600px) {
 .site-tagline { display: none; }
}
.site-title .dot {
 display: inline-block;
 width: 8px;
 height: 8px;
 background: var(--gold);
 border-radius: 50%;
 margin-left: 6px;
 color: transparent;
 overflow: hidden;
 vertical-align: middle;
}
.site-nav {
 display: flex;
 gap: 4px;
 font-family: var(--mono);
 font-size: 12px;
 letter-spacing: .02em;
}
.site-nav a {
 color: #d9d4c8;
 border: none;
 padding: 5px 10px;
 border-radius: 2px;
 transition: background .15s, color .15s;
}
.site-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.site-nav a.current {
 background: var(--gold);
 color: #1c1a17;
 font-weight: 700;
}
.site-nav a:nth-child(1):hover { color: #e8b4a0; }
.site-nav a:nth-child(2):hover { color: #b4c9e8; }
.site-nav a:nth-child(3):hover { color: #c8e8b4; }
.site-nav a:nth-child(4):hover { color: #e8d4a0; }
.site-nav a:nth-child(5):hover { color: #d4b4e8; }
.site-nav a.current:hover { color: #1c1a17; background: var(--gold-soft); }

/* Typography */
h1, h2, h3, h4 {
 font-family: var(--display);
 font-weight: 700;
 color: var(--text);
 text-wrap: balance;
}
h1 {
 font-family: var(--display);
 font-size: 34px;
 line-height: 1.1;
 letter-spacing: -.015em;
 margin: 0 0 10px;
}
h1 em { color: var(--gold); font-style: normal; font-weight: 700; }
h2 {
 font-size: 20px;
 line-height: 1.25;
 font-weight: 700;
 margin: 40px 0 14px;
 padding-bottom: 4px;
 border-bottom: 1px solid var(--border);
}
h2 .count {
 font-family: var(--mono);
 font-size: 11px;
 letter-spacing: .05em;
 color: var(--dim);
 float: right;
 padding-top: 8px;
 font-weight: normal;
}
h3 {
 font-size: 17px;
 font-weight: 700;
 margin: 24px 0 8px;
 color: var(--text);
}
h4 {
 font-family: var(--mono);
 font-size: 11px;
 letter-spacing: .08em;
 text-transform: uppercase;
 color: var(--muted);
 margin: 20px 0 8px;
 font-weight: normal;
}

p {
 margin: 0 0 14px;
 color: var(--text);
}

.lede {
 font-size: 16px;
 color: var(--muted);
 line-height: 1.55;
 margin-bottom: 28px;
 font-style: normal;
}

blockquote {
 margin: 20px 0;
 padding: 2px 0 2px 16px;
 color: var(--muted);
 font-style: normal;
 font-size: 16px;
 line-height: 1.5;
}
blockquote p { color: var(--muted); margin-bottom: 8px; }
blockquote cite {
 display: block;
 margin-top: 6px;
 font-style: normal;
 font-family: var(--mono);
 font-size: 11px;
 letter-spacing: .04em;
 color: var(--dim);
 text-transform: none;
}

hr {
 border: none;
 border-top: 1px solid var(--border);
 margin: 28px 0;
}
hr.ornament {
 border: none;
 border-top: 1px solid var(--border);
 margin: 28px 0;
 height: 0;
}

code, pre {
 font-family: var(--mono);
 font-size: 14px;
 background: rgba(255,255,255,.04);
 padding: 2px 6px;
 border-radius: 3px;
 color: var(--gold-soft);
}
pre { padding: 16px 20px; overflow-x: auto; }

/* Avatar / profile picture */
.avatar {
 display: block;
 width: 96px;
 height: 96px;
 border-radius: 50%;
 overflow: hidden;
 object-fit: cover;
 background: #1c1a17;
 margin: 0 0 20px;
 box-shadow: 0 2px 12px rgba(0,0,0,.12);
 border: 3px solid #fff;
}
.avatar.large { width: 160px; height: 160px; margin: 8px auto 28px; }
.article-header:has(.avatar.large) { text-align: center; }
.article-header:has(.avatar.large) .article-meta { justify-content: center; }

/* Intro block on homepage — avatar on the left, text on the right */
.intro {
 display: flex;
 gap: 40px;
 align-items: flex-start;
 margin-bottom: 40px;
}
.intro > .avatar {
 width: 180px;
 height: 180px;
 border-radius: 3px;
 border: 6px solid #fff;
 box-shadow: 0 8px 24px rgba(0,0,0,.18);
 transform: rotate(-2deg);
 flex-shrink: 0;
 margin: 12px 0 0;
 background: #1c1a17;
}
.intro > .intro-text { flex: 1; min-width: 0; }
.intro p {
 font-size: 16px;
 line-height: 1.55;
 color: var(--muted);
}
.intro p em { color: var(--text); font-style: normal; font-weight: 700; }
@media (max-width: 700px) {
 .intro { flex-direction: column; gap: 20px; }
 .intro > .avatar { width: 128px; height: 128px; transform: none; margin: 0; }
}

/* Section lists. Brain Baking style */
.list {
 list-style: none;
 margin: 0;
 padding: 0;
}
.list.tight li { padding: 6px 0; }

/* Review list rows */
.reviews {
 list-style: none;
 margin: 0;
 padding: 0;
}
.reviews li {
 display: grid;
 grid-template-columns: 44px 1fr auto;
 gap: 20px;
 align-items: center;
 padding: 10px 0;
 border-bottom: 1px dotted var(--border);
}
.reviews li .date { display: none; }

/* Cover thumb. CSS-only mock covers */
.cover {
 display: inline-block;
 width: 44px;
 height: 58px;
 background: linear-gradient(135deg, var(--c1, #333), var(--c2, #111));
 border: 1px solid rgba(0,0,0,.2);
 box-shadow: 1px 2px 4px rgba(0,0,0,.15);
 position: relative;
 overflow: hidden;
 flex-shrink: 0;
 align-self: center;
 vertical-align: middle;
}
.cover.book { border-top: 3px solid var(--gold); }
.cover.game { border-top: 3px solid var(--emerald); }
img.cover { object-fit: cover; background: #1c1a17; }
.cover-title {
 position: absolute;
 inset: 4px 3px 6px;
 font-family: var(--display);
 font-weight: 700;
 font-size: 6.5px;
 color: #fff;
 line-height: 1.05;
 text-align: center;
 display: flex;
 align-items: center;
 justify-content: center;
 text-shadow: 0 1px 2px rgba(0,0,0,.7);
 letter-spacing: 0;
 word-break: break-word;
 hyphens: auto;
}
.cover.large {
 width: 88px;
 height: 118px;
}
.cover.large .cover-title { font-size: 12px; inset: 8px 6px 12px; }

/* Related card cover row */
.related-card {
 display: grid;
 grid-template-columns: 44px 1fr;
 gap: 12px;
 align-items: center;
}
.related-card .rc-body { min-width: 0; }

@media (max-width: 600px) {
 .reviews li {
 grid-template-columns: 44px 1fr;
 row-gap: 4px;
 }
 .reviews li .cat { grid-column: 2 / 4; padding-left: 58px; }
}
.reviews li .title-cell {
 min-width: 0;
}
.reviews li .title-cell a {
 font-family: var(--display);
 color: var(--text);
 font-size: 16px;
 font-weight: 700;
 letter-spacing: -.005em;
 border-bottom: 1px solid transparent;
}
.reviews li .title-cell a:hover {
 color: var(--gold);
 border-bottom-color: var(--gold);
}
.reviews li .title-cell .by {
 display: inline;
 font-size: 13px;
 color: var(--muted);
 font-style: normal;
 margin-left: 8px;
}
.reviews li .cat {
 font-family: var(--mono);
 font-size: 11px;
 letter-spacing: .04em;
 color: var(--muted);
}
.reviews li .cat.game { color: var(--emerald); }
.reviews li .cat.book { color: var(--gold); }
.reviews li .rating {
 font-family: var(--mono);
 font-size: 12px;
 color: var(--gold);
 letter-spacing: .05em;
 margin-left: 8px;
}
/* obsolete. See cover-aware media query above */

/* Categories / tag chains. Brain Baking style */
.cats {
 list-style: none;
 padding: 0;
 margin: 0;
}
.cats li {
 padding: 8px 0;
 border-bottom: 1px dotted var(--border);
}
.cats .cat-name {
 font-family: var(--serif);
 font-style: normal;
 font-weight: 700;
 font-size: 16px;
 color: var(--text);
 margin-right: 10px;
 border-bottom: 1px solid transparent;
}
.cats .cat-name:hover { color: var(--gold); border-bottom-color: var(--gold); }
.cats .cat-count {
 font-family: var(--mono);
 font-size: 11px;
 color: var(--dim);
 letter-spacing: 0;
 margin-right: 6px;
}
.cats .tags {
 display: inline;
 font-family: var(--mono);
 font-size: 11px;
 color: var(--dim);
 letter-spacing: 0;
}
.cats .tags a {
 color: var(--muted);
 border-bottom: 1px solid transparent;
}
.cats .tags a:hover { color: var(--gold); }
.cats .tags .slash { color: var(--dim); margin: 0 2px 0 6px; }

/* Year list */
.years {
 list-style: none;
 padding: 0;
 margin: 0;
}
.years li {
 padding: 6px 0;
 display: grid;
 grid-template-columns: 60px 1fr auto;
 gap: 16px;
 align-items: baseline;
 border-bottom: 1px dotted var(--border);
}
.years .year {
 font-family: var(--serif);
 font-weight: 700;
 font-size: 16px;
 color: var(--gold);
 border-bottom: 1px solid transparent;
}
.years .year:hover { border-bottom-color: var(--gold); }
.years .desc {
 color: var(--muted);
 font-style: normal;
 font-size: 14px;
}
.years .n {
 font-family: var(--mono);
 font-size: 11px;
 color: var(--dim);
 letter-spacing: 0;
}

/* Tag cloud */
.taglist {
 columns: 3;
 column-gap: 32px;
 list-style: none;
 padding: 0;
 margin: 0;
 font-family: var(--mono);
 font-size: 13px;
}
.taglist li { padding: 3px 0; break-inside: avoid; }
.taglist a {
 color: var(--muted);
 border-bottom: 1px solid transparent;
}
.taglist a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.taglist .n {
 color: var(--dim);
 font-size: 11px;
 margin-left: 4px;
}
@media (max-width: 600px) { .taglist { columns: 2; } }

/* Search box */
.search {
 margin: 20px 0 30px;
}
.search input {
 width: 100%;
 padding: 8px 12px;
 background: transparent;
 border: 1px solid var(--border);
 border-radius: 2px;
 color: var(--text);
 font-family: var(--sans);
 font-size: 14px;
 outline: none;
}
.search input:focus { border-color: var(--gold); }
.search input::placeholder { color: var(--dim); }

/* Review article page */
.article-header {
 margin-bottom: 24px;
 padding-bottom: 16px;
 border-bottom: 1px solid var(--border);
}
.article-kicker {
 font-family: var(--mono);
 font-size: 11px;
 letter-spacing: .04em;
 text-transform: none;
 color: var(--gold);
 margin-bottom: 10px;
}
.article-kicker.game { color: var(--emerald); }
.article-header h1 {
 font-family: var(--display);
 font-size: 38px;
 line-height: 1.05;
 letter-spacing: -.02em;
 margin-bottom: 4px;
}
.article-byline {
 font-family: var(--serif);
 font-style: normal;
 color: var(--muted);
 font-size: 15px;
 margin-bottom: 14px;
}
.article-meta {
 display: flex;
 flex-wrap: wrap;
 gap: 14px;
 font-family: var(--mono);
 font-size: 11px;
 color: var(--dim);
 letter-spacing: 0;
}
.article-meta .rating { color: var(--gold); }
.article-meta strong {
 color: var(--muted);
 font-weight: normal;
 text-transform: none;
 letter-spacing: 0;
 margin-right: 4px;
}

.article-body {
 font-size: 16px;
 line-height: 1.6;
}
.article-body p { margin-bottom: 14px; }
.article-body em { color: var(--gold-soft); font-style: normal; font-weight: 700; }
em, i, cite { font-style: normal; }

.tags-footer {
 margin-top: 28px;
 padding-top: 14px;
 border-top: 1px solid var(--border);
 font-family: var(--mono);
 font-size: 11px;
 color: var(--dim);
 letter-spacing: 0;
}
.tags-footer a { color: var(--muted); border: none; }
.tags-footer a:hover { color: var(--gold); }
.tags-footer .slash { color: var(--dim); margin: 0 4px; }

.prev-next {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 16px;
 margin-top: 28px;
 padding-top: 16px;
 border-top: 1px solid var(--border);
}
.prev-next a {
 color: var(--text);
 border: none;
 display: block;
}
.prev-next a:hover { color: var(--gold); }
.prev-next .label {
 font-family: var(--mono);
 font-size: 10px;
 letter-spacing: .04em;
 text-transform: none;
 color: var(--dim);
 margin-bottom: 4px;
 display: block;
}
.prev-next .t {
 font-family: var(--serif);
 font-weight: 700;
 font-style: normal;
 font-size: 14px;
}
.prev-next .next { text-align: right; }
@media (max-width: 500px) { .prev-next { grid-template-columns: 1fr; } }

/* Site footer */
.site-footer {
 margin-top: 40px;
 padding-top: 14px;
 border-top: 1px solid var(--border);
 font-family: var(--mono);
 font-size: 11px;
 letter-spacing: 0;
 color: var(--dim);
 display: flex;
 justify-content: space-between;
 gap: 16px;
 flex-wrap: wrap;
}
.site-footer a { color: var(--muted); border: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer .slash { color: var(--dim); margin: 0 8px; }

@media (max-width: 500px) {
 .wrap { padding: 24px 12px 40px; }
 h1 { font-size: 26px; }
 .article-header h1 { font-size: 26px; }
 body { font-size: 16px; }
}

/* ============================================
 Review page components
 ============================================ */

/* Breadcrumbs */
.breadcrumbs {
 font-family: var(--mono);
 font-size: 11px;
 color: var(--muted);
 margin-bottom: 20px;
 letter-spacing: 0;
}
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li { display: inline; }
.breadcrumbs li + li::before { content: "/"; color: var(--dim); margin-right: 6px; }
.breadcrumbs a { color: var(--muted); border: none; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs [aria-current="page"] { color: var(--text); }

/* Single-column review layout (spec sidebar removed for simpler pages) */
.review-layout { display: block; }

/* Quick verdict card */
.verdict {
 background: #fbf8f1;
 border: 1px solid var(--border);
 padding: 18px 20px;
 margin: 0 0 24px;
}
.verdict .label {
 font-family: var(--mono);
 font-size: 10px;
 color: var(--gold);
 letter-spacing: .04em;
 text-transform: uppercase;
 margin-bottom: 6px;
}
.verdict p {
 margin: 0;
 font-size: 16px;
 line-height: 1.5;
}
.verdict .score {
 display: flex;
 align-items: baseline;
 gap: 10px;
 margin-top: 12px;
 padding-top: 12px;
 border-top: 1px dotted var(--border);
}
.verdict .score .n {
 font-family: var(--display);
 font-size: 32px;
 font-weight: 700;
 color: var(--gold);
 line-height: 1;
}
.verdict .score .of {
 font-family: var(--mono);
 font-size: 11px;
 color: var(--muted);
}
.verdict .score .stars {
 color: var(--gold);
 font-size: 14px;
 margin-left: auto;
}

/* Spec sidebar */
.spec {
 border: 1px solid var(--border);
 padding: 16px 18px;
 background: #fbf8f1;
 position: sticky;
 top: 20px;
}
.spec h3 {
 font-family: var(--mono);
 font-size: 10px;
 letter-spacing: .06em;
 text-transform: uppercase;
 color: var(--gold);
 margin: 0 0 12px;
 font-weight: 700;
 padding-bottom: 8px;
 border-bottom: 1px solid var(--border);
}
.spec dl {
 margin: 0;
 display: grid;
 grid-template-columns: auto 1fr;
 gap: 6px 12px;
 font-size: 13px;
}
.spec dt {
 font-family: var(--mono);
 font-size: 10px;
 letter-spacing: 0;
 text-transform: uppercase;
 color: var(--muted);
 align-self: center;
}
.spec dd { margin: 0; color: var(--text); font-weight: 700; }
.spec dd .sub { display: block; font-weight: normal; font-size: 11px; color: var(--muted); font-family: var(--mono); }
.spec .buy-row {
 margin-top: 14px;
 padding-top: 14px;
 border-top: 1px dotted var(--border);
 font-family: var(--mono);
 font-size: 11px;
}
.spec .buy-row a { display: block; padding: 6px 0; }

/* Table of contents */
.toc {
 background: transparent;
 border: 1px dotted var(--border);
 padding: 14px 18px;
 margin: 20px 0 28px;
 font-size: 14px;
}
.toc-label {
 font-family: var(--mono);
 font-size: 10px;
 letter-spacing: .06em;
 text-transform: uppercase;
 color: var(--muted);
 margin-bottom: 8px;
}
.toc ol {
 list-style: none;
 padding: 0;
 margin: 0;
 columns: 2;
 column-gap: 24px;
}
.toc li {
 padding: 3px 0;
 font-family: var(--mono);
 font-size: 12px;
 break-inside: avoid;
}
.toc li::before {
 content: counter(list-item) ". ";
 color: var(--dim);
 margin-right: 4px;
}
.toc a { color: var(--muted); border: none; }
.toc a:hover { color: var(--gold); }
@media (max-width: 500px) { .toc ol { columns: 1; } }

/* Section anchors. Used within article body */
.article-body h2 {
 font-family: var(--display);
 font-size: 22px;
 margin: 32px 0 12px;
 padding-bottom: 4px;
 border-bottom: 1px solid var(--border);
 scroll-margin-top: 20px;
}
.article-body h2::first-line { color: var(--text); }

/* Pros / cons columns */
.pros-cons {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 16px;
 margin: 16px 0 24px;
}
@media (max-width: 500px) { .pros-cons { grid-template-columns: 1fr; } }
.pros.cons {
 border: 1px solid var(--border);
 padding: 14px 16px;
}
.pros { }
.cons { }
.pros h3.cons h3 {
 font-family: var(--mono);
 font-size: 10px;
 letter-spacing: .06em;
 text-transform: uppercase;
 margin: 0 0 10px;
 font-weight: 700;
}
.pros h3 { color: var(--emerald); }
.cons h3 { color: #a94a3a; }
.pros ul.cons ul {
 list-style: none;
 padding: 0;
 margin: 0;
 font-size: 14px;
}
.pros li.cons li {
 padding: 4px 0 4px 18px;
 position: relative;
 line-height: 1.45;
}
.pros li::before {
 content: "+";
 position: absolute; left: 0; top: 4px;
 color: var(--emerald);
 font-weight: 700;
}
.cons li::before {
 content: "−";
 position: absolute; left: 0; top: 4px;
 color: #a94a3a;
 font-weight: 700;
}

/* Comparison table */
.compare-wrap { overflow-x: auto; margin: 16px 0 24px; }
.compare {
 width: 100%;
 border-collapse: collapse;
 font-size: 13px;
 min-width: 560px;
}
.compare th.compare td {
 padding: 10px 12px;
 text-align: left;
 border-bottom: 1px solid var(--border);
 vertical-align: top;
}
.compare thead th {
 font-family: var(--mono);
 font-size: 10px;
 letter-spacing: .04em;
 text-transform: uppercase;
 color: var(--muted);
 font-weight: 700;
 border-bottom: 2px solid var(--gold);
}
.compare tbody th {
 font-family: var(--mono);
 font-size: 10px;
 letter-spacing: .04em;
 text-transform: uppercase;
 color: var(--muted);
 font-weight: 700;
 width: 130px;
 background: #fbf8f1;
}
.compare td { color: var(--text); }
.compare td.best { color: var(--gold); font-weight: 700; }
.compare tbody tr:hover td { background: #fbf8f1; }

/* Rating breakdown bars */
.rating-breakdown {
 border: 1px solid var(--border);
 padding: 16px 18px;
 margin: 16px 0 24px;
 background: #fbf8f1;
}
.rating-breakdown h3 {
 font-family: var(--mono);
 font-size: 10px;
 letter-spacing: .06em;
 text-transform: uppercase;
 color: var(--gold);
 margin: 0 0 12px;
}
.rb-row {
 display: grid;
 grid-template-columns: 120px 1fr 30px;
 gap: 12px;
 align-items: center;
 margin-bottom: 6px;
 font-size: 13px;
}
.rb-row .lbl {
 font-family: var(--mono);
 font-size: 11px;
 color: var(--muted);
}
.rb-row .bar {
 height: 6px;
 background: rgba(0,0,0,.08);
 border-radius: 3px;
 overflow: hidden;
}
.rb-row .fill {
 height: 100%;
 background: var(--gold);
 border-radius: 3px;
}
.rb-row .n {
 font-family: var(--mono);
 font-size: 11px;
 color: var(--text);
 font-weight: 700;
 text-align: right;
}
.rb-total {
 margin-top: 10px;
 padding-top: 10px;
 border-top: 1px dotted var(--border);
 display: flex;
 justify-content: space-between;
 align-items: baseline;
}
.rb-total .lbl { font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--muted); }
.rb-total .n {
 font-family: var(--display);
 font-size: 22px;
 font-weight: 700;
 color: var(--gold);
}

/* FAQ (details/summary) */
.faq {
 margin: 20px 0;
 border-top: 1px solid var(--border);
}
.faq details {
 border-bottom: 1px solid var(--border);
 padding: 14px 0;
}
.faq summary {
 font-family: var(--display);
 font-weight: 700;
 font-size: 16px;
 cursor: pointer;
 padding-right: 24px;
 position: relative;
 list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
 content: "+";
 position: absolute;
 right: 0; top: 0;
 color: var(--gold);
 font-size: 20px;
 line-height: 1;
 transition: transform .15s;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { color: var(--gold); }
.faq details > *:not(summary) {
 margin-top: 12px;
 font-size: 15px;
 line-height: 1.55;
 color: var(--muted);
}

/* Key takeaways box */
.takeaways {
 border: 1px solid var(--border);
 border-top: 3px solid var(--gold);
 padding: 16px 20px;
 margin: 20px 0;
 background: #fbf8f1;
}
.takeaways h3 {
 font-family: var(--mono);
 font-size: 10px;
 letter-spacing: .06em;
 text-transform: uppercase;
 color: var(--gold);
 margin: 0 0 10px;
}
.takeaways ul {
 list-style: none;
 padding: 0;
 margin: 0;
 font-size: 14px;
}
.takeaways li {
 padding: 5px 0 5px 20px;
 position: relative;
 line-height: 1.5;
}
.takeaways li::before {
 content: "→";
 position: absolute; left: 0; top: 5px;
 color: var(--gold);
 font-weight: 700;
}

/* Related reviews */
.related {
 margin-top: 28px;
 padding-top: 20px;
 border-top: 1px solid var(--border);
}
.related h3 {
 font-family: var(--mono);
 font-size: 10px;
 letter-spacing: .06em;
 text-transform: uppercase;
 color: var(--muted);
 margin: 0 0 14px;
}
.related-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 16px;
}
@media (max-width: 700px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
 border: 1px solid var(--border);
 padding: 12px 14px;
 text-decoration: none;
 color: var(--text);
 transition: border-color .15s, background .15s;
}
.related-card:hover { border-color: var(--gold); background: #fbf8f1; }
.related-card .cat {
 font-family: var(--mono);
 font-size: 10px;
 color: var(--gold);
 letter-spacing: .04em;
 text-transform: uppercase;
 margin-bottom: 4px;
}
.related-card .t {
 font-family: var(--display);
 font-size: 15px;
 font-weight: 700;
 line-height: 1.2;
 margin-bottom: 4px;
}
.related-card .m {
 font-size: 12px;
 color: var(--muted);
 font-family: var(--mono);
}

/* Hero meta strip on review pages */
.game-meta-strip {
 display: flex;
 flex-wrap: wrap;
 gap: 20px;
 padding: 14px 0;
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
 margin-bottom: 24px;
 font-family: var(--mono);
 font-size: 11px;
 color: var(--muted);
}
.game-meta-strip .item {
 display: flex;
 flex-direction: column;
 gap: 2px;
}
.game-meta-strip .item .l {
 font-size: 10px;
 color: var(--dim);
 text-transform: uppercase;
 letter-spacing: .04em;
}
.game-meta-strip .item .v {
 font-family: var(--display);
 font-size: 14px;
 color: var(--text);
 font-weight: 700;
}

/* One-liner review and Read more button (used on the book/game list) */
.reviews li .title-cell .one-liner {
 display: block;
 font-size: 14px;
 color: var(--muted);
 line-height: 1.45;
 margin-top: 6px;
 max-width: 62ch;
}
.reviews li .read-more {
 font-family: var(--mono);
 font-size: 10px;
 letter-spacing: .04em;
 color: var(--gold);
 background: transparent;
 border: 1px solid var(--gold);
 padding: 5px 10px;
 border-radius: 2px;
 text-decoration: none;
 white-space: nowrap;
 transition: background .15s, color .15s;
 align-self: center;
 display: inline-flex;
 align-items: center;
 gap: 4px;
}
.reviews li .read-more:hover {
 background: var(--gold);
 color: #fff;
 border-color: var(--gold);
}
.reviews li.has-more {
 grid-template-columns: 44px 1fr 110px 140px;
}
.reviews li.has-more .read-more { justify-self: end; }
.reviews li.has-more .cat { justify-self: end; text-align: right; white-space: nowrap; }
@media (max-width: 700px) {
 .reviews li.has-more {
   grid-template-columns: 44px 1fr;
 }
 .reviews li.has-more .read-more { grid-column: 3; justify-self: start; margin-top: 6px; }
 .reviews li.has-more .cat { grid-column: 2 / 4; padding-left: 58px; }
}

/* Newsletter block */
.newsletter-block {
 margin: 40px 0;
 padding: 24px 24px;
 border: 1px solid var(--border);
 background: #fbf8f1;
 text-align: center;
}
.newsletter-block h3 {
 font-family: var(--display);
 font-size: 22px;
 margin: 0 0 6px;
 font-weight: 700;
}
.newsletter-block p {
 color: var(--muted);
 font-size: 14px;
 margin: 0 0 14px;
}
.newsletter-block form {
 display: flex;
 gap: 6px;
 max-width: 420px;
 margin: 0 auto;
 flex-wrap: wrap;
 justify-content: center;
}
.newsletter-block input {
 flex: 1;
 min-width: 200px;
 padding: 8px 12px;
 border: 1px solid var(--border);
 background: white;
 font-family: var(--sans);
 font-size: 13px;
 color: var(--text);
 outline: none;
}
.newsletter-block input:focus { border-color: var(--gold); }
.newsletter-block button {
 padding: 8px 16px;
 background: var(--gold);
 color: white;
 border: none;
 font-family: var(--mono);
 font-size: 11px;
 letter-spacing: .04em;
 text-transform: uppercase;
 font-weight: 700;
 cursor: pointer;
}
.newsletter-block button:hover { background: var(--gold-soft); }

