:root {
    color-scheme: dark;
    --bg: #0b0f14;
    --surface: #11161d;
    --text: #f3f4f6;
    --muted: #9ca3af;
    --accent: #8b5cf6;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding: 0 1.25rem;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    margin: 0 -1.25rem;
    background: var(--surface);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    padding: 0.3rem 0.55rem;
    border-radius: 0.35rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent);
}