@font-face {
  font-family: 'Abeat';
  src: url('../assets/abeat.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colors - Dark Theme (default) */
  --bg-primary: #0A0C11;
  --bg-surface: #10121A;
  --bg-elevated: #181B25;
  --border: rgba(254, 250, 249, 0.06);
  --border-hover: rgba(254, 250, 249, 0.1);

  --text-primary: #FEFAF9;
  --text-secondary: #e0e0e0;
  --text-tertiary: #888888;
  --text-muted: #555555;
  --text-faint: #333333;

  --accent: #E62F6E;
  --accent-secondary: #E94B52;
  --accent-gradient: linear-gradient(135deg, #E62F6E, #E94B52);

  /* Data visualization color (teal) */
  --data-teal: #15E0BC;

  --status-ok: #15E0BC;
  --status-warning: #fbbf24;
  --status-error: #ef4444;

  --project-teal: #15E0BC;
  --project-purple: #a855f7;
  --project-amber: #fbbf24;
  --project-blue: #3b82f6;
  --project-pink: #ec4899;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 20px;
  --space-2xl: 24px;
  --space-3xl: 28px;
  --space-4xl: 32px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);

  /* Fonts */
  --font-sans: 'Poppins', -apple-system, sans-serif;
  --font-headline: 'Abeat', 'Poppins', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

[data-theme="light"] {
  --bg-primary: #FEFAF9;
  --bg-surface: #ffffff;
  --bg-elevated: #ffffff;
  --border: rgba(10, 12, 17, 0.06);
  --border-hover: rgba(10, 12, 17, 0.1);

  --text-primary: #0A0C11;
  --text-secondary: #444444;
  --text-tertiary: #888888;
  --text-muted: #aaaaaa;
  --text-faint: #dddddd;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);

  /* Accents stay the same in light mode */
}
