/* ============================================================
   BADGES PANEL STYLES — J2ST.ICU VOID
   ============================================================ */

.badges-panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.panel-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.panel-title {
    font-size: 24px;
    font-weight: 900;
}

.panel-desc {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.badge-card {
    background: var(--bg-card);
    border: 1px solid var(--accent-border);
    border-radius: 32px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.badge-card:hover {
    background: var(--accent-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.badge-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: 0.4s;
}

.badge-card:hover::after {
    opacity: 1;
}

.badge-mask {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: var(--transition-snappy);
}

.badge-card:hover .badge-mask {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.06);
}

.badge-mask i img {
    width: 42px;
    height: 42px;
    filter: invert(1);
    opacity: 0.6;
}

.badge-card:hover .badge-mask i img {
    opacity: 1;
}

.badge-info {
    position: relative;
    z-index: 1;
}

.badge-name {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}

.badge-desc {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.5;
}

.badge-status {
    margin-top: auto;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.badge-card.unlocked .badge-status {
    background: rgba(0, 230, 118, 0.1);
    color: var(--success);
}

.badge-card.locked {
    opacity: 0.4;
    filter: grayscale(1);
}

.badge-card.locked:hover {
    opacity: 0.6;
}

@media (max-width: 1200px) {
    .badges-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .badges-grid { grid-template-columns: 1fr; }
}
