/* Estilo base Netflix */
.netflix-style {
    background-color: #141414;
    color: #e0e0e0;
    padding: 40px 20px;
    min-height: 100vh;
}

.netflix-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e50914;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.netflix-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.netflix-card {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
}

.netflix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

.netflix-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.netflix-meta {
    font-size: 0.9rem;
    color: #b3b3b3;
    margin-bottom: 10px;
}

.netflix-author {
    color: #fff;
    font-weight: 500;
}

.netflix-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.netflix-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #e50914 0%, #ff4d4d 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.netflix-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.5);
}

.release-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
}

@media (max-width: 767.98px) {
    .netflix-title {
        font-size: 2rem;
    }
    .netflix-card {
        margin: 10px;
    }
}