:root {
    --bg: #070a12;
    --bg-soft: #0b101b;
    --panel: #101827;
    --panel-bright: #162235;
    --line: #243149;
    --muted: #8491a8;
    --text: #edf3ff;
    --lime: #b8ff5c;
    --cyan: #6de3ff;
    --pink: #ff7abf;
    --shadow: 0 22px 60px rgba(0, 0, 0, .28);
    --radius: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body::before {
    position: fixed;
    z-index: -2;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 44px 44px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 68%);
    pointer-events: none;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 20; top: -60px; left: 16px; padding: 10px 14px; border-radius: 0 0 10px 10px; background: var(--lime); color: #081008; font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 0; }
.eyebrow { display: flex; align-items: center; gap: 9px; color: var(--lime); font: 700 11px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 22px; height: 2px; background: currentColor; box-shadow: 7px 0 0 currentColor; }

/* Header */
.site-header { position: sticky; z-index: 10; top: 0; border-bottom: 1px solid rgba(133, 157, 202, .13); background: rgba(7, 10, 18, .83); backdrop-filter: blur(20px); }
.header-inner { display: flex; align-items: center; min-height: 78px; gap: 34px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 11px; }
.brand-mark { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid var(--lime); border-radius: 11px; background: var(--lime); color: #111a0d; font: 900 11px/1 ui-monospace, monospace; letter-spacing: -.08em; box-shadow: 4px 4px 0 rgba(184,255,92,.18); transform: rotate(-4deg); }
.brand-copy { display: flex; flex-direction: column; gap: 1px; }
.brand-copy strong { font-size: 14px; letter-spacing: -.02em; }
.brand-copy small { color: var(--muted); font: 700 9px/1.2 ui-monospace, monospace; letter-spacing: .14em; }
.primary-nav { display: flex; align-items: center; align-self: stretch; gap: 22px; }
.nav-link { position: relative; display: grid; place-items: center; color: var(--muted); font-size: 14px; transition: color .2s; }
.nav-link::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--lime); content: ""; opacity: 0; transform: scaleX(0); transition: transform .2s, opacity .2s; }
.nav-link:hover, .nav-link.is-active { color: var(--text); }
.nav-link.is-active::after { opacity: 1; transform: scaleX(1); }
.site-search { position: relative; display: flex; align-items: center; width: min(245px, 25vw); margin-left: auto; border: 1px solid var(--line); border-radius: 11px; background: var(--bg-soft); transition: border-color .2s, box-shadow .2s; }
.site-search:focus-within { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(109,227,255,.1); }
.search-icon { display: inline-block; flex: 0 0 auto; width: 14px; height: 14px; margin: 0 10px 0 13px; border: 1.5px solid currentColor; border-radius: 50%; color: var(--muted); }
.search-icon::after { display: block; width: 6px; height: 1.5px; margin: 11px 0 0 10px; background: currentColor; content: ""; transform: rotate(45deg); transform-origin: left center; }
.site-search input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 13px; }
.site-search input::placeholder { color: #59667c; }
.site-search button { border: 0; border-left: 1px solid var(--line); border-radius: 0 10px 10px 0; padding: 10px 13px; background: transparent; color: var(--lime); font-size: 12px; font-weight: 700; }

/* Shared controls */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 46px; padding: 0 19px; border: 1px solid transparent; border-radius: 10px; font-size: 13px; font-weight: 800; transition: transform .2s, border-color .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: #0d160b; box-shadow: 0 10px 25px rgba(184,255,92,.14); }
.button-primary:hover { background: #ccff85; }
.button-ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,.015); }
.button-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.button-small { min-height: 38px; padding: 0 14px; font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--lime); font-size: 13px; font-weight: 800; }
.text-link span { font-size: 18px; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

/* Home */
.hero { position: relative; min-height: 585px; overflow: hidden; border-bottom: 1px solid rgba(133,157,202,.13); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; min-height: 585px; padding: 72px 0 78px; }
.hero h1 { max-width: 600px; margin: 22px 0 20px; color: var(--text); font-size: clamp(52px, 7vw, 94px); line-height: .96; letter-spacing: -.075em; }
.hero h1 em, .about-hero h1 em { color: var(--lime); font-style: normal; }
.hero-lead { max-width: 480px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(109,227,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(109,227,255,.06) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 75%); opacity: .55; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { top: -260px; left: 30%; width: 560px; height: 560px; background: rgba(184,255,92,.08); }
.hero-glow-two { right: 8%; bottom: -240px; width: 500px; height: 500px; background: rgba(109,227,255,.09); }
.hero-console { width: min(100%, 440px); justify-self: end; border: 1px solid #33445f; border-radius: 14px; background: #0c131f; box-shadow: var(--shadow), 0 0 0 5px rgba(6,10,18,.72); transform: rotate(2deg); }
.console-topbar { display: flex; justify-content: space-between; align-items: center; padding: 13px 16px; border-bottom: 1px solid #26344b; color: #73819a; font: 10px ui-monospace, monospace; letter-spacing: .13em; }
.console-topbar i { display: inline-block; width: 7px; height: 7px; margin-left: 5px; border-radius: 50%; background: #33445f; }
.console-topbar i:first-child { background: var(--pink); }
.console-screen { position: relative; min-height: 275px; padding: 29px 30px; overflow: hidden; background: radial-gradient(circle at 80% 20%, rgba(184,255,92,.12), transparent 35%), #101b1b; color: #a6e7b1; font: 13px/1.9 ui-monospace, SFMono-Regular, Menlo, monospace; }
.console-screen p { position: relative; z-index: 1; margin: 0 0 25px; }.console-screen p span { color: var(--lime); }
.console-screen dl { position: relative; z-index: 1; margin: 0; }.console-screen dl div { display: flex; justify-content: space-between; max-width: 285px; border-bottom: 1px dashed rgba(166,231,177,.2); padding: 7px 0; }.console-screen dt { color: #71977c; }.console-screen dd { margin: 0; color: var(--text); }.console-ready { margin-top: 30px !important; color: var(--lime); }.console-ready b { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }.cursor { animation: blink 1s steps(2) infinite; }
.scanlines { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,.08) 4px); pointer-events: none; }.console-caption { padding: 11px 16px; color: #62708a; font: 9px ui-monospace, monospace; letter-spacing: .14em; }
@keyframes blink { 50% { opacity: 0; } }
.marquee-band { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--lime); color: #10180d; }.marquee-band div { display: flex; justify-content: center; align-items: center; gap: 28px; min-width: max-content; padding: 11px 0; font: 800 11px ui-monospace, monospace; letter-spacing: .08em; text-transform: uppercase; }.marquee-band i { font-style: normal; opacity: .6; }
.section { padding-top: 92px; padding-bottom: 92px; }.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 31px; }.section-heading h2 { margin: 13px 0 0; font-size: clamp(28px, 4vw, 43px); line-height: 1; letter-spacing: -.06em; }
.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }.game-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); transition: transform .25s, border-color .25s, box-shadow .25s; }.game-card:hover { border-color: #49617f; box-shadow: var(--shadow); transform: translateY(-5px); }.game-card-cover { position: relative; display: block; aspect-ratio: 1.18; overflow: hidden; background: #171f2f; }.game-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s, filter .45s; }.game-card:hover .game-card-cover img { filter: saturate(1.15); transform: scale(1.06); }.game-card-cover::after { position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(5,8,15,.65)); content: ""; }.play-badge { position: absolute; z-index: 1; right: 13px; bottom: 13px; display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(7,10,18,.62); backdrop-filter: blur(8px); }.play-badge i { width: 0; height: 0; margin-left: 2px; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 9px solid var(--lime); }.year-badge { position: absolute; z-index: 1; top: 12px; left: 12px; padding: 4px 8px; border: 1px solid rgba(255,255,255,.26); border-radius: 5px; background: rgba(7,10,18,.6); color: #fff; font: 10px ui-monospace, monospace; backdrop-filter: blur(7px); }.game-card-body { padding: 16px 17px 18px; }.game-card-body h3 { overflow: hidden; margin: 0; font-size: 15px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }.game-card-body h3 a:hover { color: var(--lime); }.game-card-body p { overflow: hidden; margin: 6px 0 0; color: var(--muted); font: 10px ui-monospace, monospace; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.library-cta { display: flex; justify-content: space-between; align-items: center; gap: 25px; margin-top: 45px; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; background: linear-gradient(100deg, rgba(184,255,92,.08), rgba(109,227,255,.03)); }.library-cta > div { display: flex; align-items: baseline; gap: 13px; }.library-cta-number { color: var(--lime); font: 800 31px ui-monospace, monospace; }.library-cta p { margin: 0; color: var(--muted); }

/* Inner pages and library */
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 0%, rgba(109,227,255,.1), transparent 38%), linear-gradient(120deg, rgba(184,255,92,.06), transparent 45%); }.page-hero::after { position: absolute; right: 7%; bottom: -90px; width: 250px; height: 250px; border: 1px solid rgba(109,227,255,.18); border-radius: 50%; content: ""; box-shadow: 0 0 0 30px rgba(109,227,255,.025), 0 0 0 60px rgba(109,227,255,.02); }.page-hero-compact .shell { padding-top: 62px; padding-bottom: 55px; }.page-hero h1 { margin: 14px 0 7px; font-size: clamp(39px, 6vw, 66px); line-height: .98; letter-spacing: -.07em; }.page-hero p { margin: 0; color: var(--muted); }.page-title-row { display: flex; justify-content: space-between; align-items: end; gap: 30px; }.count-pill { display: inline-flex; align-items: baseline; gap: 8px; border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; background: rgba(255,255,255,.025); white-space: nowrap; }.count-pill strong { color: var(--lime); font: 800 23px ui-monospace, monospace; }.count-pill span { color: var(--muted); font-size: 12px; }
.library-section { padding-top: 48px; }.library-tools { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 19px; }.library-tools p { margin: 0; color: var(--muted); font-size: 12px; }.library-filter { display: flex; align-items: center; width: min(550px, 100%); border: 1px solid var(--line); border-radius: 11px; background: var(--panel); color: var(--muted); }.library-filter:focus-within { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(109,227,255,.1); }.library-filter .search-icon { margin-left: 14px; }.library-filter input { min-width: 0; flex: 1; border: 0; outline: 0; padding: 13px 10px; background: transparent; color: var(--text); font-size: 14px; }.library-filter input::placeholder { color: #59667c; }.library-filter kbd { margin-right: 11px; border: 1px solid var(--line); border-radius: 4px; padding: 1px 6px; color: var(--muted); font: 11px ui-monospace, monospace; }.library-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }.library-item { display: flex; align-items: center; min-width: 0; gap: 16px; border: 1px solid transparent; border-radius: 11px; padding: 13px 15px; background: rgba(16,24,39,.72); transition: background .2s, border-color .2s, transform .2s; }.library-item:hover { border-color: var(--line); background: var(--panel-bright); transform: translateX(3px); }.library-index { flex: 0 0 39px; color: #59667c; font: 11px ui-monospace, monospace; }.library-name { display: flex; min-width: 0; flex: 1; flex-direction: column; }.library-name strong { overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }.library-name small { overflow: hidden; margin-top: 2px; color: var(--muted); font: 10px ui-monospace, monospace; text-overflow: ellipsis; white-space: nowrap; }.library-year { flex: 0 0 auto; color: #6f7e96; font: 11px ui-monospace, monospace; }.library-arrow { flex: 0 0 auto; color: var(--lime); font-size: 18px; opacity: .55; transition: opacity .2s, transform .2s; }.library-item:hover .library-arrow { opacity: 1; transform: translate(2px, -2px); }.empty-state { display: grid; justify-items: center; padding: 90px 20px; text-align: center; }.empty-state > span { color: var(--lime); font: 800 42px ui-monospace, monospace; }.empty-state h2, .empty-state h1 { margin: 13px 0 4px; font-size: 25px; letter-spacing: -.04em; }.empty-state p { margin: 0 0 23px; color: var(--muted); }.empty-state-large { min-height: 390px; }.error-state > span { color: var(--pink); font-size: 55px; }

/* About */
.about-hero { display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 80px; padding-top: 85px; padding-bottom: 84px; }.about-hero h1 { margin: 18px 0 0; font-size: clamp(43px, 6vw, 75px); line-height: .98; letter-spacing: -.075em; }.about-hero > p { max-width: 380px; margin: 0 0 4px; color: var(--muted); line-height: 1.85; }.about-layout { display: grid; gap: 72px; }.about-story { display: grid; grid-template-columns: 80px 1fr; max-width: 820px; gap: 25px; }.section-number { color: var(--lime); font: 11px ui-monospace, monospace; letter-spacing: .1em; }.about-story h2 { margin: -7px 0 14px; font-size: 29px; letter-spacing: -.05em; }.about-story p { max-width: 660px; margin: 0 0 14px; color: var(--muted); line-height: 1.8; }.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 820px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 25px 0; }.about-stats div { display: flex; flex-direction: column; gap: 3px; border-right: 1px solid var(--line); padding-left: 25px; }.about-stats div:first-child { padding-left: 0; }.about-stats div:last-child { border-right: 0; }.about-stats strong { color: var(--lime); font: 800 29px ui-monospace, monospace; }.about-stats span { color: var(--muted); font-size: 12px; }.credit-links { display: grid; max-width: 690px; margin-top: 23px; border-top: 1px solid var(--line); }.credit-links a { display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); padding: 15px 0; }.credit-links a:hover strong, .credit-links a:hover i { color: var(--lime); }.credit-links span { color: var(--cyan); font: 10px ui-monospace, monospace; }.credit-links strong { font-size: 14px; font-weight: 500; }.credit-links i { color: var(--muted); font-style: normal; }

