/* ========== Badge Component (Modular) ========== */

/* Force Pill Shape Globally */
.badge,
.badge.rounded-pill,
.ar-card .badge {
    border-radius: 50rem !important;
    padding-left: 0.75em !important;
    padding-right: 0.75em !important;
    border: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Console/Platform Badges (Dark Mode Default) */
.badge.bg-dark {
    background-color: #212529 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Difficulty Colors (Traffic Light System) */
.badge.bg-success {
    background-color: #198754 !important;
    color: #fff !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #000 !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
    color: #fff !important;
}

/* Nintendo Blue (Reviews) */
.badge.bg-primary {
    background-color: #0d6efd !important;
}

/* Tutorial Cyan */
.badge.bg-info {
    background-color: #0dcaf0 !important;
    color: #000 !important;
}

/* Light Mode Overrides */
[data-theme="light"] .badge.bg-dark {
    background-color: #e9ecef !important;
    color: #212529 !important;
    border: 1px solid #ced4da !important;
}