/* ==================== TEMA CONTRAST - VARIABILI COLORE ==================== */
/* Solo variabili colore per tema contrast */

body.theme-contrast {
    /* Colori principali (toni viola) */
    --celeste: #a56ccf;
    --celeste-dark: #8b4cb8;
    --celeste-darker: #6b2c91;
    --celeste-deep: #4a1a5a;
    --white: #ffffff;
    
    /* Colori testo */
    --text-primary: #4a1a5a;
    --text-secondary: #6b2c91;
    --text-light: #8b4cb8;
    --text-lighter: #a56ccf;
    
    /* Colori bordi */
    --border-color: rgba(255, 255, 255, 0.4);
    
    /* Glow effects (toni viola/bianco) */
    --glow-soft: 0 4px 25px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
    --glow-medium: 0 6px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.3);
    --glow-strong: 0 8px 35px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 255, 255, 0.4);
    --glow-intense: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 255, 255, 0.5);
    
    /* Background */
    --bg-primary: rgba(255, 255, 255, 0.18);
    --bg-secondary: rgba(255, 255, 255, 0.9);
    
    /* Background body */
    background: linear-gradient(180deg, #4a1a5a 0%, #6b2c91 35%, #8b4cb8 65%, #a56ccf 100%);
    background-attachment: fixed;
    color: var(--text-primary);
}
