/* ============================================
   EMBER READ - VARIABLES CSS
   Fichier central pour toutes les variables
   ============================================ */

:root {
    /* Backgrounds */
    --bg-deep: #030303;
    --bg-base: #0a0a0a;
    --bg-elevated: #111111;
    --bg-card: #161616;

    /* Borders */
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);

    /* Brand Colors */
    --gold: #d4af37;
    --gold-dim: rgba(212,175,55,0.15);
    --gold-glow: rgba(212,175,55,0.4);
    --ember: #ff6b35;
    --ember-glow: rgba(255,107,53,0.3);
    --primary: #8b0000;
    --primary-glow: rgba(139,0,0,0.4);

    /* Text */
    --text: #f5f5f5;
    --text-secondary: #a0a0a0;
    --text-muted: #666;

    /* Status Colors */
    --success: #22c55e;
    --purple: #a855f7;
    --blue: #3b82f6;
    --rose: #f43f5e;

    /* Shadows */
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition: all 0.3s ease;

    /* Border Radius */
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 100px;
}
