.ott-movie-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    background-color: #000000;
    padding: 20px;
}

.ott-movie-card {
    background-color: #141314;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #262525;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ott-movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}

.ott-movie-poster-wrapper {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background-color: #0d0d0d;
}

.ott-movie-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ott-movie-card:hover .ott-movie-poster {
    transform: scale(1.05);
}

.ott-ribbon {
    position: absolute;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 2;
}

.ott-ribbon-trending {
    top: 10px;
    left: 10px;
    background-color: #E50914;
    color: #fff;
    transform: rotate(-5deg);
}

.ott-ribbon-type {
    bottom: 35px;
    right: 10px;
    background-color: #61CE70;
    color: #000;
}

.ott-meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #D1D0CF;
    z-index: 1;
}

.ott-movie-title {
    margin: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ott-movie-title a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ott-movie-title a:hover {
    color: #E50914;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .ott-movie-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .ott-movie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 10px;
    }
}
