:root {
  /* Colors */
  --color-primary: #38C4DA;
  --color-accent: #E26E63;
  --color-cta: #E7437A;
  --color-pink: #E7437A;
  --color-text: #212121;
  --color-text-light: #FFFFFF;
  --color-bg-light: #F5F5F5;
  --color-bg-dark: #3a3a3a;
  --color-bg-deep: #000031;
  --color-bg-black: #00000B;
  --color-violet: #30168A;
  --color-border: rgba(255, 255, 255, 0.22);
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Typography */
  --font-primary: "Assistant", sans-serif;
  --font-display: "Bebas Neue", sans-serif;
  --font-heading: "Poppins", sans-serif;
  --font-body-en: "Mukta", sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Layout */
  --container-max: 1400px;
  --container-content: 1140px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 40px;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
  --shadow-primary: 0 0 30px rgba(56, 196, 218, 0.3);
  --shadow-cta: 0 0 30px rgba(231, 67, 122, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}
