/* Movie archive specific (inherits base) */
.mvut-archive--movie .mvut-topbar { 
    border-color: #2b3655; 
}

.mvut-archive--movie .mvut-chip { 
    background: #151a28; 
}

/* Batch-style year overlay */
.mvut-movie-year--batch {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--mvut-primary);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Container positioning */
.mvut-card--movie .movie-poster {
    position: relative;
    overflow: hidden;
}

.mvut-thumb {
    position: relative;
    display: block;
}

/* Hover effects */
.mvut-card--movie:hover .mvut-movie-year--batch {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Light theme compatibility */
[data-theme="light"] .mvut-movie-year--batch {
    background: var(--mvut-primary);
    color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .mvut-movie-year--batch {
        bottom: 6px;
        right: 6px;
        padding: 3px 8px;
        font-size: 9px;
    }
}

/* Additional movie card styles */
.mvut-card--movie {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mvut-card--movie:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
