:root {
    --bg: #0f0f0f;
    --panel: #1b1b1b;
    --panel-2: #292929;
    --border: #464646;
    --border-strong: #646464;
    --text: #f5f5f5;
    --text-muted: #d7d7d7;
    --accent: #f0c56f;
    --accent-soft: rgba(215, 179, 106, .18);
    --input-bg: #111111;
    --input-border: #666666;
    --input-text: #ffffff;
    --button-bg: #f0c56f;
    --button-border: #f0c56f;
    --button-text: #151515;
    --success: #65b56b;
    --danger: #cf5959;
    --radius: 2px;
}
body.theme-dark { background: var(--bg); color: var(--text); }
body, .card, .panel, .auth-card, .stat-card, .form-control, .btn, .alert, .captcha-box, .captcha-tile, .brand-mark, .dropdown, .input-addon { border-radius: var(--radius); }
a { color: var(--accent); }
.site-header, .site-footer { background: #181818; border-color: var(--border-strong); }
.site-main { background: radial-gradient(circle at top, #232323 0, var(--bg) 380px); }
::selection { background: var(--accent); color: #111; }
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--input-text);
    transition: background-color 9999s ease-in-out 0s;
    box-shadow: 0 0 0 1000px var(--input-bg) inset;
}
