/* ====== HERO MOVIE ONLY TV ====== */
.onlytv-hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.3)),
                url('https://image.tmdb.org/t/p/original/4ssDuvEDkSArWEdyBl2X5EHvYKU.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 30px 20px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.onlytv-card {
    background: rgba(15, 20, 30, 0.92);
    border-radius: 16px;
    padding: 24px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.onlytv-badge {
    display: inline-block;
    background: #1f2937;
    color: #ffffff;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.onlytv-title {
    font-size: 38px;
    font-weight: bold;
    margin: 10px 0 14px;
}

.onlytv-info {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
}

.onlytv-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 18px 0;
}

.onlytv-video {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
}

.onlytv-video iframe {
    width: 100%;
    height: 200px;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .onlytv-title {
        font-size: 30px;
    }

    .onlytv-video iframe {
        height: 180px;
    }
}