:root {
    --bg: #090909;
    --surface: #111;
    --surface-raised: #161616;
    --border: #222;
    --gold: #c8a84e;
    --gold-dim: rgba(200, 168, 78, 0.12);
    --gold-glow: rgba(200, 168, 78, 0.25);
    --green: #4a9e54;
    --green-dim: rgba(74, 158, 84, 0.12);
    --text: #eae6de;
    --text-mid: #a9a295;
    --text-dim: #6b665e;
    --font-display: 'Bebas Neue', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-body: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg)!important;
    color: var(--text);
    font-family: var(--font-body) !important;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}
.site-header{
    background: var(--bg)!important;
}