/* Game page */
.game-page { padding-top: 31px; padding-bottom: 95px; }.breadcrumb { display: flex; gap: 10px; margin-bottom: 22px; color: var(--muted); font-size: 12px; }.breadcrumb a:hover { color: var(--lime); }.breadcrumb span:last-child { overflow: hidden; max-width: 300px; text-overflow: ellipsis; white-space: nowrap; }.game-heading { display: flex; justify-content: space-between; align-items: end; gap: 25px; margin-bottom: 27px; }.game-meta-line { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--muted); font: 10px ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; }.game-meta-line > span:not(.ready-label)::before { margin-right: 9px; color: #45546d; content: "•"; }.game-meta-line > span:first-child::before { display: none; }.ready-label { display: inline-flex; align-items: center; gap: 6px; color: var(--lime); }.ready-label i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 9px currentColor; }.game-heading h1 { margin: 11px 0 2px; font-size: clamp(34px, 5vw, 58px); line-height: 1; letter-spacing: -.065em; }.game-heading p { margin: 0; color: var(--muted); font: 12px ui-monospace, monospace; }.game-layout { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, .7fr); align-items: start; gap: 20px; }.game-stage-card { min-width: 0; overflow: hidden; border: 1px solid #2a3b57; border-radius: var(--radius); background: #080d16; box-shadow: var(--shadow); }.stage-topbar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 12px 16px; border-bottom: 1px solid #203049; color: #7f8da5; font: 10px ui-monospace, monospace; letter-spacing: .08em; }.stage-topbar > div { display: flex; gap: 5px; }.stage-topbar i { display: block; width: 7px; height: 7px; border-radius: 50%; background: #34465f; }.stage-topbar i:first-child { background: var(--pink); }.stage-live { justify-self: end; color: var(--lime); }.stage-live b { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: currentColor; }.screen-wrap { position: relative; display: flex; align-items: center; min-height: 300px; background: #000; }.emscripten { display: block; width: 100%; max-height: 78vh; margin: 0 auto; border: 0; background: #000; image-rendering: auto !important; }.screen-corners { position: absolute; inset: 16px; border: 1px solid rgba(184,255,92,.13); pointer-events: none; }.stage-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 18px; border-top: 1px solid #203049; padding: 14px 16px; }.stage-hint { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; }.stage-hint kbd, kbd { border: 1px solid #384963; border-bottom-width: 2px; border-radius: 4px; padding: 2px 6px; background: #182337; color: #b7c4d9; font: 10px ui-monospace, monospace; }.stage-actions { display: flex; gap: 8px; }.stage-button { border: 1px solid #30415c; border-radius: 8px; padding: 8px 10px; background: transparent; color: var(--muted); font-size: 11px; }.stage-button:hover { border-color: var(--cyan); color: var(--cyan); }.stage-button-primary { border-color: rgba(184,255,92,.4); color: var(--lime); }.game-sidebar { display: grid; gap: 13px; }.game-cover-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }.game-cover-panel img { width: 100%; max-height: 220px; object-fit: cover; object-position: center 30%; }.game-cover-panel div { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 13px; }.game-cover-panel span { color: var(--muted); font: 9px ui-monospace, monospace; letter-spacing: .1em; }.game-cover-panel strong { color: var(--lime); font: 11px ui-monospace, monospace; }.info-panel { border: 1px solid var(--line); border-radius: var(--radius); padding: 17px; background: var(--panel); }.info-panel-title { display: flex; align-items: center; gap: 9px; margin-bottom: 15px; }.info-panel-title span { color: var(--lime); font-size: 16px; }.info-panel-title h2 { margin: 0; font-size: 13px; }.keymap-list, .cheat-list { display: grid; gap: 11px; margin: 0; }.keymap-list div, .cheat-list div { display: grid; grid-template-columns: minmax(80px, auto) 1fr; gap: 9px; }.keymap-list dt, .cheat-list dt { margin: 0; }.keymap-list dd, .cheat-list dd { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }.info-details { padding: 0; }.info-details summary { display: flex; align-items: center; gap: 9px; padding: 17px; cursor: pointer; list-style: none; }.info-details summary::-webkit-details-marker { display: none; }.info-details summary > span { color: var(--pink); }.info-details summary i { margin-left: auto; color: var(--muted); font-style: normal; font-size: 19px; }.info-details[open] summary i { transform: rotate(45deg); }.cheat-list { padding: 0 17px 17px; }.cheat-list code { color: var(--pink); font: 10px ui-monospace, monospace; }.reference-links { display: grid; gap: 7px; }.reference-links a { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-bottom: 1px solid #202d42; padding: 7px 0; color: var(--muted); font-size: 11px; }.reference-links a:last-child { border-bottom: 0; }.reference-links a:hover { color: var(--cyan); }.reference-links i { font-style: normal; }.exit-fullscreen { position: fixed; z-index: 30; right: 20px; bottom: 20px; display: none; border: 1px solid var(--lime); border-radius: 8px; padding: 9px 12px; background: rgba(7,10,18,.86); color: var(--lime); font-size: 11px; backdrop-filter: blur(10px); }.exit-fullscreen.is-visible { display: inline-flex; align-items: center; gap: 8px; }.html-fullscreen { position: fixed !important; z-index: 25 !important; inset: 0 !important; width: 100% !important; height: 100% !important; max-width: none !important; max-height: none !important; object-fit: contain; background: #000; }

/* Footer and responsive */
.site-footer { border-top: 1px solid var(--line); background: #090e18; }.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-top: 27px; padding-bottom: 27px; }.footer-inner strong { font-size: 13px; }.footer-inner p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }.footer-status { display: flex; align-items: center; gap: 8px; color: var(--muted); font: 10px ui-monospace, monospace; }.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 9px var(--lime); }.footer-divider { color: #3c4c65; }
@media (max-width: 900px) { .header-inner { flex-wrap: wrap; gap: 0 25px; padding-top: 13px; padding-bottom: 13px; }.primary-nav { order: 3; width: 100%; height: 35px; gap: 23px; }.nav-link::after { bottom: -1px; }.site-search { width: min(245px, 42vw); }.hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 62px; padding-bottom: 65px; }.hero-console { justify-self: start; }.hero { min-height: auto; }.hero-inner { min-height: auto; }.game-grid { grid-template-columns: repeat(3, 1fr); }.game-layout { grid-template-columns: 1fr; }.game-sidebar { grid-template-columns: repeat(2, 1fr); }.game-cover-panel { grid-row: span 2; }.about-hero { grid-template-columns: 1fr; gap: 25px; padding-top: 60px; padding-bottom: 60px; }.about-hero > p { max-width: 570px; } }
@media (max-width: 620px) { .shell { width: min(100% - 30px, 520px); }.header-inner { gap: 0; }.brand-copy small { display: none; }.brand-mark { width: 35px; height: 35px; }.brand-copy strong { font-size: 13px; }.site-search { width: 100%; order: 4; margin-top: 12px; }.primary-nav { gap: 18px; }.hero h1 { font-size: clamp(49px, 15vw, 70px); }.hero-lead { font-size: 14px; }.hero-console { width: 100%; transform: none; }.console-screen { min-height: 250px; padding: 24px 20px; }.section { padding-top: 60px; padding-bottom: 60px; }.section-heading { align-items: start; flex-direction: column; gap: 17px; }.game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }.game-card { border-radius: 13px; }.game-card-body { padding: 12px 12px 14px; }.game-card-body h3 { font-size: 13px; }.game-card-body p { font-size: 9px; }.library-cta { align-items: flex-start; flex-direction: column; padding: 20px; }.library-list { grid-template-columns: 1fr; }.library-tools { align-items: stretch; flex-direction: column; gap: 11px; }.page-title-row { align-items: start; flex-direction: column; gap: 17px; }.page-hero-compact .shell { padding-top: 48px; padding-bottom: 44px; }.page-hero h1 { font-size: 44px; }.about-story { grid-template-columns: 35px 1fr; gap: 10px; }.about-story h2 { font-size: 25px; }.about-stats { gap: 8px; }.about-stats div { padding-left: 10px; }.about-stats strong { font-size: 22px; }.about-stats span { font-size: 10px; }.credit-links a { grid-template-columns: 1fr auto; gap: 3px; }.credit-links a span { grid-column: 1 / -1; }.game-page { padding-top: 23px; }.game-heading { align-items: start; flex-direction: column; }.game-heading h1 { font-size: 39px; }.game-layout { gap: 12px; }.stage-toolbar { align-items: stretch; flex-direction: column; }.stage-actions { display: grid; grid-template-columns: 1fr 1fr; }.stage-button { padding: 10px 6px; }.game-sidebar { grid-template-columns: 1fr; }.game-cover-panel { grid-row: auto; }.screen-wrap { min-height: 210px; }.footer-inner { align-items: start; flex-direction: column; gap: 15px; }.footer-status { font-size: 9px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }

/* Pagination and no-cover archive cards */
.generated-cover { position: relative; display: flex; flex-direction: column; justify-content: space-between; height: 100%; overflow: hidden; padding: 21px; background: radial-gradient(circle at 74% 20%, rgba(184,255,92,.33), transparent 25%), linear-gradient(135deg, #192943, #101623 63%, #2b1738); color: var(--text); }
.generated-cover::before { position: absolute; right: -26px; bottom: -50px; width: 155px; height: 155px; border: 1px solid rgba(109,227,255,.4); border-radius: 50%; content: ""; box-shadow: 0 0 0 18px rgba(109,227,255,.04), 0 0 0 38px rgba(109,227,255,.03); }
.generated-cover b { position: relative; z-index: 1; color: var(--lime); font: 900 clamp(56px, 7vw, 86px)/.9 ui-monospace, monospace; letter-spacing: -.14em; text-shadow: 4px 4px 0 rgba(184,255,92,.12); }
.generated-cover small { position: relative; z-index: 1; color: rgba(237,243,255,.6); font: 9px ui-monospace, monospace; letter-spacing: .1em; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 12px; margin: 46px 0 0; }
.pagination-button { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 9px; background: var(--panel); color: var(--lime); font-size: 18px; transition: border-color .2s, background .2s, transform .2s; }
.pagination-button:hover { border-color: var(--lime); background: var(--panel-bright); transform: translateY(-2px); }
.pagination-button.is-disabled { color: #40506a; cursor: default; opacity: .6; }
.pagination-current { color: var(--muted); font-size: 12px; }.pagination-current strong { color: var(--text); font: 800 18px ui-monospace, monospace; }
.pagination-jump { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 11px; }.pagination-jump input { width: 48px; border: 1px solid var(--line); border-radius: 7px; padding: 7px 5px; outline: none; background: var(--panel); color: var(--text); text-align: center; font: 12px ui-monospace, monospace; }.pagination-jump input:focus { border-color: var(--cyan); }
