/* ==========================================================================
   Cosmoclub — "cosmoclub_2" template (clone of cosmoclub.com)
   Dark cosmic-purple lobby: fixed left icon rail + top bar + content + footer.
   Tokens lifted from source design system (--core-colors-*):
     bg #200F39 / panels #271248 / brand #8641FF / light #C8AAFF
     accents: green #6EC500, yellow #EFC223, pink #D856E2, blue #2F86EB.
   ========================================================================== */

:root {
	--bg:          #1a0c2e;
	--bg-2:        #200F39;
	--panel:       #271248;
	--panel-2:     #2B154E;
	--panel-3:     #33205c;
	--panel-hi:    #3a2566;
	--border:      #3a2363;
	--border-2:    #4a2f7d;
	--text:        #ffffff;
	--text-muted:  #AAA7A8;
	--text-dim:    #8B898A;
	--brand:       #8641FF;
	--brand-2:     #6B34CC;
	--brand-lt:    #C8AAFF;
	--green:       #6EC500;
	--green-2:     #11A851;
	--yellow:      #EFC223;
	--pink:        #D856E2;
	--blue:        #2F86EB;
	--red:         #FF5555;
	--rail-w:      92px;
	--drawer-w:    288px;
	--header-h:    68px;
	--radius:      14px;
	--radius-sm:   10px;
	--radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: 'Inter', 'Roboto', -apple-system, 'Segoe UI', Arial, sans-serif;
	background: var(--bg-2);
	color: var(--text);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	background-image:
		radial-gradient(900px 500px at 80% -10%, rgba(134,65,255,.18), transparent 60%),
		radial-gradient(700px 500px at -10% 20%, rgba(216,86,226,.10), transparent 55%);
	background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0 0 .6em; line-height: 1.25; font-weight: 800; }
h1 { font-size: 30px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }
p { margin: 0 0 1em; }
button { font-family: inherit; }

/* ---- shell -------------------------------------------------------------- */
.wrap { min-height: 100vh; }

