/* ========== PALETA DE COLORES ========== */
:root {
    --bg-main: #000000;
    /* fondo general negro puro */
    --bg-alt: #080808;
    /* secciones alternas negro neutro */
    --bg-card: #111111;
    /* tarjetas/bloques oscuros */
    --bg-soft: #161616;

    --accent-red: #d7263d;
    /* rojo intenso biker */
    --accent-red-soft: #a91c30;
    /* rojo más oscuro */
    --accent-blue: #1446a0;
    /* azul profundo */
    --accent-blue-soft: #0f346f;
    /* azul más oscuro */

    --text-main: #f5f5f5;
    --text-muted: #b3b7c5;
    --border-soft: rgba(255, 255, 255, 0.06);
}