/* ============================================================
   HK PADEL · Tokens de diseño — ÚNICA fuente de la paleta.
   Lo cargan las 5 páginas (app, admin, index, torneo, visor).
   Cambiar la marca (color, radios, tipografía) se hace SOLO acá.

   Hay alias para nombres viejos que quedaron distintos entre
   archivos (--green2/--green-2, --chip/--accent, --red/--danger)
   para no tener que tocar cada regla: apuntan al mismo valor.
   ============================================================ */
:root{
  /* Colores */
  --bg:#0a0a0c;          /* fondo base negro neutro */
  --bg2:#121214;         /* fondo secundario */
  --panel:#17171a;       /* tarjetas */
  --panel2:#1e1e22;      /* tarjetas elevadas */
  --line:#2a2a30;        /* bordes */
  --navy:#131316;

  --txt:#f3f3f1;         /* texto principal */
  --muted:#9a9aa3;       /* texto secundario */
  --dim:#6b6b74;

  --green:#b4e21f;       /* lima marca */
  --green-rgb:180,226,31;/* para rgba(var(--green-rgb), a) */
  --green2:#9fce18;      /* verde más oscuro */
  --green-2:var(--green2);
  --green-ink:#111b04;   /* texto sobre verde */

  --accent:#38bdf8;      /* azul informativo */
  --chip:var(--accent);
  --danger:#ef4444;
  --red:var(--danger);
  --gold:#fbbf24;

  /* Efectos / medidas */
  --radius:16px;
  --radius-lg:24px;
  --radius-pill:999px;
  --shadow:0 20px 50px -20px rgba(0,0,0,.7);
  --shadow-green:0 14px 40px -12px rgba(var(--green-rgb),.45);
  --ring:0 0 0 1px var(--line);
  --maxw:1160px;

  /* Tipografía */
  --font:'Sora','Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --font-display:'Sora',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --font-body:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}
