html,
body{
    overflow-x:hidden !important;
    width:100%;
    max-width:100%;
    overscroll-behavior-x:none;
}

main{
    overflow-x:hidden;
}

.container,
.container-fluid,
.row{
    max-width:100%;
}

.hs-hero-section_ply{
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.hs-hero-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.6) 100%
    );
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

.hs-hero-content{
    max-width: 600px;
    color: #fff;
    z-index: 2;
}

.hs-hero-content h1{
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hs-hero-content p{
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: .9;
}

.plyr{
    width:100%;
    height:100%;
}

.plyr--fullscreen-active{
    width:100vw !important;
    height:100vh !important;
}

.plyr--fullscreen-active .plyr__controls{
    display:flex !important;
    opacity:1 !important;
    visibility:visible !important;
    z-index:999999 !important;
}

.plyr--fullscreen-active video{
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
}

.dropdown-menu {
    max-height: 350px;   /* reduce height */
    overflow-y: auto;    /* vertical scrollbar */
    overflow-x: hidden;
}

/* Custom scrollbar */
.dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.subscription-card {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

.subscription-card .card-body {
    padding: 25px;
}

.subscription-card .card-header {
    padding: 20px;
}

.subscription-card .btn {
    border-radius: 10px;
    font-weight: 600;
}

.hs-main{
    min-height:100vh;
}

.card{
    transition:0.3s ease;
}

.card:hover{
    transform:translateY(-3px);
}

.form-control{
    padding:12px 15px;
}

.input-group-text{
    background:#fff;
}

.progress{
    border-radius:20px;
}

.progress-bar{
    transition:all .3s ease;
}


.about-hero{
    min-height: 500px;
    background:
        linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75));
    background-size: cover;
    background-position: center;
}

.card{
    transition: all .3s ease;
}

.card:hover{
    transform: translateY(-8px);
}

@media(max-width:768px){
    .about-hero{
        min-height: 380px;
        padding: 100px 0 60px;
    }

    .about-hero h1{
        font-size: 2.3rem;
    }
}
.privacy-page{
    background:#020617;
    color:#fff;
    padding-top:90px;
    min-height:100vh;
}

/* Hero */
.privacy-hero{
    padding:80px 0;
    background:
        linear-gradient(rgba(2,6,23,.85), rgba(2,6,23,.95)),
        radial-gradient(circle at center, #dc3545 0%, transparent 60%);
}

.privacy-hero h1{
    font-size:3rem;
}

/* Cards */
.privacy-card{
    background:#0f172a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px;
    margin-bottom:25px;
    transition:.3s ease;
}

.privacy-card:hover{
    transform:translateY(-5px);
    border-color:rgba(220,53,69,.4);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.privacy-card h3{
    color:#fff;
    font-size:1.3rem;
    margin-bottom:15px;
    font-weight:700;
}

.privacy-card p{
    color:#b8b8b8;
    line-height:1.8;
    margin-bottom:0;
}

/* Mobile */
@media(max-width:768px){

    .privacy-page{
        padding-top:80px;
    }

    .privacy-hero{
        padding:60px 0;
    }

    .privacy-hero h1{
        font-size:2.2rem;
    }

    .privacy-card{
        padding:20px;
    }
}

.terms-page{
    background:#020617;
    color:#fff;
    min-height:100vh;
    padding-top:90px;
}

/* Hero Section */
.terms-hero{
    padding:90px 0;
    background:
        linear-gradient(rgba(2,6,23,.85), rgba(2,6,23,.95)),
        radial-gradient(circle at center, rgba(220,53,69,.35), transparent 65%);
}

.terms-hero h1{
    font-size:3rem;
    font-weight:700;
}

/* Cards */
.terms-card{
    background:#0f172a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px;
    margin-bottom:25px;
    transition:all .3s ease;
}

.terms-card:hover{
    transform:translateY(-5px);
    border-color:rgba(220,53,69,.4);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.terms-card h3{
    font-size:1.35rem;
    font-weight:700;
    margin-bottom:15px;
    color:#ffffff;
}

.terms-card p{
    color:#b8b8b8;
    line-height:1.8;
    margin-bottom:0;
}

/* Mobile */
@media (max-width:768px){

    .terms-page{
        padding-top:80px;
    }

    .terms-hero{
        padding:60px 0;
    }

    .terms-hero h1{
        font-size:2.2rem;
    }

    .terms-card{
        padding:22px;
    }
}

.careers-page{
    background:#020617;
    color:#fff;
    min-height:100vh;
    padding-top:90px;
}

.careers-hero{
    padding:100px 0;
    background:
    linear-gradient(rgba(2,6,23,.88),rgba(2,6,23,.95)),
    radial-gradient(circle at center, rgba(220,53,69,.35), transparent 70%);
}

.career-card{
    background:#0f172a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px;
    height:100%;
    transition:.3s;
}

.career-card:hover{
    transform:translateY(-8px);
    border-color:rgba(220,53,69,.5);
}

.icon-box{
    width:70px;
    height:70px;
    background:rgba(220,53,69,.15);
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.icon-box i{
    font-size:28px;
    color:#dc3545;
}

.career-card p{
    color:#b8b8b8;
}

.benefits-section{
    background:#0b1220;
}

.benefit-box{
    background:#0f172a;
    padding:25px;
    border-radius:15px;
    text-align:center;
    height:100%;
}

.benefit-box i{
    font-size:30px;
    color:#dc3545;
    margin-bottom:15px;
}

.job-card{
    background:#0f172a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:25px;
    margin-bottom:20px;
    transition:.3s;
}

.job-card:hover{
    border-color:rgba(220,53,69,.5);
}

.job-card h4{
    margin-bottom:8px;
}

.job-card p{
    color:#b8b8b8;
    margin-bottom:0;
}

.career-cta{
    padding:80px 0;
    background:#111827;
}

@media(max-width:768px){

    .careers-page{
        padding-top:80px;
    }

    .careers-hero{
        padding:70px 0;
    }

    .careers-hero h1{
        font-size:2.3rem;
    }

    .job-card .text-lg-end{
        margin-top:15px;
    }
}

#video-loader{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.65);

    z-index:9999;

    display:none;

}

.loader-spinner{

    width:60px;

    height:60px;

    border-radius:50%;

    border:5px solid rgba(255,255,255,.2);

    border-top:5px solid #E50914;

    animation:spin 1s linear infinite;

}

.loader-text{

    color:#fff;

    margin-top:20px;

    font-size:18px;

}

@keyframes spin{

from{

transform:rotate(0deg);

}

to{

transform:rotate(360deg);

}

}

#network-message{

position:absolute;

bottom:20px;

left:50%;

transform:translateX(-50%);

background:#d32f2f;

color:#fff;

padding:12px 25px;

display:none;

border-radius:6px;

z-index:9999;

}

.plyr{
    border-radius:12px;
}

#qualityBadge{

    position:absolute;

    top:15px;

    right:15px;

    background:rgba(0,0,0,.6);

    color:#fff;

    padding:4px 10px;

    border-radius:20px;

    font-size:13px;

    z-index:1000;

}

#seek-message{

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

padding:12px 30px;

background:rgba(0,0,0,.7);

color:#fff;

border-radius:25px;

display:none;

z-index:9999;

font-size:22px;

}

