/* css/themes.css */

/* 1. Light Theme (الوضع الفاتح) */
:root[data-theme="light"] {
    --bg-color: #f4f7f6;
    --card-bg: rgba(255, 255, 255, 0.7);
    --text-primary: #1a1a2e;
    --text-secondary: #666666;
    --accent: #6c5ce7;
    --accent-hover: #5b4bc4;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

/* 2. Dark Theme (الوضع المظلم الفاخر - الافتراضي) */
:root[data-theme="dark"] {
    --bg-color: #0f1015;
    --card-bg: rgba(25, 26, 35, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent: #a29bfe;
    --accent-hover: #8176f2;
    --border-color: rgba(255, 255, 255, 0.05);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* 3. Cyberpunk Theme (الوضع المستقبلي / النيون) */
:root[data-theme="cyberpunk"] {
    --bg-color: #0d0221;
    --card-bg: rgba(15, 15, 25, 0.8);
    --text-primary: #fce205; /* أصفر نيون */
    --text-secondary: #00f0ff; /* سماوي نيون */
    --accent: #ff003c; /* أحمر سايبربانك */
    --accent-hover: #d40032;
    --border-color: #00f0ff;
    --shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}