:root {
  /* Temel Arka Plan Renkleri */
  --bg-primary: #070d1e;
  --bg-secondary: #0b152d;
  --bg-tertiary: #101c3d;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(7, 13, 30, 0.8);
  --bg-glass-card: rgba(11, 21, 45, 0.65);

  /* Kenarlıklar */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(124, 58, 237, 0.35);
  --border-active: rgba(6, 182, 212, 0.5);

  /* Vurgular & Gradyanlar */
  --accent-purple: #7c3aed;
  --accent-cyan: #06b6d4;
  --accent-coral: #ff6b6b;
  --accent-emerald: #10b981;
  --accent-start: #7c3aed;
  --accent-end: #06b6d4;
  --primary: #ff6b6b;
  --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  --accent-gradient-hover: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 100%);
  --accent-gradient-text: linear-gradient(135deg, #c4b5fd 0%, #67e8f9 100%);
  --glow-gradient: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.2), transparent 70%);

  /* Metin Renkleri */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;

  /* Font & Tipografi */
  --font-display: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Düzen & Yuvarlatmalar */
  --container-max: 1140px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Gölgeler & Derinlik */
  --shadow-card: 0 10px 30px -10px rgba(2, 6, 23, 0.7);
  --shadow-card-hover: 0 20px 40px -15px rgba(124, 58, 237, 0.25);
  --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.3);
  --shadow-button: 0 8px 25px rgba(124, 58, 237, 0.35);

  /* Animasyon Geçişleri */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}