/* =====================================================
   VARIABLES GLOBALES
   Colores, tipografía, radios, sombras y transiciones
===================================================== */

:root {
  --bg: #0B1020;
  --bg-soft: #121A2B;
  --panel: #162033;
  --panel-2: #1B263B;

  --text: #F8FAFC;
  --text-soft: #CBD5E1;
  --muted: #94A3B8;

  --gold: #D4AF37;
  --gold-soft: #E6C76A;
  --gold-dark: #A67C1B;

  --border: rgba(255, 255, 255, 0.08);

  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #38BDF8;

  --radius: 18px;
  --radius-sm: 12px;

  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.35);

  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --transition: all 0.25s ease;
}