.badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

/* Manufacturer */
.badge-manufacturer {
    background: rgba(94, 162, 255, 0.14);
    border: 1px solid rgba(94, 162, 255, 0.32);
    color: #8fc8ff;
}

/* Class */
.badge-class {
    background: rgba(94, 162, 255, 0.08);
    border: 1px solid rgba(94, 162, 255, 0.22);
    color: #9fcfff;
}

/* Meta (Drivetrain etc.) */
.badge-meta {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #cfd6e6;
}

/* Fallback */
.badge-neutral {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #cfd6e6;
}

.gta6-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gta6-pill:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.14);
}

/* Game (GTA Online / GTA 6) */
.badge-game {
    background: rgba(181, 56, 183, 0.14);
    border: 1px solid rgba(181, 56, 183, 0.32);
    color: #f0a8ff;
}

/* Price Highlight */
.badge-price {
    background: rgba(245, 158, 11, 0.14);
    border: 1px solid rgba(245, 158, 11, 0.34);
    color: #facc7b;
}

/* Features (HSW, Imani etc.) */
.badge-feature {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.32);
    color: #8ee6a8;
}

/* =========================================
   CLICKABLE BADGES (Links)
========================================= */

a.badge {
    transition: all 0.18s ease;
}

/* genereller Hover */
a.badge:hover {
    transform: translateY(-1px);
}

/* =========================================
   COLOR HOVER STATES
========================================= */

/* Manufacturer */
a.badge-manufacturer:hover {
    background: rgba(94, 162, 255, 0.22);
    border-color: rgba(94, 162, 255, 0.55);
    color: #b7daff;
}

/* Class */
a.badge-class:hover {
    background: rgba(94, 162, 255, 0.16);
    border-color: rgba(94, 162, 255, 0.45);
    color: #cfe6ff;
}

/* Game */
a.badge-game:hover {
    background: rgba(181, 56, 183, 0.22);
    border-color: rgba(181, 56, 183, 0.55);
    color: #f3baff;
}

/* Price */
a.badge-price:hover {
    background: rgba(245, 158, 11, 0.22);
    border-color: rgba(245, 158, 11, 0.55);
    color: #ffd27a;
}

/* Feature */
.badge-feature:hover {
    background: rgba(34, 197, 94, 0.22);
    border-color: rgba(34, 197, 94, 0.55);
    color: #b6f3c7;
}

.badge {
    transition: all 0.18s ease;
}

.badge:hover {
    transform: translateY(-1px);
}