
body {
    background-color: black;
}
.netflix-row {
    padding: 20px;
    background-color: black;
    color: white;
}

.row-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}


.movie-container {
    display: flex;
    gap: 10px;
    overflow-x: auto; 
    padding: 20px 0;
    scroll-behavior: smooth;
}

.movie-container::-webkit-scrollbar {
    display: none;
}


.movie-card {
    position: relative;
    min-width: 200px; 
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease; 
    border-radius: 8px;
    overflow: hidden;
}

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.movie-card:hover {
    transform: scale(1.1); 
    z-index: 10; 
}


.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0; 
    transition: opacity 0.3s;
}

.movie-card:hover .card-overlay {
    opacity: 1; 
}

.play-btn, .add-btn {
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
}

.add-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid white;
}