:root {
    --bg: #0f172a;
    --panel: #182543;
    --border: rgba(255, 255, 255, 0.08);
    --accent: #fdb813;
    --text: #f5f7fa;
    --text-secondary: #95a4b5;
    --muted: #8ea3c0;
    --error: #ff6b6b;
    --success: #48c78e;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top, #11284d, #081325 60%);
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text);
    padding: 32px;
}

hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 12px 0;
}
