/* All-in-One Streamer - Additional Styles for Movies & TV Shows */

/* Content Type Badges */
.content-type-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
    color: #fff;
}

/* Spotlight-specific badge positioning */
.deslide-cover-img .content-type-badge {
    top: 10px;
    left: 10px;
    bottom: auto;
    right: auto;
    padding: 6px 12px;
    font-size: 11px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.badge-anime {
    background: linear-gradient(135deg, #aa55ff, #9544ee);
}

.badge-movie {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.badge-tv {
    background: linear-gradient(135deg, #3db4f2, #2ea3e0);
}

/* Rating Badge for Movies/TV */
.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.85);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

.rating-badge i {
    color: #ffd700;
}

/* Section Divider */
.section-divider {
    margin: 60px 0;
    text-align: center;
}

.separator-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(170, 85, 255, 0.3), transparent);
}

/* Enhanced Section Headers */
.block_area-header {
    border-bottom-color: rgba(170, 85, 255, 0.3);
}

.block_area-header .cat-heading i {
    color: #aa55ff;
}

/* Loading States */
.loading-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.loading-placeholder i {
    font-size: 3rem;
    color: #aa55ff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-placeholder p {
    margin-top: 20px;
    font-size: 1.1rem;
}

/* Error States */
.error-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #ff6b6b;
}

.error-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.empty-state i {
    font-size: 3rem;
    color: #666;
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-divider {
        margin: 40px 0;
    }
    
    .content-type-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .rating-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
}
