:root {
    /* Backgrounds – dunkle, weihnachtliche Basis */
    --color-background: #020617;
    --color-surface: #020617;
    --color-surface-hover: #0f172a;

    /* Brand Colors – weihnachtlich für Palma Christmas */
    --color-primary: #b91c1c;
    /* Dunkles Weihnachtsrot */
    --color-primary-hover: #7f1d1d;
    --color-secondary: #065f46;
    /* Tannengrün */
    --color-tertiary: #f59e0b;
    /* Goldener Akzent */

    /* Text Colors – helle Schrift auf dunklem Hintergrund */
    --color-text: #e5e7eb;
    --color-text-muted: #9ca3af;
    --color-text-inverse: #ffffff;
    --color-headline: #f9fafb;

    /* Borders */
    --color-border: #e2e8f0;
    --color-border-highlight: #cbd5e1;

    /* Status Colors */
    --color-success: #10b981;
    --color-error: #ef4444;
    --color-error-hover: #dc2626;
    --color-warning: #f59e0b;
    --color-info: #3b82f6;

    /* Message (Success, Error, Info) - Background, Border, Text */
    --color-success-bg: #d4edda;
    --color-success-border: #c3e6cb;
    --color-success-text: #155724;
    --color-error-bg: #f8d7da;
    --color-error-border: #f5c6cb;
    --color-error-text: #721c24;
    --color-info-bg: #d1ecf1;
    --color-info-border: #bee5eb;
    --color-info-text: #0c5460;

    /* Gradients – angepasst an Weihnachts-Farbwelt */
    --gradient-brand: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-text: linear-gradient(to right, var(--color-primary), var(--color-tertiary));
    --color-gold-gradient-start: #065f46;
    --color-gold-gradient-mid: #b91c1c;
    --color-gold-gradient-end: #fbbf24;
    --gradient-gold: linear-gradient(to right, var(--color-gold-gradient-start), var(--color-gold-gradient-mid), var(--color-gold-gradient-end));

    /* Button Colors – hochwertige, flächige Gold-Töne (keine Verläufe) */
    --color-button-primary-bg: #fbbf24; /* warmes, klares Gold */
    --color-button-primary-bg-hover: #f59e0b; /* etwas dunkleres Gold für Hover */
    --color-button-primary-border: #fbbf24;
    --color-button-primary-text: #1f2937; /* sehr dunkles Grau für gute Lesbarkeit auf Gold */
    --color-button-hero-outline-border: #fbbf24;
    --color-button-hero-outline-text: #fbbf24;
    --color-button-hero-outline-bg-hover: rgba(251, 191, 36, 0.12);
    --color-button-hero-outline-glow: rgba(251, 191, 36, 0.25);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
}