/* ==========================================
   🏆 [djjc_ui/style-ranking.css] 시즌 통합 랭킹 전용 스타일
   ========================================== */

.ranking-tabs { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 6px; 
    background: rgba(0, 0, 0, 0.6); 
    padding: 8px; 
    border-radius: 12px; 
    margin-bottom: 12px; 
}

.rank-tab-btn { 
    background: rgba(255, 255, 255, 0.05); 
    color: #888; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 8px 0; 
    font-family: 'Galmuri9', sans-serif; 
    font-size: 10px; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: all 0.2s; 
}

.rank-tab-btn.active { 
    background: linear-gradient(135deg, #14F195, #0ea5e9); 
    color: #000; 
    font-weight: bold; 
    border: 1px solid #fff; 
    transform: scale(1.05); 
}

#tab-burn.active { 
    background: linear-gradient(135deg, #ff3b30, #ff0000); 
    color: #fff; 
}

#tab-lp.active { 
    background: linear-gradient(135deg, #0ea5e9, #0055ff); 
    color: #fff; 
}

.ranking-list-container { 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
    font-family: 'Galmuri9', sans-serif; 
}