/* Fixed left icon rail */
.rail {
	position: fixed; left: 0; top: 0; bottom: 0; width: var(--rail-w);
	background: linear-gradient(180deg, var(--panel-2), var(--bg-2));
	border-right: 1px solid var(--border);
	display: flex; flex-direction: column; padding: 14px 8px; gap: 4px;
	z-index: 60; overflow-y: auto;
}
.rail::-webkit-scrollbar { width: 0; }
.rail__head { display: flex; align-items: center; justify-content: center; padding: 4px 0 12px; }
.rail__logo { display: flex; align-items: center; gap: 10px; }
.rail__logo-mark { width: 46px; height: 46px; }
.rail__logo-full { display: none; height: 38px; width: auto; }
.rail__close { display: none; width: 38px; height: 38px; border: 0; background: var(--panel-3); border-radius: var(--radius-sm); color: #fff; cursor: pointer; align-items: center; justify-content: center; }
.rail__nav { display: flex; flex-direction: column; gap: 4px; }
.rail-item {
	display: flex; flex-direction: column; align-items: center; gap: 5px;
	padding: 9px 4px; border-radius: var(--radius-sm); color: var(--text-muted);
	font-size: 11px; font-weight: 600; text-align: center; transition: .15s;
	border: 1px solid transparent;
}
.rail-item .ico { width: 22px; height: 22px; flex: 0 0 auto; }
.rail-item:hover { background: var(--panel-3); color: var(--text); }
.rail-item.is-active { background: linear-gradient(180deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 6px 16px rgba(134,65,255,.4); }
.rail__cta { display: none; }

/* Content column offset by rail */
.column { margin-left: var(--rail-w); display: flex; flex-direction: column; min-height: 100vh; }

/* Top bar */
.topbar {
	position: sticky; top: 0; z-index: 50; height: var(--header-h);
	display: flex; align-items: center; gap: 14px; padding: 0 22px;
	background: rgba(32,15,57,.86); backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
}
.burger { display: none; width: 42px; height: 42px; border: 0; background: var(--panel-3); border-radius: var(--radius-sm); color: #fff; cursor: pointer; flex-direction: column; gap: 4px; align-items: center; justify-content: center; transition: .15s; }
.burger:hover { background: var(--panel-hi); }
.burger span { width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.topbar__logo { display: none; }
.topbar__logo img { height: 32px; }
.search { flex: 1; max-width: 460px; display: flex; align-items: center; gap: 8px; background: var(--panel); border: 1px solid var(--border-2); border-radius: var(--radius-pill); padding: 0 16px; height: 42px; }
.search input { flex: 1; background: transparent; border: 0; outline: 0; color: #fff; font-size: 14px; min-width: 0; }
.search input::placeholder { color: var(--text-dim); }
.search .ico { width: 18px; height: 18px; color: var(--text-muted); flex: 0 0 auto; }
.topbar__spacer { flex: 1; }
.topbar__actions { display: flex; align-items: center; gap: 10px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 42px; padding: 0 20px; border-radius: var(--radius-pill); font-weight: 700; font-size: 14px; cursor: pointer; border: 0; transition: .15s; white-space: nowrap; }
.btn .ico { width: 16px; height: 16px; }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 8px 20px rgba(134,65,255,.35); }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-accent { background: linear-gradient(135deg, var(--green), var(--green-2)); color: #06210f; font-weight: 800; }
.btn-accent:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-ghost { background: var(--panel-3); color: #fff; border: 1px solid var(--border-2); }
.btn-ghost:hover { background: var(--panel-hi); }
.btn-outline { background: transparent; color: var(--brand-lt); border: 2px solid var(--brand); }
.btn-outline:hover { background: rgba(134,65,255,.12); }
.btn-lg { height: 50px; padding: 0 30px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* Main */
.site-main { flex: 1; padding: 22px; }
.container { max-width: 1320px; margin: 0 auto; }

/* ---- hero slider -------------------------------------------------------- */
.hero { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 22px; aspect-ratio: 1100 / 360; background: var(--panel-2); }
.hero__track { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; pointer-events: none; }
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__slide::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(20,9,35,.94) 0%, rgba(20,9,35,.6) 38%, rgba(20,9,35,0) 66%); }
.hero__inner { position: relative; z-index: 2; max-width: 540px; height: 100%; padding: 0 0 0 44px; display: flex; flex-direction: column; justify-content: center; }
.hero__title { font-size: 36px; font-weight: 900; margin: 0 0 8px; text-shadow: 0 3px 18px rgba(0,0,0,.5); }
.hero__text { color: rgba(255,255,255,.92); font-size: 15px; margin: 0 0 20px; max-width: 420px; }
.hero__inner .btn { align-self: flex-start; }
.hero__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(0,0,0,.4); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .15s; }
.hero__nav:hover { background: var(--brand); }
.hero__prev { left: 14px; }
.hero__next { right: 14px; }
.hero__dots { position: absolute; z-index: 3; bottom: 16px; left: 44px; display: flex; gap: 7px; }
.hero__dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; transition: .2s; }
.hero__dots span.is-active { width: 22px; border-radius: 5px; background: #fff; }

/* ---- category pills ----------------------------------------------------- */
.cats { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 16px; scrollbar-width: none; }
.cats::-webkit-scrollbar { height: 0; }
.cat-pill { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; height: 40px; padding: 0 18px; border-radius: var(--radius-pill); background: var(--panel); border: 1px solid var(--border); color: var(--text-muted); font-weight: 700; font-size: 13px; transition: .15s; }
.cat-pill .ico { width: 16px; height: 16px; }
.cat-pill:hover { color: #fff; background: var(--panel-3); }
.cat-pill.is-active { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; border-color: transparent; }

/* ---- section ------------------------------------------------------------ */
.section { margin-bottom: 30px; }
.section__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 12px; }
.section__title { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; }
.section__title .ico { width: 22px; height: 22px; color: var(--yellow); }
.section__more { color: var(--brand-lt); font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.section__more .ico { width: 14px; height: 14px; }
.section__more:hover { color: #fff; }

/* ---- game grid ---------------------------------------------------------- */
.game-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.game {
	position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1 / 1;
	background: var(--panel); border: 1px solid var(--border);
	display: block; transition: transform .15s, box-shadow .15s;
}
.game:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,.5); }
.game__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.game__rank { position: absolute; top: 7px; left: 7px; z-index: 3; min-width: 24px; height: 24px; padding: 0 5px; border-radius: 7px; background: rgba(0,0,0,.6); color: var(--yellow); font-weight: 900; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.game__ov { position: absolute; inset: 0; z-index: 2; background: linear-gradient(0deg, rgba(13,6,24,.92), rgba(13,6,24,.1) 60%); opacity: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; transition: opacity .18s; }
.game:hover .game__ov { opacity: 1; }
.game__ov .play { width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: #06210f; display: flex; align-items: center; justify-content: center; }
.game__ov-name { font-size: 12px; font-weight: 700; color: #fff; text-align: center; padding: 0 8px; }
.game__ov-name small { display: block; color: var(--brand-lt); font-weight: 600; font-size: 11px; margin-top: 2px; }

/* ---- providers ---------------------------------------------------------- */
.prov-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.prov { display: flex; align-items: center; justify-content: center; height: 64px; border-radius: var(--radius-sm); background: var(--panel); border: 1px solid var(--border); color: var(--brand-lt); font-weight: 800; letter-spacing: .4px; transition: .15s; text-align: center; padding: 0 8px; }
.prov:hover { background: var(--panel-3); color: #fff; transform: translateY(-2px); }

/* ---- promo banners ------------------------------------------------------ */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.promo { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 150px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; border: 1px solid var(--border); }
.promo--a { background: linear-gradient(135deg, #6b34cc, #b14ad6); }
.promo--b { background: linear-gradient(135deg, #2F7DC5, #28A7E7); }
.promo--c { background: linear-gradient(135deg, #11A851, #6EC500); }
.promo h3 { font-size: 18px; font-weight: 900; margin-bottom: 4px; }
.promo p { font-size: 13px; color: rgba(255,255,255,.92); margin-bottom: 14px; }
.promo .btn { align-self: flex-start; height: 36px; padding: 0 16px; }

/* ---- content / prose (rich text styles) -------------------------------- */
.content--home { margin-top: 6px; }
.prose, .article { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 30px; }
.article h1, .prose h1, .page-title { font-size: 28px; font-weight: 900; margin: 0 0 18px; line-height: 1.2; }
.prose h2, .article h2 { font-size: 22px; font-weight: 800; margin: 28px 0 12px; padding-left: 12px; border-left: 4px solid var(--brand); }
.prose h3, .article h3 { font-size: 18px; font-weight: 800; margin: 22px 0 10px; color: var(--brand-lt); }
.prose h4, .article h4 { font-size: 16px; font-weight: 700; margin: 18px 0 8px; }
.prose p, .article p { margin: 0 0 14px; color: #ece8f5; }
.prose a, .article a { color: var(--brand-lt); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover, .article a:hover { color: #fff; }
.prose strong, .article strong { color: #fff; font-weight: 700; }
.prose ul, .prose ol, .article ul, .article ol { padding-left: 22px; margin: 0 0 16px; }
.prose li, .article li { margin: 6px 0; }
.prose ul li::marker { color: var(--brand-lt); }
.prose blockquote, .article blockquote { margin: 0 0 16px; padding: 12px 18px; background: var(--panel-3); border-left: 4px solid var(--brand); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--text-muted); }
.prose code, .article code { background: var(--panel-3); padding: 2px 7px; border-radius: 6px; font-size: 13px; font-family: ui-monospace, Menlo, Consolas, monospace; }
.prose pre, .article pre { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; overflow-x: auto; margin: 0 0 16px; }
.prose pre code, .article pre code { background: none; padding: 0; }
.prose hr, .article hr { border: 0; border-top: 1px solid var(--border); margin: 26px 0; }
.prose img, .article img { border-radius: var(--radius-sm); margin: 12px 0; height: auto;}
.prose > :first-child, .article-content > :first-child { margin-top: 0; }
.prose > :last-child, .article-content > :last-child { margin-bottom: 0; }

/* Tables: horizontal scroll on small screens WITHOUT shrinking the table. */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.table-scroll table { width: 100%; min-width: 540px; border-collapse: collapse; margin: 0; font-size: 14px; }
.table-scroll th, .table-scroll td { border: 1px solid var(--border-2); padding: 10px 13px; text-align: left; vertical-align: top; }
.table-scroll th { background: var(--panel-3); font-weight: 700; color: #fff; }
.table-scroll tr:nth-child(even) td { background: rgba(255,255,255,.02); }
/* Fallback for any un-wrapped table in CMS content. */
.prose table, .article table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; border-collapse: collapse; margin: 0 0 18px; font-size: 14px; }
.prose table th, .prose table td, .article table th, .article table td { border: 1px solid var(--border-2); padding: 10px 13px; text-align: left; }
.prose table th, .article table th { background: var(--panel-3); width: 1%;}

/* ---- toplist ------------------------------------------------------------ */
.toplist { display: flex; flex-direction: column; gap: 12px; }
.toprow { display: grid; grid-template-columns: 48px 1.4fr .8fr 1.2fr auto; align-items: center; gap: 16px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; }
.toprow.featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand) inset, 0 10px 26px rgba(134,65,255,.2); }
.toprow-rank { font-size: 22px; font-weight: 900; color: var(--brand-lt); }
.toprow-name { font-size: 17px; font-weight: 800; }
.toprow-pill { display: inline-block; margin-top: 4px; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-pill); background: rgba(239,194,35,.16); color: var(--yellow); }
.toprow-rating { display: flex; align-items: baseline; gap: 3px; }
.toprow-rating .num { font-size: 24px; font-weight: 900; color: var(--green); }
.toprow-rating .den { color: var(--text-dim); font-size: 13px; }
.toprow-bonus { color: var(--text-muted); font-size: 14px; }

/* ---- review ------------------------------------------------------------- */
.review-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0; }
.pc { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.pc h4 { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.pc.pros h4 { color: var(--green); }
.pc.cons h4 { color: var(--red); }
.pc ul { margin: 0; padding-left: 18px; }
.pc li { margin: 6px 0; }
.review-card { position: sticky; top: 88px; background: var(--panel-2); border: 1px solid var(--border-2); border-radius: var(--radius); overflow: hidden; }
.review-card-head { padding: 22px; text-align: center; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.rc-logo { width: 56px; height: 56px; margin: 0 auto 10px; border-radius: 14px; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; }
.review-rating { margin-top: 8px; }
.review-rating .num { font-size: 30px; font-weight: 900; }
.review-rating .den { opacity: .8; }
.review-meta { padding: 8px 20px; }
.review-meta-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.review-meta-row:last-child { border-bottom: 0; }
.review-meta-row span:first-child { color: var(--text-muted); }
.review-card-cta { padding: 18px 20px 22px; }

/* ---- landing ------------------------------------------------------------ */
.landing-hero { text-align: center; padding: 50px 20px; border-radius: var(--radius); background: linear-gradient(135deg, #3a1c6e, #6b34cc); margin-bottom: 26px; }
.landing-hero h1 { font-size: 40px; font-weight: 900; }
.landing-hero p { font-size: 17px; color: rgba(255,255,255,.92); max-width: 620px; margin: 0 auto 24px; }
.landing-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.landing-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 26px; }
.lfeat { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; text-align: center; }
.lfeat .ico { width: 38px; height: 38px; color: var(--brand-lt); margin: 0 auto 12px; }

/* ---- footer ------------------------------------------------------------- */
.footer { background: var(--bg); border-top: 1px solid var(--border); margin-top: 10px; }
.footer-ins { max-width: 1320px; margin: 0 auto; padding: 36px 22px 24px; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; }
.footer-about img { height: 34px; margin-bottom: 12px; }
.footer-about p { color: var(--text-dim); font-size: 13px; }
.footer-col-title { font-weight: 800; margin-bottom: 12px; }
.footer-col-menu { list-style: none; margin: 0; padding: 0; }
.footer-col-menu li { margin: 8px 0; }
.footer-col-menu a { color: var(--text-muted); font-size: 14px; }
.footer-col-menu a:hover { color: #fff; }
.foot-socials { display: flex; gap: 10px; margin-top: 4px; }
.foot-socials a { width: 38px; height: 38px; border-radius: 10px; background: var(--panel-3); display: flex; align-items: center; justify-content: center; color: var(--brand-lt); transition: .15s; }
.foot-socials a:hover { background: var(--brand); color: #fff; }
.footer-bottom { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 13px; }
.footer-bottom p { margin: 0; }
.age-badge { background: var(--red); color: #fff; font-weight: 900; border-radius: 8px; padding: 3px 9px; }
.footer-orgs { margin-left: auto; display: flex; gap: 14px; color: var(--text-muted); }

/* ---- mobile drawer / overlay ------------------------------------------- */
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 55; opacity: 0; transition: opacity .25s; }
body.menu-open { position: fixed; width: 100%; overflow: hidden; }
body.menu-open .overlay { display: block; opacity: 1; }

/* ---- responsive --------------------------------------------------------- */
@media (max-width: 1200px) {
	.game-grid { grid-template-columns: repeat(5, 1fr); }
	.prov-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
	/* Rail becomes a slide-in drawer with the full logo, labels & CTAs. */
	.rail {
		width: var(--drawer-w); padding: 16px; gap: 6px;
		transform: translateX(-100%); transition: transform .28s ease;
		box-shadow: 0 0 50px rgba(0,0,0,.7);
	}
	body.menu-open .rail { transform: translateX(0); }
	.rail__head { justify-content: space-between; padding: 2px 4px 16px; margin-bottom: 4px; border-bottom: 1px solid var(--border); }
	.rail__logo-mark { display: none; }
	.rail__logo-full { display: block; }
	.rail__close { display: flex; }
	.rail__nav { gap: 4px; }
	.rail-item { flex-direction: row; justify-content: flex-start; gap: 14px; padding: 13px 14px; font-size: 15px; text-align: left; }
	.rail-item .ico { width: 24px; height: 24px; }
	.rail__cta { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
	.column { margin-left: 0; }
	.burger { display: flex; }
	.topbar__logo { display: block; }
	.topbar__actions .btn-login { display: none; }
	.game-grid { grid-template-columns: repeat(4, 1fr); }
	.promo-grid { grid-template-columns: 1fr; }
	.review-wrap { grid-template-columns: 1fr; }
	.review-card { position: static; }
	.footer-cols { grid-template-columns: 1fr 1fr; }
	.landing-feats { grid-template-columns: 1fr; }
	.hero { aspect-ratio: auto; min-height: 260px; }
	.hero__inner { padding: 0 20px; max-width: 100%; }
	.hero__title { font-size: 26px; }
	.hero__slide::after { background: linear-gradient(0deg, rgba(20,9,35,.95) 8%, rgba(20,9,35,.55) 50%, rgba(20,9,35,.2) 100%); }
}

@media (max-width: 700px) {
	.search { display: none; } 
	.prov-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
	.site-main { padding: 14px; }
	.game-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
	.prov-grid { grid-template-columns: repeat(2, 1fr); }
	.prose, .article { padding: 20px 18px; }
	.topbar { padding: 0 14px; gap: 10px; }
	.topbar__actions .btn { height: 38px; padding: 0 14px; font-size: 13px; }
	.footer-cols { grid-template-columns: 1fr; }
	.footer-orgs { margin-left: 0; }
	.hero__nav { display: none; }
	.hero__dots { left: 20px; }
	.landing-hero h1 { font-size: 30px; }
}
@media (max-width: 400px) {
	.game-grid { grid-template-columns: repeat(2, 1fr); }
}
.prose h2[id],
.article h2[id],
.prose h3[id],
.article h3[id] {
	scroll-margin-top: 90px;
}