/* Series combo pack / quality resolution UI */

.combo-card {
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.combo-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.08);
    transform: translateY(-2px);
}

.combo-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #e5e7eb;
    margin-bottom: 8px;
}

.combo-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.combo-card-episode {
    font-size: 13px;
    font-weight: 800;
    color: #a78bfa;
}

.combo-lang-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    background: rgba(239, 68, 68, 0.85);
    color: #fff;
}

.combo-format-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    background: rgba(245, 158, 11, 0.85);
    color: #fff;
}

.combo-card-specs {
    font-size: 12px;
    font-weight: 600;
    color: rgba(167, 139, 250, 0.7);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.combo-card-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.combo-dl-btn {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8b5cf6, #0ea5e9);
    background-size: 200% 200%;
    animation: comboBtnGrad 4s ease infinite;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
    transition: all 0.25s;
}

.combo-dl-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45);
}

.combo-watch-btn {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ef4444, #f97316, #eab308);
    background-size: 200% 200%;
    animation: comboBtnGrad 4s ease infinite;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
    transition: all 0.25s;
}

.combo-watch-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.45);
}

@keyframes comboBtnGrad {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.combo-quality-panel {
    margin: 12px 0;
    padding: 14px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.combo-quality-header {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.combo-quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.combo-res-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
}

.combo-res-btn:hover {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.15);
}

.combo-res-size {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.7;
}

.combo-res-default {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.3);
}

.combo-res-480 {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    box-shadow: 0 3px 10px rgba(20, 184, 166, 0.3);
}

.combo-res-720 {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    box-shadow: 0 3px 10px rgba(6, 182, 212, 0.3);
}

.combo-res-1080 {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
}

.combo-res-4k {
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 3px 10px rgba(239, 68, 68, 0.3);
}
