:root {
    --bg: #0f1115;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.07);

    --text: #ffffff;
    --text-muted: #94969A;

    --accent: #4c82f7;
    --accent-glow: rgba(76, 130, 247, 0.35);

    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi', sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

p,
span,
a,
li {
    font-weight: 400;
    line-height: 1.6;
}