/* ===================================
   المتغيرات الأساسية - Variables
   =================================== */

:root {
  /* الألوان الرئيسية - Primary Colors */
  --color-primary: #3b82f6;
  --color-primary-light: #60a5fa;
  --color-primary-dark: #2563eb;
  
  --color-secondary: #06b6d4;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  
  /* خلفيات - Backgrounds */
  --bg-gradient-start: #0f1f4d;
  --bg-gradient-middle: #1a3570;
  --bg-gradient-end: #0a1633;
  
  /* الشفافية - Opacity */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-hover: rgba(255, 255, 255, 0.15);
  
  /* النصوص - Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.7);
  
  /* الخطوط - Fonts */
  --font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-xlarge: 24px;
  --font-size-title: 32px;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* المسافات - Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-xxl: 40px;
  
  /* الزوايا - Border Radius */
  --radius-sm: 10px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --radius-xl: 25px;
  --radius-full: 50px;
  
  /* الظلال - Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 15px rgba(59, 130, 246, 0.2);
  --shadow-lg: 0 8px 25px rgba(59, 130, 246, 0.3);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
  
  /* الانتقالات - Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* وضع الموبايل */
@media (max-width: 768px) {
  :root {
    --font-size-base: 14px;
    --font-size-title: 24px;
    --spacing-lg: 15px;
    --spacing-xl: 20px;
  }
}