/* ============================================================
   Legión4Ever DE LAS SOMBRAS — CSS Custom Properties
   Design System: WoW ForEver Blizzard Aesthetic
   ============================================================ */

:root {
  /* ── Abyssal & Oceanic Dark Tones ── */
  --bg-abyss: #020d18;
  --bg-deep: #041726;
  --bg-ocean: #09283c;
  --bg-slate: #0e364f;
  --bg-card: rgba(9, 40, 60, 0.7);
  --bg-card-hover: rgba(14, 54, 79, 0.85);
  --bg-overlay: rgba(2, 13, 24, 0.85);

  /* ── Runic Cyan & Arcane Glow ── */
  --cyan-primary: #00bfff;
  --cyan-light: #3cd7ff;
  --cyan-pale: #8fe9ff;
  --cyan-muted: rgba(0, 191, 255, 0.15);

  /* ── Warcraft Gold & Bronze ── */
  --gold-primary: #c89b3c;
  --gold-bright: #e5c158;
  --gold-dark: #855f1e;
  --gold-muted: rgba(200, 155, 60, 0.2);

  /* ── Semantic Colors ── */
  --color-success: #00ff98;
  --color-warning: #e5c158;
  --color-danger: #ff4444;
  --color-info: #00bfff;

  /* ── Category Colors ── */
  --cat-oficial: #e5c158;
  --cat-pve: #00bfff;
  --cat-pvp: #ff4444;
  --cat-lore: #a855f7;
  --cat-guild: #20d447;

  /* ── Text Colors ── */
  --text-primary: #e8edf2;
  --text-secondary: #8fa3b8;
  --text-muted: #5a7a96;
  --text-inverse: #020d18;

  /* ── Border & Divider ── */
  --border-subtle: rgba(0, 191, 255, 0.12);
  --border-gold: rgba(200, 155, 60, 0.4);
  --border-strong: rgba(0, 191, 255, 0.3);
  --divider: linear-gradient(90deg, transparent, var(--gold-primary), transparent);

  /* ── Typography ── */
  --font-display: 'Cinzel', 'Palatino Linotype', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Fira Code', 'Cascadia Code', monospace;

  --fs-hero: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h1: clamp(2rem, 3.5vw, 3rem);
  --fs-h2: clamp(1.5rem, 2.5vw, 2.25rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.2;
  --lh-normal: 1.6;
  --lh-loose: 1.8;

  /* ── Spacing System (8px base) ── */
  --space-xs: 0.25rem;
  /* 4px */
  --space-sm: 0.5rem;
  /* 8px */
  --space-md: 1rem;
  /* 16px */
  --space-lg: 1.5rem;
  /* 24px */
  --space-xl: 2rem;
  /* 32px */
  --space-2xl: 3rem;
  /* 48px */
  --space-3xl: 4rem;
  /* 64px */
  --space-4xl: 6rem;
  /* 96px */

  /* ── Border Radius ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ── Shadows & Glows ── */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --glow-cyan: 0 0 15px rgba(0, 191, 255, 0.4), 0 0 30px rgba(0, 191, 255, 0.15);
  --glow-cyan-strong: 0 0 20px rgba(0, 191, 255, 0.6), 0 0 40px rgba(0, 191, 255, 0.25);
  --glow-gold: 0 0 10px rgba(200, 155, 60, 0.5), 0 0 25px rgba(200, 155, 60, 0.2);
  --glow-gold-strong: 0 0 15px rgba(229, 193, 88, 0.6), 0 0 35px rgba(229, 193, 88, 0.3);

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Z-Index Scale ── */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;

  /* ── Layout ── */
  --container-max: 1280px;
  --container-wide: 1440px;
  --nav-height: 72px;
}