@font-face {
  font-family: 'Gotham Ultra';
  src: url('fonts/GothamNarrow-Ultra.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Book';
  src: url('fonts/GothamRnd-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('fonts/BebasNeue.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

:root {
  /* Colors - Peppr Brand Palette */
  --bg-base: #2C3670;
  /* Peppr Navy */
  --bg-surface: #242c5c;
  /* Darker Navy for depth */
  --bg-surface-hover: #1d2449;
  --bg-surface-elevated: #354085;

  --text-primary: #FFFFFF;
  --text-secondary: #FFAF66;
  /* Peppr Orange for secondary text */
  --text-muted: #9E9E9E;
  /* Peppr Gray */

  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);

  /* Accents */
  --accent-primary: #F23885;
  /* Peppr Pink */
  --accent-primary-hover: #d63175;
  --accent-primary-alpha: rgba(242, 56, 133, 0.15);

  --accent-success: #10b981;
  --accent-warning: #FFAF66;
  /* Peppr Orange */
  --accent-danger: #ef4444;
  --accent-info: #3b82f6;

  /* Typography */
  --font-family-base: 'Gotham Book', 'Inter', -apple-system, sans-serif;
  --font-family-display: 'Gotham Ultra', 'Outfit', sans-serif;
  --font-family-header: 'Bebas Neue', 'Outfit', sans-serif;

  /* Font Sizes - Adjusted for Brand Specs */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 1.875rem;
  /* 30px */
  --text-4xl: 3rem;
  /* 48px - Header 2 equivalent */
  --text-5xl: 4.5rem;
  /* 72px - Header 1 Brand Spec */

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 15px var(--accent-primary-alpha);

  /* Layout */
  --sidebar-width: 260px;
  --header-height: 64px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}