/* =============================================================
   PLATFORM — Single-page cyberpunk game theme (gp_platform).
   Engine page (gp_engine) loads BOTH platform.css and engine.css.
   ============================================================= */


:root {
    --gxpl-bg:        #fbfbfc;
    --gxpl-bg-2:      #f0f0f2;
    --gxpl-bg-card:   #f2f2f4;
    --gxpl-bg-deep:   #ebebed;
    --gxpl-accent:    #5b6573;
    --gxpl-accent-2:  #7b8593;
    --gxpl-hot:       #5b6573;
    --gxpl-hot-2:     #7b8593;
    --gxpl-border:    #d9dadd;
    --gxpl-border-2:  #e3e4e7;
    --gxpl-text:      #1f2329;
    --gxpl-text-dim:  #5c636d;
    --gxpl-text-mute: #8a9099;
}

/* ─── WP theme page chrome bypass ────────────────────────────── */
body:has(#geekui-root-platform) .entry-header,
body:has(#geekui-root-platform) .page-header,
body:has(#geekui-root-platform) header.entry-header,
body:has(#geekui-root-platform) .wp-block-post-title,
body:has(#geekui-root-platform) .page-title-wrapper,
body:has(#geekui-root-platform) .page-banner,
body:has(#geekui-root-platform) .post-banner,
body:has(#geekui-root-platform) header.banner,
body:has(#geekui-root-platform) .banner,
body:has(#geekui-root-platform) .ast-page-title-bar,
body:has(#geekui-root-platform) .ast-title-bar,
body:has(#geekui-root-platform) .ast-archive-description,
body:has(#geekui-root-platform) .generate-page-header,
body:has(#geekui-root-platform) .elementor-page-title,
body:has(#geekui-root-platform) .elementor-widget-heading,
body:has(#geekui-root-platform) .kadence-page-title,
body:has(#geekui-root-platform) .kadence-page-header,
body:has(#geekui-root-platform) .fl-page-title-bar,
body:has(#geekui-root-platform) .bb-page-title,
body:has(#geekui-root-platform) .breadcrumb-section,
body:has(#geekui-root-platform) [class*="page-title"]:not(li):not(a),
body:has(#geekui-root-platform) [class*="page-header"]:not(li):not(a),
body:has(#geekui-root-platform) [class*="entry-header"]:not(li):not(a),
body:has(#geekui-root-platform) [class*="banner"]:not(.site-header):not(nav):not(#masthead):not(li):not(a),
body:has(#geekui-root-platform) [class*="title-bar"]:not(li):not(a),
body:has(#geekui-root-platform) [class*="title-section"]:not(li):not(a),
body:has(#geekui-root-platform) main header,
body:has(#geekui-root-platform) main > header,
body:has(#geekui-root-platform) main > section:first-child:not(article),
body:has(#geekui-root-platform) main > div:first-child:not(article):not(.entry-content) {
    background: var(--gxpl-bg) !important;
    color: var(--gxpl-text) !important;
    border-color: var(--gxpl-border-2) !important;
    box-shadow: none !important;
}
body:has(#geekui-root-platform) .entry-title,
body:has(#geekui-root-platform) .page-title,
body:has(#geekui-root-platform) .wp-block-post-title,
body:has(#geekui-root-platform) h1.entry-title,
body:has(#geekui-root-platform) .breadcrumbs,
body:has(#geekui-root-platform) .breadcrumb {
    color: var(--gxpl-text) !important;
}

/* ─── Canvas ─────────────────────────────────────────────────── */
#geekui-root-platform {
    color: var(--gxpl-text);
    font-family: 'Inter', system-ui, sans-serif;
    padding: 24px 24px 60px;
    background:
        radial-gradient(ellipse 55% 38% at 6% 96%,  color-mix(in srgb, var(--gxpl-accent) 10%, transparent), transparent 60%),
        radial-gradient(ellipse 55% 38% at 94% 96%, color-mix(in srgb, var(--gxpl-hot) 10%, transparent), transparent 60%),
        var(--gxpl-bg);
    min-height: 60vh;
}
.geekui-platform-container { /* legacy wrapper — pass-through */ }

/* ═══════════════════════════════════════════════════════════════
   PAGE + HUD BRACKETS
   ═══════════════════════════════════════════════════════════════ */
.gxpl-page {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.gxpl-bracket {
    position: absolute;
    width: 22px;
    height: 22px;
    z-index: 5;
    pointer-events: none;
}
.gxpl-bracket--tl {
    top: 0; left: 0;
    border-top: 2px solid var(--gxpl-accent-2);
    border-left: 2px solid var(--gxpl-accent-2);
    border-radius: 10px 0 0 0;
    filter: drop-shadow(0 0 5px var(--gxpl-accent));
}
.gxpl-bracket--br {
    bottom: 0; right: 0;
    border-bottom: 2px solid var(--gxpl-hot);
    border-right: 2px solid var(--gxpl-hot);
    border-radius: 0 0 10px 0;
    filter: drop-shadow(0 0 5px var(--gxpl-hot));
}

/* ═══════════════════════════════════════════════════════════════
   HERO — logo + name + meta + websites
   ═══════════════════════════════════════════════════════════════ */
.gxpl-hero {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
    background: linear-gradient(180deg, var(--gxpl-bg-card) 0%, var(--gxpl-bg-2) 100%);
    border: 1.5px solid var(--gxpl-accent);
    border-radius: 10px;
    padding: 24px;
    box-shadow:
        0 0 18px color-mix(in srgb, var(--gxpl-accent) 18%, transparent),
        0 6px 22px rgba(0, 0, 0, 0.55);
    margin-bottom: 24px;
    overflow: hidden;
}
.gxpl-hero__logo {
    position: relative;
    width: 220px;
    aspect-ratio: 1 / 1;
    background: var(--gxpl-bg-deep);
    border: 1px solid var(--gxpl-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.55);
    justify-self: center;
}
.gxpl-hero__logo-bg {
    position: absolute;
    inset: 14px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 12px color-mix(in srgb, var(--gxpl-accent) 20%, transparent));
}
.gxpl-hero__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}
.gxpl-hero__tag {
    display: inline-block;
    align-self: flex-start;
    padding: 3px 10px;
    border: 1px solid var(--gxpl-accent);
    border-radius: 3px;
    color: var(--gxpl-accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: color-mix(in srgb, var(--gxpl-accent) 6%, transparent);
    box-shadow: inset 0 0 6px color-mix(in srgb, var(--gxpl-accent) 10%, transparent);
}
.gxpl-hero__title {
    margin: 0 !important;
    font-family: 'Orbitron', system-ui, sans-serif !important;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: var(--gxpl-text) !important;
    text-transform: uppercase;
    text-shadow:
        0 0 14px color-mix(in srgb, var(--gxpl-accent) 40%, transparent),
        0 0 28px color-mix(in srgb, var(--gxpl-accent) 18%, transparent);
}

.gxpl-hero__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 4px;
    align-items: start;
}
.gxpl-meta-card {
    background: color-mix(in srgb, var(--gxpl-accent) 4%, transparent);
    border: 1px solid var(--gxpl-border);
    border-radius: 6px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.gxpl-meta-card__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gxpl-text-mute);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.gxpl-meta-card__icon {
    width: 11px;
    height: 11px;
    color: var(--gxpl-accent);
}
.gxpl-meta-card__value {
    color: var(--gxpl-text);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Websites — chips */
.gxpl-hero__websites {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.gxpl-hero a.gxpl-website,
.gxpl-hero a.gxpl-website:link,
.gxpl-hero a.gxpl-website:visited {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: color-mix(in srgb, var(--gxpl-accent) 6%, transparent);
    border: 1px solid var(--gxpl-accent);
    border-radius: 999px;
    color: var(--gxpl-accent) !important;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none !important;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.gxpl-hero a.gxpl-website:hover {
    background: color-mix(in srgb, var(--gxpl-accent) 18%, transparent);
    color: var(--gxpl-accent-2) !important;
    border-color: var(--gxpl-accent-2);
    box-shadow: 0 0 12px color-mix(in srgb, var(--gxpl-accent) 35%, transparent);
}
.gxpl-website__icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(73%) sepia(74%) saturate(384%) hue-rotate(126deg) brightness(102%) contrast(101%);
}

/* ═══════════════════════════════════════════════════════════════
   BODY — main + sidebar layout
   ═══════════════════════════════════════════════════════════════ */
.gxpl-body {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 22px;
    align-items: start;
}
.gxpl-body__main { min-width: 0; }

/* Version select (mobile fallback) */
.gxpl-version-select {
    display: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.gxpl-version-select__label {
    color: var(--gxpl-text-mute);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.gxpl-version-select__field {
    flex: 1 1 auto;
    background: var(--gxpl-bg-card) !important;
    border: 1px solid var(--gxpl-accent) !important;
    color: var(--gxpl-text) !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 13px !important;
    outline: none;
}

/* ─── Versions sidebar ───────────────────────────────────────── */
.gxpl-body__side {
    position: sticky;
    top: 80px;
    align-self: start;
}
.gxpl-versions {
    background: var(--gxpl-bg-card);
    border: 1.5px solid var(--gxpl-accent);
    border-radius: 10px;
    padding: 14px;
    box-shadow:
        0 0 14px color-mix(in srgb, var(--gxpl-accent) 14%, transparent),
        0 4px 14px rgba(0, 0, 0, 0.50);
}
.gxpl-versions__head {
    font-family: 'Orbitron', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--gxpl-accent);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gxpl-border-2);
}
.gxpl-versions__item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--gxpl-border-2);
    border-radius: 6px;
    color: var(--gxpl-text);
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    margin-bottom: 8px;
}
.gxpl-versions__item:hover {
    border-color: var(--gxpl-accent);
    background: color-mix(in srgb, var(--gxpl-accent) 6%, transparent);
}
.gxpl-versions__item--active {
    border-color: var(--gxpl-hot) !important;
    background: color-mix(in srgb, var(--gxpl-hot) 8%, transparent) !important;
    box-shadow: 0 0 14px color-mix(in srgb, var(--gxpl-hot) 25%, transparent);
}
.gxpl-versions__item-logo {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background: var(--gxpl-bg-deep);
    border: 1px solid var(--gxpl-border);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.gxpl-versions__item-logo-bg {
    position: absolute;
    inset: 4px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.gxpl-versions__item-text {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gxpl-versions__item-name {
    font-family: 'Orbitron', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gxpl-text);
}
.gxpl-versions__item--active .gxpl-versions__item-name { color: var(--gxpl-hot-2); }
.gxpl-versions__item-sum {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    color: var(--gxpl-text-dim);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ═══════════════════════════════════════════════════════════════
   VERSION CONTENT
   ═══════════════════════════════════════════════════════════════ */
.gxpl-version {
    background: var(--gxpl-bg-card);
    border: 1px solid var(--gxpl-border);
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 26px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.40);
}
.gxpl-version__title {
    margin: 0 0 14px !important;
    font-family: 'Orbitron', system-ui, sans-serif !important;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--gxpl-accent-2) !important;
    text-transform: uppercase;
    text-shadow: 0 0 12px color-mix(in srgb, var(--gxpl-accent) 35%, transparent);
}
.gxpl-version__tabs {
    display: inline-flex;
    gap: 6px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.30);
    border: 1px solid var(--gxpl-border-2);
    border-radius: 6px;
    margin-bottom: 16px;
}
.gxpl-version__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--gxpl-text-dim);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.gxpl-version__tab:hover {
    color: var(--gxpl-accent-2);
}
.gxpl-version__tab--active {
    background: color-mix(in srgb, var(--gxpl-accent) 12%, transparent);
    border-color: var(--gxpl-accent);
    color: var(--gxpl-accent-2);
    box-shadow: 0 0 10px color-mix(in srgb, var(--gxpl-accent) 20%, transparent);
}

/* Overview */
.gxpl-overview__summary {
    color: var(--gxpl-text-dim);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}
.gxpl-overview__summary a { color: var(--gxpl-accent) !important; text-decoration: none !important; }
.gxpl-overview__summary a:hover { color: var(--gxpl-accent-2) !important; }
.gxpl-overview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.gxpl-info-card {
    background: color-mix(in srgb, var(--gxpl-accent) 4%, transparent);
    border: 1px solid var(--gxpl-border);
    border-radius: 6px;
    padding: 12px 14px;
}
.gxpl-info-card__head {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gxpl-accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.gxpl-info-card__icon { width: 12px; height: 12px; }
.gxpl-info-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.gxpl-info-card__row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--gxpl-text);
    font-size: 13px;
    font-weight: 500;
}
.gxpl-info-card__region {
    color: var(--gxpl-hot);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
}
.gxpl-info-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.gxpl-info-card a.gxpl-pill,
.gxpl-info-card a.gxpl-pill:link,
.gxpl-info-card a.gxpl-pill:visited {
    display: inline-flex;
    padding: 3px 10px;
    background: color-mix(in srgb, var(--gxpl-accent) 6%, transparent);
    border: 1px solid var(--gxpl-accent);
    border-radius: 999px;
    color: var(--gxpl-accent) !important;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    text-decoration: none !important;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.gxpl-info-card a.gxpl-pill:hover {
    background: color-mix(in srgb, var(--gxpl-accent) 18%, transparent);
    color: var(--gxpl-accent-2) !important;
    border-color: var(--gxpl-accent-2);
}
.gxpl-info-card a.gxpl-pill--alt,
.gxpl-info-card a.gxpl-pill--alt:link,
.gxpl-info-card a.gxpl-pill--alt:visited {
    background: color-mix(in srgb, var(--gxpl-hot) 6%, transparent);
    border-color: var(--gxpl-hot);
    color: var(--gxpl-hot) !important;
}
.gxpl-info-card a.gxpl-pill--alt:hover {
    background: color-mix(in srgb, var(--gxpl-hot) 18%, transparent);
    color: var(--gxpl-hot-2) !important;
    border-color: var(--gxpl-hot-2);
}

/* Hardware */
.gxpl-hardware {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--gxpl-border-2);
    border-radius: 6px;
    overflow: hidden;
}
.gxpl-hardware__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 10px 14px;
    background: var(--gxpl-bg-card);
    transition: background 0.15s ease;
}
.gxpl-hardware__row:hover { background: color-mix(in srgb, var(--gxpl-accent) 4%, transparent); }
.gxpl-hardware__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gxpl-accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-weight: 600;
}
.gxpl-hardware__glyph {
    color: var(--gxpl-hot);
    font-size: 14px;
    line-height: 1;
}
.gxpl-hardware__value {
    color: var(--gxpl-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    word-break: break-word;
}

/* ═══════════════════════════════════════════════════════════════
   GAMES SECTION (same pattern as engine page)
   ═══════════════════════════════════════════════════════════════ */
.gxpl-games__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.gxpl-games__title {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin: 0 !important;
    font-family: 'Orbitron', system-ui, sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gxpl-text) !important;
}
.gxpl-games__title-prefix { color: var(--gxpl-text-dim); }
.gxpl-games__title-name { color: var(--gxpl-accent); text-shadow: 0 0 10px color-mix(in srgb, var(--gxpl-accent) 45%, transparent); }
.gxpl-games__title-line {
    display: inline-block;
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(to right, var(--gxpl-accent), transparent);
    box-shadow: 0 0 6px var(--gxpl-accent);
}
.gxpl-games__pagination {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
}
.gxpl-games__list { display: flex; flex-direction: column; gap: 12px; }
.gxpl-games__empty {
    color: var(--gxpl-text-mute);
    text-align: center;
    padding: 32px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border: 1px dashed var(--gxpl-border-2);
    border-radius: 6px;
}

/* Game row */
.gxpl-row,
a.gxpl-row,
a.gxpl-row:link,
a.gxpl-row:visited {
    position: relative;
    display: grid;
    grid-template-columns: 64px 130px 1fr 24px;
    gap: 18px;
    align-items: center;
    background: var(--gxpl-bg-card);
    border: 1.5px solid var(--gxpl-accent);
    border-radius: 8px;
    padding: 14px 18px 14px 0;
    text-decoration: none !important;
    overflow: hidden;
    box-shadow:
        0 0 12px color-mix(in srgb, var(--gxpl-accent) 14%, transparent),
        0 4px 14px rgba(0, 0, 0, 0.45);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    color: inherit !important;
    min-height: 156px;
}
.gxpl-row:hover {
    transform: translateY(-2px);
    border-color: var(--gxpl-accent-2);
    box-shadow:
        0 0 22px color-mix(in srgb, var(--gxpl-accent) 30%, transparent),
        0 0 32px color-mix(in srgb, var(--gxpl-hot) 10%, transparent),
        0 8px 22px rgba(0, 0, 0, 0.55);
}
.gxpl-row__num {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--gxpl-accent) 4%, transparent);
    border-right: 1px solid var(--gxpl-border-2);
    color: var(--gxpl-accent);
    font-family: 'Orbitron', system-ui, sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-shadow: 0 0 10px color-mix(in srgb, var(--gxpl-accent) 50%, transparent);
    margin: -14px 0;
}
.gxpl-row__poster {
    position: relative;
    width: 130px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--gxpl-bg-deep);
    border: 1.5px solid var(--gxpl-hot);
    border-radius: 6px;
    box-shadow:
        0 0 10px color-mix(in srgb, var(--gxpl-hot) 30%, transparent),
        inset 0 0 12px rgba(0, 0, 0, 0.45);
    align-self: center;
}
.gxpl-row__poster-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.gxpl-row__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}
.gxpl-row__title {
    margin: 0 !important;
    font-family: 'Orbitron', system-ui, sans-serif !important;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--gxpl-text) !important;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.gxpl-row:hover .gxpl-row__title { color: var(--gxpl-accent-2) !important; }
.gxpl-row__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}
.gxpl-row__year { color: var(--gxpl-text); }
.gxpl-row__cat { color: var(--gxpl-accent); }
.gxpl-row__platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
}
.gxpl-row a.gxpl-row__platform,
.gxpl-row a.gxpl-row__platform:link,
.gxpl-row a.gxpl-row__platform:visited {
    color: var(--gxpl-accent) !important;
    text-decoration: none !important;
    transition: color 0.15s ease;
}
.gxpl-row a.gxpl-row__platform:hover { color: var(--gxpl-accent-2) !important; }
.gxpl-row__sep { color: var(--gxpl-hot); opacity: 0.65; font-size: 9px; }
.gxpl-row__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gxpl-accent);
    transition: transform 0.2s ease, color 0.2s ease;
    filter: drop-shadow(0 0 4px color-mix(in srgb, var(--gxpl-accent) 45%, transparent));
}
.gxpl-row__arrow svg { width: 16px; height: 16px; }
.gxpl-row:hover .gxpl-row__arrow { color: var(--gxpl-accent-2); transform: translateX(3px); }

/* Pagination */
.gxpl-pagination {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gxpl-bg-card);
    border: 1px solid var(--gxpl-border);
    border-radius: 6px;
    padding: 4px;
}
.gxpl-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--gxpl-text-dim);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.gxpl-pagination__btn:hover {
    background: color-mix(in srgb, var(--gxpl-accent) 8%, transparent);
    color: var(--gxpl-accent-2);
    border-color: var(--gxpl-border);
}
.gxpl-pagination__btn--active {
    background: color-mix(in srgb, var(--gxpl-accent) 14%, transparent);
    color: var(--gxpl-accent-2);
    border-color: var(--gxpl-accent);
    box-shadow: 0 0 12px color-mix(in srgb, var(--gxpl-accent) 30%, transparent);
}
.gxpl-pagination__gap { color: var(--gxpl-text-mute); padding: 0 4px; font-family: 'JetBrains Mono', monospace; }

/* Loader */
#geekui-root-platform .geekfp-spinner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 400px !important;
    position: relative;
}
#geekui-root-platform .geekfp-spinner .geekfp-rotating,
#geekui-root-platform .geekfp-spinner > svg {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
}
#geekui-root-platform .geekfp-spinner::after {
    content: '' !important;
    display: block !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    border: 3px solid color-mix(in srgb, var(--gxpl-accent) 10%, transparent) !important;
    border-top-color: var(--gxpl-accent) !important;
    border-right-color: var(--gxpl-hot) !important;
    animation: gxpl-ring-rotate 0.7s linear infinite !important;
    box-shadow: 0 0 18px color-mix(in srgb, var(--gxpl-accent) 30%, transparent) !important;
    flex-shrink: 0 !important;
}
@keyframes gxpl-ring-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1000px) {
    .gxpl-body { grid-template-columns: 1fr; }
    .gxpl-body__side { position: static; }
    .gxpl-version-select { display: flex; }
}
@media (max-width: 700px) {
    .gxpl-hero { grid-template-columns: 1fr; gap: 18px; padding: 18px; }
    .gxpl-hero__logo { width: 100%; max-width: 200px; margin: 0 auto; }
    .gxpl-hero__title { font-size: 26px; }
    .gxpl-row { grid-template-columns: 48px 100px 1fr 22px; gap: 12px; padding: 10px 12px 10px 0; min-height: 130px; }
    .gxpl-row__num { font-size: 22px; margin: -10px 0; }
    .gxpl-row__poster { width: 100px; }
    .gxpl-row__title { font-size: 16px; }
    .gxpl-hardware__row { grid-template-columns: 1fr; gap: 4px; }
}
