@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg:        #111009;
    --bg2:       #1a1710;
    --bg3:       #221f14;
    --card:      #1e1b11;
    --border:    rgba(245,197,24,0.14);
    --accent:    #f5c518;
    --accent2:   #e6a800;
    --glow:      rgba(245,197,24,0.18);
    --text:      #f0e8ce;
    --muted:     #9e9068;
    --radius:    14px;
    --radius-sm: 8px;
    --flash:     rgba(245,197,24,0.15);
    --blue:      #4a9eda;
}

* { box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
}

::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(245,197,24,0.25); border-radius: 10px; }
