/* 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: #e0e0e0;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.netflix-subtitle {
    font-size: 1.1rem;
    color: #b3b3b3;
    margin-bottom: 30px;
}

.netflix-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.netflix-pdf-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(90deg, #e50914 0%, #ff4d4d 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 10px;
}

.netflix-pdf-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 77, 77, 0.6);
}

.netflix-pdf-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

@media (max-width: 767.98px) {
    .netflix-title {
        font-size: 2rem;
    }
    .netflix-pdf-link {
        max-width: 100%;
    }
}