:root {
    --bg: #141419;
    --panel: #111116;
    --chip: rgba(255, 255, 255, 0.03);
    --border: #26262e;
    --border-hover: rgba(255, 225, 0, 0.35);
    --text: #e4e4ea;
    --text-2: #9a9aa4;
    --text-3: #6b6b76;
    --accent: #FFE100;
    --mono: ui-monospace, 'JetBrains Mono', 'Cascadia Code', 'Fira Code', Menlo, Consolas, monospace;
    --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

::selection { background: var(--accent); color: #000; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

a { color: inherit; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px 48px; }

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.nav-brand {
    font-family: var(--mono);
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
}

.nav-links { display: flex; gap: 22px; flex-wrap: wrap; }

.nav-links a {
    font-family: var(--mono);
    font-size: 0.82rem;
    color: var(--text-2);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); border-bottom-color: var(--accent); }

@keyframes pulse {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .skel { animation: none; opacity: 0.6; }
}
