/* Kickers speak in the HUD voice: small tracked mono with a comment prefix. */.kicker {
    margin: 0 0 14px;
    color: var(--accent);
    font-family: var(--font-code);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.6;
}.kicker::before {
    content: '// ';
    color: var(--gold-700);
}.section-head + *,
.site-footer {
    color: var(--muted);
}.inset-panel {
    border: 2px solid var(--border);
    background: var(--panel-dark);
    padding: 18px;
}.panel-label {
    color: var(--accent);
    font-size: 1rem;
    line-height: 1.5;
}.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 2.8em;
    padding: 0.18em 1em;
    border: 2px solid var(--border);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    background: var(--panel-deep);
    color: var(--text);
    cursor: pointer;
    box-shadow: var(--shadow-m);
    transition: transform 0.08s linear, box-shadow 0.08s linear, border-color 0.12s linear;
}/* Press physics: raise on hover with a gold hairline ring, slam flush on press. */.btn:hover {
    border-color: var(--border-strong);
    transform: translate(-1px, -1px);
    box-shadow: 0 0 0 1px var(--gold-700), 6px 6px 0 #000000;
}.btn:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}:is(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}.btn-primary {
    background: var(--accent);
    color: #151000;
    border-color: #000;
}.btn-secondary {
    background: var(--panel-deep);
    color: var(--text);
}.btn-danger {
    background: rgba(180, 56, 56, 0.16);
    border-color: rgba(231, 76, 60, 0.6);
    color: #f2b1a9;
}.section-head {
    margin-bottom: 18px;
}.section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}@keyframes showcase-update {
    0% {
        transform: translateY(8px);
        border-color: #7a5d1f;
        background-color: #2b1f09;
        box-shadow: 0 0 0 rgba(255, 196, 73, 0);
    }
    45% {
        transform: translateY(0);
        border-color: #ffca59;
        background-color: #3a2b0d;
        box-shadow: 0 0 24px rgba(255, 196, 73, 0.16);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(255, 196, 73, 0);
    }
}.site-footer {
    flex-direction: column;
    align-items: stretch;
    margin-top: 18px;
    color: var(--muted);
    padding: 8px 12px;
    margin-bottom: 0;
    font-size: 0.82rem;
}.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}.footer-credit {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}.footer-credit a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--accent);
    transition: color 0.12s ease, border-color 0.12s ease;
}.footer-credit a:hover {
    color: var(--accent-strong);
    border-bottom-style: solid;
}.site-footer .footer-links {
    gap: 10px;
}.site-footer .footer-links a {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}.footer-disclaimer {
    margin: 6px 0 0;
    padding-top: 6px;
    border-top: 1px solid rgba(160, 154, 134, 0.18);
    color: rgba(235, 231, 211, 0.58);
    font-size: 0.7rem;
    line-height: 1.35;
}html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}/* Native fallback (horizontal scrollers and anything the overlay misses)
   wears the same square plain-gold look. */html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
    background: var(--surface-0);
    border-left: 1px solid #2a2418;
    border-top: 1px solid #2a2418;
}html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
    background: var(--gold-500);
    border: 1px solid #000000;
}html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
    background: var(--gold-300);
}body {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-500) var(--surface-0);
}