/* ===== Variables ===== */
:root {
    --bg-dark: #0d0d12;
    --bg-window: #1a1a24;
    --bg-header: #12121a;
    --bg-hover: #252532;
    --accent: #6c5ce7;
    --accent-light: #a29bfe;
    --accent-glow: rgba(108, 92, 231, 0.4);
    --text: #ffffff;
    --text-secondary: #8888a0;
    --text-muted: #5c5c70;
    --border: rgba(255, 255, 255, 0.08);
    --success: #00d26a;
    --warning: #ffbe0b;
    --danger: #ff5757;
    --discord: #5865F2;
    --github: #333;
    --twitter: #1DA1F2;
}

/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow: hidden;
    height: 100vh;
    user-select: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--bg-hover);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
