.iptv-hero-48181b53 {
    background-color: #0b0b0b;
    padding: 80px 20px;
    font-family: sans-serif;
}
.iptv-hero-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}
.iptv-hero-col-left, .iptv-hero-col-right {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}
.iptv-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.badge {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    border-radius: 4px;
}
.badge-red { background-color: #FF0000; }
.badge-blue { background-color: #0000FF; }
.iptv-hero-title {
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 800;
}
.text-magenta { color: #E6007E; }
.text-blue { color: #0084FF; }
.iptv-hero-subhead {
    color: #cccccc;
    font-size: 18px;
    margin: 0 0 30px;
    line-height: 1.5;
}
.iptv-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.3s ease;
}
.btn:hover {
    opacity: 0.9;
}
.btn-gradient {
    background: linear-gradient(90deg, #0084FF, #E6007E);
    border: none;
}
.btn-outline {
    background-color: #222222;
    border: 1px solid rgba(255,255,255,0.2);
}
.iptv-video-wrapper {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.iptv-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: none;
}
@media (max-width: 768px) {
    .iptv-hero-container {
        flex-direction: column;
    }
    .iptv-hero-col-left, .iptv-hero-col-right {
        flex: 1 1 100%;
    }
    .iptv-hero-title {
        font-size: 32px;
    }
}