.movie-card {
    transition: all 0.3s ease;
    transform-origin: center bottom;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

.vod-badge {
    font-size: 10px;
}

@media (min-width: 768px) {
    .vod-badge {
        font-size: 12px;
    }
}

.poster-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.poster-container:hover {
    transform: translateY(-5px);
}

.poster-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

.pagination-btn {
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(.disabled) {
    background-color: #f43f5e;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .mobile-text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .mobile-text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}
