:root {
  /* Colors - Dark Mode (Default) */
  --bg-primary: #080112;
  --bg-secondary: #1a0a2e;
  --bg-accent: #530054;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --accent-neon: #C607B3;
  --cta-color: #EB5074;
  --cta-hover: #D13E60;

  /* Colors - Light Mode */
  --light-bg-primary: #FFFFFF;
  --light-bg-secondary: #F5F3FF;
  --light-text-primary: #080112;
  --light-text-secondary: rgba(8, 1, 18, 0.7);

  /* Typography */
  --font-family: 'DM Sans', sans-serif;
  --font-title: 'Space Mono', monospace;
  --font-mono: 'JetBrains Mono', monospace;
  --gradient-main: linear-gradient(135deg, #c607b3, #eb5074);
  --h1-size: 4.5rem;
  --h2-size: 2.5rem;
  --h3-size: 1.5rem;
  --body-size: 1.15rem;
  --line-height: 1.5;

  /* Spacing */
  --section-padding: 80px 20px;
  --container-max: 1280px;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;

  /* Header */
  --header-bg: rgba(8, 1, 18, 0.85);
  --header-border: rgba(37, 0, 89, 0.5);

  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

[data-theme="light"] {
  --bg-primary: #f8f8fa;
  --bg-secondary: #ede8f5;
  --bg-accent: #E0DAF5;
  /* Adjusted for light mode visibility */
  --text-primary: var(--light-text-primary);
  --text-secondary: var(--light-text-secondary);
  /* Accents - darkened magenta for readability on white */
  --accent-neon: #A0059A;
  /* Header */
  --header-bg: rgba(248, 248, 250, 0.9);
  --header-border: rgba(212, 204, 227, 0.6);
}