.hero {
    height: 85vh;

    background:
        linear-gradient(
            to top,
            #111 5%,
            transparent 60%
        ),
        linear-gradient(
            to right,
            rgba(0,0,0,0.9),
            transparent
        );

    background-color: #111;

    display: flex;
    align-items: center;
    padding: 60px;
}


.hero-content {
    max-width: 600px;
}


.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}


.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;

    color: #ddd;
}


.buttons {
    display: flex;
    gap: 15px;
}


.buttons button {

    border: none;

    padding:
        14px 30px;

    border-radius: 5px;

    font-size: 1rem;

    cursor: pointer;

    transition: 0.2s;
}


.play {
    background: white;
    color: black;
}


.play:hover {
    background: #ddd;
}


.info {
    background: rgba(109, 109, 110, 0.7);
    color: white;
}


.info:hover {
    background: rgba(109, 109, 110, 0.5);
}


.row {

    padding:
        10px 50px 40px;

}


.row h2 {

    margin-bottom: 15px;

    font-size: 1.5rem;

}


.cards {

    display: flex;

    gap: 12px;

    overflow-x: auto;

    scrollbar-width: none;

}


.cards::-webkit-scrollbar {

    display: none;

}


.card {

    position: relative;

    min-width: 180px;

    height: 270px;

    border-radius: 10px;

    overflow: hidden;

    cursor: pointer;

    transition: 0.3s;

}


.card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.card:hover {

    transform: scale(1.1);

    z-index: 100;

}


.card-info {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 15px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.95)
        );


    opacity: 0;

    transition: 0.3s;

}


.card:hover .card-info {

    opacity: 1;

}


.card-info h3 {

    margin-bottom: 10px;

    font-size: 16px;

}


.card-info button {

    background: #e50914;

    color: white;

    border: none;

    padding: 8px 14px;

    border-radius: 5px;

    cursor: pointer;

}


.card:hover {

    transform: scale(1.08);

    z-index: 10;

}