	/* ===== Game detail v2 — synthesis of Steam / Roblox / Core / sbox.game ===== */
	/* Top "at a glance" stats ribbon */
	.d2-ribbon { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; padding: 2px 2px 20px; }
	.d2-rib { display: flex; flex-direction: column; gap: 2px; line-height: 1.12; }
	.d2-rib .rv { font-family: var(--game); font-weight: 800; font-size: 17px; display: inline-flex; align-items: center; gap: 5px; font-variant-numeric: tabular-nums; }
	.d2-rib .rv.up { color: var(--up); } .d2-rib .rv.down { color: var(--down); }
	.d2-rib .rv .pc-icon { height: 18px; width: auto; }
	.d2-rib .rk { font-size: 10.5px; text-transform: uppercase; letter-spacing: .7px; color: var(--muted2); }
	.d2-rib.rating .rv { font-size: 21px; }
	.d2-rib.rating.rec .rv { color: var(--rec); } .d2-rib.rating.prom .rv { color: var(--prom); } .d2-rib.rating.need .rv { color: var(--need); }
	.d2-rib-sep { width: 1px; align-self: stretch; background: var(--border); margin: 3px 0; }
	.d2-rib-spacer { margin-left: auto; }
	.d2-report { color: var(--muted); font-size: 13px; font-weight: 600; text-decoration: none; padding: 7px 13px;
		border-radius: 9px; border: 1px solid var(--border); transition: color .12s, border-color .12s, background .12s; }
	.d2-report:hover { color: var(--down); border-color: var(--down); background: rgba(242,85,90,.07); }

		/* Hero: media + tabs on the left, info sidebar on the right (Core/Looklike layout) */
	.d2-hero { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 32px; align-items: start; }
	@media (max-width: 980px) { .d2-hero { grid-template-columns: 1fr; } }
	.d2-left { min-width: 0; }
	.d2-side { min-width: 0; margin-top: 50px; }
	.d2-side-img { width: 100%; aspect-ratio: 16/9; border-radius: 10px; border: 1px solid var(--border);
		background: #0a0c12 center/cover no-repeat; margin-bottom: 14px; }

	/* Title bar above the media (left column) */
	.d2-titlebar { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
	.d2-title { font-family: inherit; font-size: 31px; font-weight: 800; letter-spacing: -.3px; line-height: 1.1; }
	.d2-subline { display: flex; align-items: center; gap: 16px; margin-top: 9px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }
	.d2-subline .by b { color: var(--text); font-weight: 700; }
	.d2-rate { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; }
	.d2-rate.rec { color: var(--up); } .d2-rate.prom { color: var(--prom); } .d2-rate.need { color: var(--down); } .d2-rate.none { color: var(--muted); }
	.d2-rate svg { width: 15px; height: 15px; fill: currentColor; }
	.d2-live { color: var(--up); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
	.d2-live .pc-icon { height: 17px; width: auto; }
	.d2-report { color: var(--muted2); font-size: 12.5px; text-decoration: none; white-space: nowrap; flex: 0 0 auto; margin-top: 5px; }
	.d2-report:hover { color: var(--down); }
	.d2-media { min-width: 0; }

	/* Play / Favorite (top of the sidebar) */
	.d2-play { display: flex; align-items: center; justify-content: center; gap: 9px; text-decoration: none;
		background: var(--accent); color: var(--ink); font-family: inherit; font-weight: 800; font-size: 18px;
		padding: 15px; border-radius: 10px; margin-bottom: 10px; transition: background .12s, transform .12s, box-shadow .12s;
		box-shadow: 0 8px 22px rgba(50,115,235,.28); }
	.d2-play:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(50,115,235,.4); }
	.d2-play.starting { background: var(--accent-deep); box-shadow: none; transform: none; opacity: .85; cursor: default; }
	/* Any play button mid-launch gets a soft pulse so "Starting game…" reads as active. */
	.starting { animation: playPulse 1.1s ease-in-out infinite; }
	@keyframes playPulse { 0%,100% { opacity: .85; } 50% { opacity: .55; } }
	.d2-actions { display: flex; gap: 10px; margin-bottom: 22px; }
	/* Favorite button uses the hamburger-bars pill as its background (swaps on hover). */
	.d2-act { flex: 1 1 0; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
		color: #fff; border: none; border-radius: 0; font-weight: 800; font-size: 15px; padding: 15px; cursor: pointer; white-space: nowrap;
		background: url('/Icons/HamburgarMenuBars.png') center/100% 100% no-repeat;
		-webkit-mask-image: radial-gradient(ellipse 99% 92% at 50% 50%, #000 74%, transparent 100%);
		mask-image: radial-gradient(ellipse 99% 92% at 50% 50%, #000 74%, transparent 100%);
		text-shadow: 0 1px 4px rgba(0,0,0,.5); transition: background-image .12s, transform .12s; }
	.d2-act:hover { background-image: url('/Icons/HamburgarMenuBarsHovered.png'); transform: translateY(-1px); }
	.d2-act.on { background-image: url('/Icons/HamburgarMenuBarsHovered.png'); }

	/* Info bar — solid panel, one row of 4, centered (here.png) */
	.d2-statbar { display: grid; grid-template-columns: repeat(4, 1fr); background: #232a38; border-radius: 8px; padding: 13px 4px; margin-bottom: 26px; }
	.d2-statcell { text-align: center; padding: 0 4px; min-width: 0; }
	.d2-statcell .k { font-size: 11px; color: #5f9cd4; font-weight: 600; white-space: nowrap; }
	.d2-statcell .v { font-size: 13.5px; font-weight: 700; color: #fff; margin-top: 6px; font-variant-numeric: tabular-nums; white-space: nowrap; }

	/* Sidebar sections — flat (no boxes), big blue uppercase headings (Looklike.png) */
	.d2-sec { margin-bottom: 26px; }
	.d2-sec-h { font-size: 19px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; font-family: var(--game); }

	/* Outlined blue tag pills (Looklike.png) */
	.d2-tags { display: flex; flex-wrap: wrap; gap: 9px; }
	.d2-tag { --ttint: 90,110,140;
		background:
			linear-gradient(135deg, rgba(var(--ttint), .28), rgba(var(--ttint), .10)),
			linear-gradient(135deg, #3c465a, #2a3142);
		border: 0.5px solid rgba(var(--ttint), .55); color: #fff;
		font-size: 13px; font-weight: 600; padding: 9px 20px; border-radius: 10px; cursor: pointer;
		transition: background .12s, transform .12s; }
	.d2-tag:hover { background:
			linear-gradient(135deg, rgba(var(--ttint), .42), rgba(var(--ttint), .18)),
			linear-gradient(135deg, #46526a, #323a4e);
		transform: translateY(-1px); }

	/* Creator block (sidebar) */
	.d2-creator2 { display: flex; align-items: center; gap: 13px; cursor: pointer; background: none; border: none; padding: 0; text-align: left; }
	.d2-creator2 .av { width: 50px; height: 50px; border-radius: 10px; flex: 0 0 auto; background: #0a0c12 center/cover no-repeat;
		display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 21px; }
	.d2-creator2 .nm { font-size: 19px; font-weight: 800; color: var(--text); }
	.d2-creator2:hover .nm { color: var(--accent); }

	/* Tabs */
	.d2-tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--border); margin: 36px 0 0; }
	.d2-tab { background: none; border: none; cursor: pointer; color: var(--muted); font-family: inherit;
		font-weight: 700; font-size: 16px; padding: 12px 18px; position: relative; transition: color .12s; }
	.d2-tab:hover { color: var(--text); }
	.d2-tab.active { color: var(--text); }
	.d2-tab.active::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: -1px; height: 3px;
		background: var(--accent); border-radius: 3px 3px 0 0; }
	.d2-tabpane { padding-top: 4px; }

	/* Sidebar info rows — icon + text (rightside.png / Steam feature-list look) */
	.d2-rows { display: flex; flex-direction: column; gap: 1px; }
	.d2-irow2 { display: flex; align-items: center; gap: 11px; padding: 8px 0; font-size: 13.5px; color: var(--text); }
	.d2-irow2 b { font-weight: 700; }
	.d2-ico { width: 18px; height: 18px; flex: 0 0 auto; stroke: var(--accent); fill: none; opacity: .92; }

	/* Sidebar "More from creator" — vertical banner cards (morecreator.png) */
	.section-title.side { margin: 24px 0 10px; }
	.side-games { display: flex; flex-direction: column; gap: 12px; }
	.side-game { cursor: pointer; border-radius: 10px; overflow: hidden; border: 1px solid var(--border);
		background: var(--bg2); transition: border-color .12s, transform .12s, box-shadow .12s; }
	.side-game:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.4); }
	.side-game-thumb { position: relative; aspect-ratio: 16/9; background: #0a0c12 center/cover no-repeat; }
	.side-game-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 42%, rgba(6,8,13,.88)); }
	.side-game-title { position: absolute; left: 11px; right: 11px; bottom: 8px; z-index: 2; font-weight: 800; font-size: 14px;
		color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-shadow: 0 2px 6px rgba(0,0,0,.85); }
	.side-game-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 11px; font-size: 12.5px; }
	.side-game-foot .sg-players { display: inline-flex; align-items: center; gap: 5px; color: #4ade80; font-weight: 800; font-variant-numeric: tabular-nums; }
	.side-game-foot .sg-players .pc-icon { height: 16px; width: auto; }
	.side-game-foot .sg-rating { display: inline-flex; align-items: center; gap: 5px; color: var(--text); font-weight: 800; }
	.side-game-foot .sg-rating svg { width: 13px; height: 13px; fill: #fff; stroke: none; }

	/* Official Community card (sidebar, under "More from creator") */
	.d2-sec-comm { margin-top: 18px; }
	.side-comm { width: 100%; display: flex; align-items: center; gap: 11px; cursor: pointer; text-align: left;
		border: 1px solid var(--border); background: var(--bg2); border-radius: 11px; padding: 10px 12px;
		transition: border-color .12s, transform .12s, box-shadow .12s; }
	.side-comm:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.4); }
	.side-comm-logo { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 9px; background: #0a0c12 center/cover no-repeat;
		border: 1px solid var(--border); }
	.side-comm-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
	.side-comm-name { font-weight: 800; font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 5px;
		white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
	.side-comm-sub { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
	.side-comm-go { flex: 0 0 auto; color: var(--muted); font-size: 20px; font-weight: 700; }
	.side-comm:hover .side-comm-go { color: var(--accent); }

	/* Review sort toolbar */
	.rev-sortbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
	.rev-sortbar .rev-count { font-size: 13px; color: var(--muted2); font-weight: 600; }
	.rev-sortbar .rev-sort { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted2); }
	.rev-sortbar .rev-sort select { background: var(--bg2); border: 1px solid var(--border); color: var(--text);
		font: inherit; font-size: 13px; padding: 6px 10px; border-radius: 8px; cursor: pointer; }
	.rev-sortbar .rev-sort select:hover { border-color: var(--accent); }

	/* Steam-style reviews (steamreview.png) — author column + body, no thumbs, no posting */
	.sreview { display: flex; background: var(--bg2); border: 1px solid var(--border); border-radius: 10px;
		overflow: hidden; margin-bottom: 12px; }
	.sreview-author { flex: 0 0 168px; display: flex; flex-direction: column; align-items: center; text-align: center;
		gap: 7px; padding: 18px 14px; background: rgba(0,0,0,.18); border-right: 1px solid var(--border); }
	.sreview-av { width: 46px; height: 46px; border-radius: 4px; background: #0a0c12; object-fit: cover; }
	.sreview-name { font-weight: 700; font-size: 14px; word-break: break-word; line-height: 1.25; }
	.sreview-sub { font-size: 11.5px; color: var(--muted); }
	.sreview-body { flex: 1; min-width: 0; padding: 16px 18px; }
	.sreview-posted { font-size: 11px; color: var(--muted2); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
	.sreview-text { font-size: 14px; color: #c5c9d2; line-height: 1.55; white-space: pre-wrap; word-break: break-word; }
	.sreview-body.clamp .sreview-text { max-height: 168px; overflow: hidden;
		-webkit-mask-image: linear-gradient(#000 70%, transparent); mask-image: linear-gradient(#000 70%, transparent); }
	.sreview-body.exp .sreview-text { max-height: none; -webkit-mask-image: none; mask-image: none; }
	.sreview-more { margin-top: 12px; background: var(--card); border: 1px solid var(--border); color: var(--text);
		font-weight: 700; font-size: 12.5px; padding: 7px 16px; border-radius: 7px; cursor: pointer; }
	.sreview-more:hover { background: var(--card-hover); }
	@media (max-width: 640px) { .sreview { flex-direction: column; }
		.sreview-author { flex: none; flex-direction: row; justify-content: flex-start; text-align: left;
			border-right: none; border-bottom: 1px solid var(--border); } }

	/* Reviews */
	.review { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
	.review img { width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto; }
	.review .rname { font-weight: 650; font-size: 14px; }
	.review .rmeta { font-size: 12px; color: var(--muted2); margin: 2px 0 6px; }
	.review .rtext { font-size: 14px; color: #c5c9d2; line-height: 1.5; word-break: break-word; }
	.more { display: block; margin: 18px auto 0; background: var(--card); border: 1px solid var(--border); color: var(--text);
		padding: 10px 22px; border-radius: 9px; cursor: pointer; font-size: 14px; }
	.more:hover { background: var(--card-hover); }

	/* Server-list modal + lightbox */
	.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
		display: none; align-items: center; justify-content: center; z-index: 50; padding: 24px; }
	.overlay.open { display: flex; }
	.modal { background: var(--card); border: 1px solid var(--border); border-radius: 14px;
		width: 100%; max-width: 740px; max-height: 82vh; display: flex; flex-direction: column; overflow: hidden; }
	.modal-head { padding: 18px 22px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
	.modal-head .mt { font-size: 17px; font-weight: 700; }
	.modal-head .ms { font-size: 12px; color: var(--muted); margin-top: 2px; }
	.modal-head .x { margin-left: auto; cursor: pointer; color: var(--muted); font-size: 22px; line-height: 1;
		background: none; border: none; padding: 4px 8px; border-radius: 6px; }
	.modal-head .x:hover { color: var(--text); background: var(--card-hover); }
	.srv-list { overflow-y: auto; padding: 8px; }
	.srv { display: flex; align-items: center; gap: 14px; padding: 11px 14px; border-radius: 9px; }
	.srv:hover { background: var(--card-hover); }
	.srv .sn { font-size: 14px; font-weight: 600; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
	.srv .sm { font-size: 12px; color: var(--muted); width: 110px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
	.srv .sp { font-size: 13px; color: var(--muted); width: 70px; text-align: right; font-variant-numeric: tabular-nums; }
	.srv .sp b { color: var(--text); }
	.srv .full { color: var(--down); }
	.join { text-decoration: none; background: var(--accent); color: var(--ink); font-weight: 700; font-size: 13px; padding: 7px 16px; border-radius: 7px; }
	.join:hover { background: var(--accent-hover); }
	.join.disabled { background: var(--border); color: var(--muted); pointer-events: none; }
	.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); display: none; align-items: center; justify-content: center;
		z-index: 60; cursor: zoom-out; padding: 30px; }
	.lightbox.open { display: flex; }
	.lightbox img { max-width: 95vw; max-height: 92vh; border-radius: 8px; }

	/* Review system — s&box style */
	:root {
		--rec: #2dd4a7; --rec-bg: rgba(45,212,167,.12);
		--prom: #f5b942; --prom-bg: rgba(245,185,66,.12);
		--need: #f2555a; --need-bg: rgba(242,85,90,.10);
		--rev-bg: #121317; --rev-card: #171a20;
	}
	/* Summary header (the breakdown card) */
	.rev-summary { background: var(--rev-bg); border: 1px solid #1d2236; border-radius: 18px;
		padding: 26px 28px; margin: 10px 0 22px; }
	.rev-sum-top { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
	.rev-emoji { font-size: 64px; line-height: 1; flex: 0 0 auto; }
	.rev-mood { flex: 0 0 auto; min-width: 180px; }
	.rev-mood .mname { font-size: 36px; font-weight: 800; letter-spacing: -.5px; line-height: 1; }
	.rev-mood .mname.rec  { color: var(--rec); }
	.rev-mood .mname.prom { color: var(--prom); }
	.rev-mood .mname.need { color: var(--need); }
	.rev-mood .mname.none { color: var(--muted); }
	.rev-mood .mcount { color: var(--muted); font-size: 14px; margin-top: 6px; }
	.rev-bar-wrap { flex: 1 1 320px; min-width: 240px; }
	.rev-bar { display: flex; width: 100%; height: 14px; border-radius: 8px; overflow: hidden; background: #1a2032; }
	.rev-bar > div { height: 100%; transition: width .25s ease; }
	.rev-bar .br { background: var(--rec); }
	.rev-bar .bp { background: var(--prom); }
	.rev-bar .bn { background: var(--need); }
	.rev-bar-labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: 13px; font-weight: 700; gap: 8px; }
	.rev-bar-labels .lbl { display: flex; flex-direction: column; gap: 2px; }
	.rev-bar-labels .lbl.r .pct { color: var(--rec); } .rev-bar-labels .lbl.r .nm { color: var(--rec); }
	.rev-bar-labels .lbl.p .pct { color: var(--prom); } .rev-bar-labels .lbl.p .nm { color: var(--prom); }
	.rev-bar-labels .lbl.n .pct { color: var(--need); } .rev-bar-labels .lbl.n .nm { color: var(--need); }
	.rev-bar-labels .nm { font-size: 12px; font-weight: 600; opacity: .85; }
	.rev-bar-labels .lbl.p { text-align: center; }
	.rev-bar-labels .lbl.n { text-align: right; }

	/* Tally chips row */
	.rev-tally { background: var(--rev-bg); border: 1px solid #1d2236; border-radius: 18px;
		padding: 16px 22px; margin-bottom: 26px; }
	.rev-tally-row { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 14px; margin: 8px 0; }
	.rev-tally-row .lbl { color: var(--muted); font-size: 13px; font-weight: 600; }
	.rev-tally-row .chips { display: flex; flex-wrap: wrap; gap: 7px; }
	.tchip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 7px;
		border: 1px solid transparent; font-size: 12.5px; font-weight: 600; font-variant-numeric: tabular-nums; }
	.tchip .n { opacity: .75; font-weight: 700; }
	.tchip.verdict.rec  { background: var(--rec-bg);  border-color: rgba(34,197,94,.35);  color: var(--rec); }
	.tchip.verdict.prom { background: var(--prom-bg); border-color: rgba(245,185,66,.35); color: var(--prom); }
	.tchip.verdict.need { background: var(--need-bg); border-color: rgba(239,68,88,.30); color: var(--need); }
	.tchip.pos  { background: var(--rec-bg);  border-color: rgba(34,197,94,.25);  color: var(--rec); }
	.tchip.neg  { background: var(--need-bg); border-color: rgba(239,68,88,.25); color: var(--need); }
	.tchip.zero { opacity: .4; }

	/* "Add Review" toolbar */
	.rev-bar-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 24px 0 10px; }
	.rev-bar-top .crumb { color: var(--muted); font-size: 14px; }
	.rev-bar-top .crumb b { color: var(--text); font-weight: 700; }
	.rev-add { display: inline-flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--border);
		color: var(--text); font-weight: 700; font-size: 13px; padding: 9px 16px; border-radius: 9px; cursor: pointer; }
	.rev-add:hover { background: var(--card-hover); border-color: #2f3447; }

	/* Composer */
	.composer { background: var(--rev-bg); border: 1px solid #1d2236; border-radius: 18px;
		padding: 36px 44px 44px; margin: 10px 0 30px; }
	.comp-section { text-align: center; margin: 28px 0 14px; }
	.comp-section h3 { font-size: 26px; font-weight: 800; letter-spacing: -.3px; }
	.comp-section .sub { color: var(--muted); font-size: 14px; margin-top: 6px; }
	.verdict-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 8px; }
	.verdict-card { display: flex; align-items: center; justify-content: center; gap: 12px;
		padding: 22px 18px; border-radius: 12px; border: 1px solid #1d2236; background: var(--rev-card);
		color: var(--muted); font-weight: 700; font-size: 17px; cursor: pointer; transition: all .12s; }
	.verdict-card .em { font-size: 26px; }
	.verdict-card:hover { color: var(--text); border-color: #2a3149; }
	.verdict-card.sel { background: var(--accent); border-color: var(--accent); color: var(--ink); box-shadow: 0 0 0 1px var(--accent-soft); }
	.verdict-card.sel.rec  { background: var(--rec); border-color: var(--rec); color: var(--ink); box-shadow: 0 0 0 1px rgba(34,197,94,.35); }
	.verdict-card.sel.prom { background: var(--prom); border-color: var(--prom); color: #2a1a00; box-shadow: 0 0 0 1px rgba(245,185,66,.35); }
	.verdict-card.sel.need { background: var(--need); border-color: var(--need); color: #210608; box-shadow: 0 0 0 1px rgba(239,68,88,.35); }

	.tag-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 8px 0 12px; }
	@media (max-width: 760px) { .tag-cols { grid-template-columns: 1fr; } }
	.tag-col h4 { font-size: 22px; font-weight: 800; text-align: center; }
	.tag-col .sub { color: var(--muted); text-align: center; font-size: 13px; margin: 4px 0 14px; }
	.tag-pool { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
	.tpick { padding: 9px 16px; border-radius: 22px; border: 1px solid #20253a; background: var(--rev-card);
		color: var(--text); font-size: 13.5px; cursor: pointer; transition: all .1s; }
	.tpick:hover { border-color: #2a3149; }
	.tpick.sel.pos { background: var(--rec-bg); border-color: var(--rec); color: var(--rec); }
	.tpick.sel.neg { background: var(--need-bg); border-color: var(--need); color: var(--need); }

	.review-write { margin-top: 12px; }
	.review-write h4 { font-size: 22px; font-weight: 800; }
	.review-write .sub { color: var(--muted); font-size: 13px; margin: 4px 0 12px; }
	.review-write textarea { width: 100%; background: var(--rev-card); border: 1px solid #20253a; border-radius: 10px;
		color: var(--text); padding: 14px 16px; min-height: 120px; font-family: inherit; font-size: 14.5px; resize: vertical; outline: none; }
	.review-write textarea:focus { border-color: var(--accent); }
	.comp-foot { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 18px; }
	.comp-foot .count { margin-right: auto; font-size: 12px; color: var(--muted); }
	.wr-btn { background: var(--accent); color: var(--ink); font-weight: 700; font-size: 14px;
		border: none; padding: 11px 22px; border-radius: 9px; cursor: pointer; }
	.wr-btn:hover { background: var(--accent-hover); }
	.wr-btn:disabled { opacity: .6; cursor: default; }
	.wr-btn.ghost { background: var(--card); color: var(--text); border: 1px solid var(--border); }
	.wr-btn.ghost:hover { background: var(--card-hover); }
	.wr-btn.danger { background: transparent; color: var(--down); border: 1px solid var(--border); }
	.wr-btn.danger:hover { background: rgba(224,86,63,.08); }
	.wr-err { color: var(--down); font-size: 13px; margin-right: auto; }

	.review .badge-mine { display: inline-block; background: var(--accent); color: var(--ink); font-size: 10px;
		font-weight: 800; padding: 2px 7px; border-radius: 4px; margin-left: 6px; text-transform: uppercase; letter-spacing: .4px; vertical-align: middle; }
	.review .vote { font-weight: 800; font-size: 12px; }
	.review .vote.rec  { color: var(--rec); }
	.review .vote.prom { color: var(--prom); }
	.review .vote.need { color: var(--need); }
	.review .rtags { display: flex; flex-wrap: wrap; gap: 5px; margin: 6px 0; }
	.review .rtags .rtag { font-size: 11px; padding: 2px 8px; border-radius: 10px; }
	.review .rtags .rtag.pos { background: var(--rec-bg); color: var(--rec); }
	.review .rtags .rtag.neg { background: var(--need-bg); color: var(--need); }

	/* Login-required prompt (small variant of the existing overlay) */
	.modal.small { max-width: 420px; }
	.modal .mbody { padding: 22px; text-align: center; }
	.modal .mbody p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 8px 0 18px; }
	.modal .mbody .mtitle { font-size: 18px; font-weight: 800; }

	footer { padding: 22px 40px 44px; color: var(--muted); font-size: 12px; line-height: 1.6; border-top: 1px solid var(--border); }
	/* Persistent dock is fixed at the bottom (56px) — push the footer up on scrolling views so it isn't covered */
	body:not(.home-active) footer { margin-bottom: 56px; }
	.foot-tag { max-width: 720px; }
	.foot-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 14px 0 10px; }
	.foot-links a { color: var(--text); font-weight: 600; text-decoration: none; }
	.foot-links a:hover { color: var(--accent); text-decoration: underline; }
	.foot-fine { color: var(--muted2); font-size: 11.5px; }