.resume-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.resume-card{

    width:340px;

    background:#1f1f1f;

    color:#fff;

    padding:25px;

    border-radius:12px;

    text-align:center;

}

.resume-buttons{

    display:flex;

    gap:15px;

    justify-content:center;

    margin-top:20px;

}

#video-loader{

    position:absolute;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.45);

    z-index:9999;

}

#network-message{

    position:absolute;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    display:none;

    padding:8px 20px;

    border-radius:30px;

    background:#dc3545;

    color:#fff;

    z-index:10000;

}

#seek-message{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    background:rgba(0,0,0,.75);

    color:#fff;

    padding:14px 22px;

    border-radius:12px;

    display:none;

    z-index:99999;

    font-size:18px;

    font-weight:600;

    pointer-events:none;

}

#videoContainer:fullscreen {
    width: 100vw;
    height: 100vh;
    background: #000;
}

#videoContainer:fullscreen video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.player-close-overlay{

    position:absolute;

    top:15px;

    left:15px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(0,0,0,.55);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:1000;

    transition:.3s;
}

.player-close-overlay:hover{

    background:rgba(0,0,0,.85);

}

.plyr--hide-controls .player-close-overlay{
    opacity:0;
    pointer-events:none;
}

.plyr:not(.plyr--hide-controls) .player-close-overlay{
    opacity:1;
}

.policy-header{
    background:linear-gradient(135deg,#0d6efd,#6610f2);
    color:#fff;
    padding:70px 0;
}

.policy-card{
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    padding:40px;
    margin-top:-50px;
    margin-bottom:40px;
}

.policy-card h2{
    color:#0d6efd;
    margin-top:35px;
    margin-bottom:15px;
    font-size:26px;
}

.policy-card p{
    color:#555;
    line-height:1.8;
}

.policy-card ul{
    padding-left:20px;
}

.policy-card li{
    margin-bottom:10px;
    color:#555;
}

.badge-custom{
    background:#eaf2ff;
    color:#0d6efd;
    font-weight:600;
    padding:8px 15px;
    border-radius:30px;
}

.contact-box{
    background:#f8f9fa;
    border-left:5px solid #0d6efd;
    padding:25px;
    border-radius:8px;
}

.footer{
    background:#111827;
    color:#bbb;
    padding:20px;
}

@media(max-width:768px){

.policy-card{
padding:25px;
}

.policy-header{
padding:50px 0;
}

.policy-card h2{
font-size:22px;
}

}