/* ============================================
   FLOXFLIX - Discontinued Series Badge Styles
   ============================================ */

.discontinued-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(239, 68, 68, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    border: 1px solid rgba(220, 38, 38, 0.5);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.discontinued-badge svg {
    stroke: white;
    flex-shrink: 0;
}

.discontinued-badge span {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.series-card.discontinued {
    opacity: 0.8;
    position: relative;
}

.series-card.discontinued:hover {
    opacity: 1;
}

.series-card.discontinued::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), transparent);
    pointer-events: none;
    border-radius: 12px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .discontinued-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 0.6rem;
    }
    
    .discontinued-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .discontinued-badge span {
        font-size: 0.75rem;
    }
}
