body {
    background-color: #141414;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

.navbar {
    background-color: transparent !important;
    background-image: linear-gradient(to bottom,rgba(0,0,0,.7) 10%,rgba(0,0,0,0));
    transition: background-color 0.4s ease;
}

.navbar.scrolled {
    background-color: #141414 !important;
}

.product-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    z-index: 10;
    position: relative;
}

.product-cover {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.btn-netflix {
    background-color: #E50914;
    color: white;
    font-weight: bold;
    border-radius: 4px;
}

.btn-netflix:hover {
    background-color: #c10812;
    color: white;
}

.hero-section {
    position: relative;
    height: 70vh;
    background-image: linear-gradient(to right, #141414 10%, transparent 80%),
                      linear-gradient(to top, #141414 5%, transparent 40%),
                      url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.row-title {
    font-size: 1.4vw;
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: 10px;
}
