/**
 * Variables CSS globales (generadas dinamicamente desde theme.json)
 */
:root {
    --primary-default: #ff69b4;
    --primary-hover: #ff85c1;
    --primary-foreground: #0f0a0d;
    --secondary-default: #db7093;
    --secondary-hover: #ff9ebf;
    --secondary-foreground: #0f0a0d;
    --background: #0b090a;
    --background-secondary: #120f11;
    --foreground: #f4f4f4;
    --surface: #120f11;
    --muted: #7a505e;
    --accent: #ff77a9;
    --accent-yellow: #ffb3cc;
    --accent-purple: #c71585;
    --destructive: #b02e60;
    --success: #d46b8e;
    --warning: #ffafcc;
    --sidebar: #090608;
    --shadow-sm: 0 2px 8px rgba(255, 105, 180, 0.15);
    --shadow-md: 0 4px 20px rgba(255, 105, 180, 0.2);
    --shadow-lg: 0 8px 40px rgba(255, 105, 180, 0.25);
    --shadow-glow: 0 0 30px rgba(255, 105, 180, 0.15);
    --shadow-accent: 0 4px 20px rgba(255, 105, 180, 0.3);
    --glass-background: rgba(26, 10, 18, 0.85);
    --glass-border: rgba(255, 105, 180, 0.15);
    --glass-blur: blur(20px);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

[data-theme="light"] {
    --background: #fff5f7;
    --background-secondary: #ffffff;
    --foreground: #3d1f2a;
    --muted: #b57d90;
    --surface: #ffffff;
    --sidebar: #fff0f5;
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(255, 105, 180, 0.1);
    --shadow-accent: 0 4px 20px rgba(255, 105, 180, 0.3);
}
