.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;
    }
}

.category-content {
    max-height: 200px;
    overflow-y: auto;
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    scrollbar-width: thin;
    scrollbar-color: #475569 #1e293b;
}

.category-content::-webkit-scrollbar {
    width: 8px;
}

.category-content::-webkit-scrollbar-track {
    background: #1e293b;
    border-radius: 4px;
}

.category-content::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 4px;
}

.category-content::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

.prose h2 {
    font-weight: 800;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.prose p {
    margin-bottom: 1rem;
}

.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-padding {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mobile-text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

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

    .mobile-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-height: 2.8rem;
    }

    .mobile-btn-sm {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}
