:root {
    --bg-deep: #000000;
    --bg: #060b18;
    --surface: #14213d;
    --surface-hover: #1c2d50;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --accent: #fca311;
    --accent-dim: rgba(252, 163, 17, 0.1);
    --secondary: #e5e5e5;
    --secondary-dim: rgba(229, 229, 229, 0.08);
    --tertiary: #ffffff;
    --text: #ffffff;
    --text-secondary: #e5e5e5;
    --text-muted: #8a8a9a;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-deep);
    color: var(--text);
    scroll-behavior: smooth;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

main { flex: 1; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

.site-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg-deep);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
