:root {
    /* ألوان العلامة التجارية الأساسية */
    --primary-color: #E63946; /* أحمر توصيل */
    --secondary-color: #FDCB58; /* أصفر دافئ */
    --tertiary-color: #2D2A32; /* رمادي غامق */
    
    /* ألوان إضافية مشتقة من الألوان الأساسية */
    --primary-light: #f27781;
    --primary-dark: #c8212e;
    --secondary-light: #ffe28a;
    --secondary-dark: #eab526;
    --tertiary-light: #54525a;
    --tertiary-dark: #1a181f;
    
    /* ألوان واجهة المستخدم */
    --background-color: #ffffff;
    --surface-color: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    
    /* ألوان النص */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --text-white: #ffffff;
    
    /* ألوان الحدود */
    --border-color: #e1e1e1;
    --border-light: #f1f1f1;
    
    /* ألوان الظلال */
    --shadow-color: rgba(0, 0, 0, 0.1);
}