:root {
    /* Fondo y superficies sólidas */
    --bg-color: #0b0b0f;
    --sidebar-bg: rgba(18, 18, 26, 0.8);
    --card-bg: rgba(26, 26, 38, 0.4);
    --modal-bg: #111118;

    /* Superficies semi-transparentes (tokens para sustituir valores hardcodeados) */
    --surface-1: rgba(255, 255, 255, 0.02);
    --surface-2: rgba(255, 255, 255, 0.04);
    --surface-3: rgba(255, 255, 255, 0.08);

    /* Bordes */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-mid: rgba(255, 255, 255, 0.2);

    /* Colores de acento */
    --accent-primary: #8b5cf6;
    --accent-secondary: #d946ef;
    --accent-light: #c084fc;
    --accent-glow: rgba(139, 92, 246, 0.15);
    --accent-glow-sm: rgba(139, 92, 246, 0.1);

    /* Texto */
    --text-main: #f3f4f6;
    --text-secondary: #9ca3af;

    /* Estado */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    height: 100dvh;
    display: flex;
    overflow: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, var(--accent-glow) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(217, 70, 239, 0.1) 0%, transparent 40%);
}
