:root {
    --bg-base: #09090b;
    --bg-surface: #18181b;
    --bg-card: #27272a;
    --text-main: #f8fafc;
    --text-muted: #a1a1aa;
    --border-color: #3f3f46;
    --primary: #3b82f6;
    --primary-hover: #2563eb;

    --w1-color: #60a5fa;
    --w2-color: #f472b6;

    --badge-0: #52525b;
    /* Gray */
    --badge-1: #10b981;
    /* Green */
    --badge-2: #0ea5e9;
    /* Blue */
    --badge-3: #f59e0b;
    /* Yellow */
    --badge-4: #ef4444;
    /* Red */

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Balanced Ambient Glows */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.03;
    /* Barely there, just for warmth */
    pointer-events: none;
}

body::before {
    top: -200px;
    left: -200px;
    background: var(--primary);
}

body::after {
    bottom: -200px;
    right: -200px;
    background: #a855f7;
}