/* Series single page: purple accents (scoped to .single-series-page) */

.single-series-page .poster-glow-wrap:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.35), 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 30px rgba(139, 92, 246, 0.15);
}

.single-series-page .server-tab-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: #fff;
}

.single-series-page .active-server {
    background-color: #7c3aed !important;
    border-color: #7c3aed !important;
    color: white !important;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.45);
}

.single-series-page .related-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 16px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.35);
}

.single-series-page .rc-badge {
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.single-series-page .section-divider .bar {
    background: linear-gradient(to bottom, #8b5cf6, #ec4899);
}

/* Trending badge on poster (series) */
.trending-poster-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(249, 115, 22, 0.9));
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
    animation: trendPulse 2s ease-in-out infinite;
}

@keyframes trendPulse {
    0%,
    100% {
        box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.7), 0 0 30px rgba(249, 115, 22, 0.3);
    }
}
