@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#070707;
    color:#fff;
    overflow-x:hidden;
}

.hero{
    min-height:100vh;
    padding:0 8%;
    background:
    radial-gradient(circle at top right, rgba(255,193,7,.15), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,193,7,.08), transparent 25%),
    #070707;
}

.navbar{
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#fff;
    transition:.3s;
}

.logo:hover{
    transform:scale(1.03);
}

.logo:hover span{
    color:#FFC107;
}

.logo img{
    width:42px;
}

.logo span{
    font-size:1.4rem;
    font-weight:700;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#cfcfcf;
    transition:.3s;
}

.nav-links a:hover{
    color:#FFC107;
}

.nav-btn{
    background:#FFC107;
    color:#111;
    text-decoration:none;
    padding:12px 25px;
    border-radius:999px;
    font-weight:700;
}

.menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
    color:#fff;
}

.hero-content{
    min-height:calc(100vh - 90px);
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

.badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,193,7,.12);
    color:#FFC107;
    border:1px solid rgba(255,193,7,.25);
    margin-bottom:20px;
}

.hero-text h1{
    font-size:4rem;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-text h1 span{
    color:#FFC107;
}

.hero-text p{
    color:#a5a5a5;
    line-height:1.8;
    max-width:600px;
    font-size:1.05rem;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
}

.primary-btn{
    background:#FFC107;
    color:#111;
    text-decoration:none;
    padding:15px 30px;
    border-radius:999px;
    font-weight:700;
}

.secondary-btn{
    border:1px solid #333;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:999px;
}

.stats{
    display:flex;
    gap:25px;
    margin-top:50px;
}

.stat-box{
    background:#111;
    border:1px solid #222;
    padding:18px 25px;
    border-radius:18px;
}

.stat-box h3{
    color:#FFC107;
}

.stat-box p{
    color:#999;
    font-size:.9rem;
}

.hero-preview{
    display:flex;
    justify-content:center;
}

.preview-card{
    width:100%;
    max-width:520px;
    background:#111;
    border-radius:24px;
    border:1px solid #222;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
}

.preview-header{
    padding:18px;
    border-bottom:1px solid #222;
    display:flex;
    align-items:center;
    gap:10px;
}

.live-dot,.dot{
    width:10px;
    height:10px;
    background:#00ff66;
    border-radius:50%;
}

.preview-card video{
    width:100%;
    height:320px;
    display:block;
    background:#000;
}

.preview-footer{
    padding:18px;
    display:flex;
    justify-content:space-between;
    color:#FFC107;
}

.live-preview{
    padding:120px 8%;
    background:#050505;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#FFC107;
}

.section-title h2{
    margin-top:10px;
    font-size:3rem;
}

.section-title p{
    color:#888;
    margin-top:15px;
}

.preview-box{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:280px 1fr;
    background:#101010;
    border:1px solid #222;
    border-radius:25px;
    overflow:hidden;
}

.channel-sidebar{
    background:#0b0b0b;
    border-right:1px solid #222;
    display:flex;
    flex-direction:column;
}

.sidebar-title{
    padding:20px;
    font-weight:700;
    border-bottom:1px solid #222;
}

.channel{
    width:100%;
    padding:18px 20px;
    color:#aaa;
    cursor:pointer;
    transition:.3s;
    background:none;
    border:none;
    text-align:left;
}

.channel:hover{
    background:#171717;
}

.channel.active{
    background:#1a1a1a;
    color:#FFC107;
    border-left:3px solid #FFC107;
}

.player-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid #222;
}

.live-status{
    display:flex;
    align-items:center;
    gap:10px;
}

.quality{
    background:#FFC107;
    color:#111;
    padding:6px 15px;
    border-radius:50px;
    font-weight:700;
}

.player-screen video{
    width:100%;
    height:500px;
    display:block;
    background:#000;
}

.player-footer{
    display:flex;
    justify-content:space-around;
    padding:20px;
    background:#0d0d0d;
    color:#aaa;
}

.online{
    color:#00ff66;
}

/* DEVICE COMPATIBILITY */

.devices{
    padding:120px 8%;
    background:#070707;
}

.devices-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    max-width:1300px;
    margin:auto;
}

.device-card{
    background:#111;
    border:1px solid #222;
    border-radius:24px;
    padding:35px;
    text-align:center;
    transition:.35s;
}

.device-card:hover{
    transform:translateY(-8px);
    border-color:#FFC107;
    box-shadow:0 20px 50px rgba(255,193,7,.08);
}

.device-icon{
    font-size:3rem;
    margin-bottom:20px;
}

.device-card h3{
    margin-bottom:12px;
    font-size:1.3rem;
}

.device-card p{
    color:#9a9a9a;
    line-height:1.7;
}

.devices-bottom{
    max-width:1200px;
    margin:60px auto 0;
}

.compatibility-banner{
    text-align:center;
    background:linear-gradient(
        135deg,
        #111,
        #181818
    );

    border:1px solid #222;
    border-radius:30px;
    padding:50px;
}

.compatibility-banner h3{
    font-size:2rem;
    margin-bottom:15px;
}

.compatibility-banner p{
    color:#999;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.device-btn{
    display:inline-block;
    margin-top:25px;

    background:#FFC107;
    color:#111;

    text-decoration:none;
    padding:15px 35px;
    border-radius:999px;

    font-weight:700;
}


/* CHANNELS PAGE */

.channels-hero{
    min-height:70vh;
}

.channels-header{
    max-width:900px;
    margin:auto;
    text-align:center;
    padding:100px 20px;
}

.channels-header h1{
    font-size:4.5rem;
    line-height:1.1;
    margin:20px 0;
}

.channels-header h1 span{
    color:#FFC107;
}

.channels-header p{
    color:#999;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* CATEGORY SECTION */

.featured-categories{
    padding:120px 8%;
    background:#050505;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.category-card{
    position:relative;
    overflow:hidden;

    min-height:260px;

    border-radius:25px;

    padding:35px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    background:#111;

    border:1px solid #222;

    transition:.4s ease;
}

.category-card:hover{
    transform:translateY(-10px);
    border-color:#FFC107;
}

.category-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(255,193,7,.15),
        transparent 60%
    );

    opacity:.8;
}

.category-card h3{
    position:relative;
    z-index:2;

    font-size:1.8rem;
    margin-bottom:10px;
}

.category-card p{
    position:relative;
    z-index:2;

    color:#aaa;
    margin-bottom:20px;
}

.category-card span{
    position:relative;
    z-index:2;

    color:#FFC107;
    font-weight:700;
}

/* SPECIAL GLOW */

.sports:hover{
    box-shadow:0 0 40px rgba(255,193,7,.15);
}

.movies:hover{
    box-shadow:0 0 40px rgba(255,193,7,.15);
}

.news:hover{
    box-shadow:0 0 40px rgba(255,193,7,.15);
}

.kids:hover{
    box-shadow:0 0 40px rgba(255,193,7,.15);
}

.entertainment:hover{
    box-shadow:0 0 40px rgba(255,193,7,.15);
}

.international:hover{
    box-shadow:0 0 40px rgba(255,193,7,.15);
}

/* STATS */

.channel-stats{
    padding:80px 8% 120px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

    background:#050505;
}

.stat-card{
    background:#111;
    border:1px solid #222;
    border-radius:20px;

    padding:30px;

    text-align:center;
}

.stat-card h3{
    color:#FFC107;
    font-size:2rem;
    margin-bottom:10px;
}

.stat-card p{
    color:#999;
}

/* MOBILE */

@media(max-width:992px){

    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .channel-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .channels-header h1{
        font-size:3rem;
    }

}

@media(max-width:576px){

    .category-grid{
        grid-template-columns:1fr;
    }

    .channel-stats{
        grid-template-columns:1fr;
    }

    .channels-header h1{
        font-size:2.3rem;
    }

}


.pricing-hero{
    min-height:65vh;
}

.pricing-header{
    text-align:center;
    max-width:900px;
    margin:auto;
    padding:100px 20px;
}

.pricing-header h1{
    font-size:4rem;
    margin:20px 0;
}

.pricing-header h1 span{
    color:#FFC107;
}

.pricing-header p{
    color:#999;
    line-height:1.8;
}

.pricing-section{
    padding:120px 8%;
    background:#050505;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.price-card{
    background:#111;
    border:1px solid #222;
    border-radius:25px;
    padding:40px 30px;
    position:relative;
    transition:.3s;
}

.price-card:hover{
    transform:translateY(-8px);
    border-color:#FFC107;
}

.featured{
    border-color:#FFC107;
    box-shadow:0 0 40px rgba(255,193,7,.15);
}

.popular{
    position:absolute;
    top:15px;
    right:15px;

    background:#FFC107;
    color:#111;

    font-size:12px;
    font-weight:700;

    padding:8px 12px;
    border-radius:999px;
}

.plan-name{
    color:#FFC107;
    margin-bottom:15px;
    font-weight:700;
}

.price-card h2{
    font-size:3rem;
    margin-bottom:25px;
}

.price-card ul{
    list-style:none;
    margin-bottom:30px;
}

.price-card li{
    color:#aaa;
    padding:10px 0;
    border-bottom:1px solid #1d1d1d;
}

.plan-btn{
    display:block;
    text-align:center;

    background:#FFC107;
    color:#111;

    text-decoration:none;

    padding:15px;
    border-radius:50px;

    font-weight:700;
}

.active-link{
    color:#FFC107 !important;
}

/* MOBILE NAV */

.menu-toggle{
    display:none;
}

@media(max-width:992px){

    .menu-toggle{
        display:block;
        font-size:32px;
        color:#fff;
        cursor:pointer;
    }

    .nav-btn{
        display:none;
    }

    .nav-links{
        position:absolute;
        top:90px;
        left:0;
        width:100%;

        background:#111;

        flex-direction:column;

        max-height:0;
        overflow:hidden;

        transition:.3s;
    }

    .nav-links.active{
        max-height:500px;
    }

    .nav-links li{
        text-align:center;
        padding:20px;
        border-bottom:1px solid #222;
    }

    .pricing-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .pricing-header h1{
        font-size:3rem;
    }
}

@media(max-width:576px){

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .pricing-header h1{
        font-size:2.3rem;
    }

    .pricing-section{
        padding:80px 20px;
    }
}


.faq-hero{
    min-height:60vh;
}

.faq-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    padding:100px 20px;
}

.faq-header h1{
    font-size:4rem;
    margin:20px 0;
}

.faq-header h1 span{
    color:#FFC107;
}

.faq-header p{
    color:#999;
    line-height:1.8;
}

/* FAQ */

.faq-section{
    padding:120px 8%;
    background:#050505;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#111;
    border:1px solid #222;
    border-radius:20px;
    margin-bottom:20px;
    overflow:hidden;
    transition:.3s;
}

.faq-item:hover{
    border-color:#FFC107;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    color:#fff;

    padding:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:18px;
    font-weight:600;

    cursor:pointer;
}

.faq-question span{
    color:#FFC107;
    font-size:24px;
}

.faq-answer{
    max-height:0;
    overflow:hidden;

    color:#aaa;
    line-height:1.8;

    padding:0 25px;

    transition:.4s ease;
}

.faq-item.active .faq-answer{
    max-height:200px;
    padding:0 25px 25px;
}

.active-link{
    color:#FFC107 !important;
}

/* MOBILE MENU */

.menu-toggle{
    display:none;
}

@media(max-width:992px){

    .menu-toggle{
        display:block;
        font-size:32px;
        cursor:pointer;
        color:#fff;
    }

    .nav-btn{
        display:none;
    }

    .nav-links{
        position:absolute;
        top:90px;
        left:0;

        width:100%;

        background:#111;

        flex-direction:column;

        max-height:0;
        overflow:hidden;

        transition:.4s;
    }

    .nav-links.active{
        max-height:500px;
    }

    .nav-links li{
        padding:20px;
        text-align:center;
        border-bottom:1px solid #222;
    }

    .faq-header h1{
        font-size:3rem;
    }
}

@media(max-width:576px){

    .faq-header h1{
        font-size:2.3rem;
    }

    .faq-section{
        padding:80px 20px;
    }

    .faq-question{
        font-size:16px;
        padding:20px;
    }
}

.contact-hero{
    min-height:60vh;
}

.contact-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    padding:100px 20px;
}

.contact-header h1{
    font-size:4rem;
    margin:20px 0;
}

.contact-header h1 span{
    color:#FFC107;
}

.contact-header p{
    color:#999;
    line-height:1.8;
}

/* SUPPORT CARDS */

.contact-section{
    padding:120px 8%;
    background:#050505;
}

.support-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:60px;
}

.support-card{
    text-decoration:none;
    color:#fff;

    background:#111;
    border:1px solid #222;

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:.3s;
}

.support-card:hover{
    transform:translateY(-8px);
    border-color:#FFC107;
    box-shadow:0 0 40px rgba(255,193,7,.15);
}

.support-icon{
    font-size:3rem;
    margin-bottom:15px;
}

.support-card p{
    color:#999;
}

/* CONTACT BOX */

.contact-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

    background:#111;
    border:1px solid #222;
    border-radius:30px;

    padding:40px;
}

.contact-info h2{
    font-size:2rem;
    margin-bottom:20px;
}

.contact-info p{
    color:#999;
    line-height:1.8;
    margin-bottom:25px;
}

.info-item{
    margin-bottom:15px;
    color:#ddd;
}

/* FORM */

.contact-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    background:#0b0b0b;
    border:1px solid #222;

    border-radius:14px;

    padding:16px;

    color:#fff;
    font-family:inherit;
}

.contact-form textarea{
    min-height:150px;
    resize:none;
}

.contact-form button{
    background:#FFC107;
    color:#111;

    border:none;

    padding:16px;

    border-radius:50px;

    font-weight:700;
    cursor:pointer;
}

.contact-form button:hover{
    opacity:.9;
}

.active-link{
    color:#FFC107 !important;
}

/* MOBILE NAV */

.menu-toggle{
    display:none;
}

@media(max-width:992px){

    .menu-toggle{
        display:block;
        font-size:32px;
        cursor:pointer;
    }

    .nav-btn{
        display:none;
    }

    .nav-links{
        position:absolute;
        top:90px;
        left:0;

        width:100%;

        background:#111;

        flex-direction:column;

        max-height:0;
        overflow:hidden;

        transition:.4s;
    }

    .nav-links.active{
        max-height:500px;
    }

    .nav-links li{
        padding:20px;
        text-align:center;
        border-bottom:1px solid #222;
    }

    .support-grid{
        grid-template-columns:1fr;
    }

    .contact-box{
        grid-template-columns:1fr;
    }

    .contact-header h1{
        font-size:3rem;
    }
}

@media(max-width:576px){

    .contact-header h1{
        font-size:2.3rem;
    }

    .contact-section{
        padding:80px 20px;
    }

    .contact-box{
        padding:25px;
    }
}


/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
    background:#050505;
    border-top:1px solid #1a1a1a;
    padding-top:80px;
}

.footer-container{
    max-width:1400px;
    margin:auto;
    padding:0 8%;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-brand img{
    width:70px;
    margin-bottom:20px;
}

.footer-brand p{
    color:#888;
    line-height:1.8;
    max-width:350px;
}

.footer-links h3{
    margin-bottom:20px;
    color:#FFC107;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:#999;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-links a:hover{
    color:#FFC107;
    transform:translateX(5px);
}

.footer-bottom{
    margin-top:60px;
    padding:25px;
    text-align:center;
    border-top:1px solid #1a1a1a;
}

.footer-bottom p{
    color:#777;
    font-size:.95rem;
}

/* MOBILE */

@media(max-width:992px){

    .footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}

@media(max-width:576px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-brand p{
        max-width:none;
    }

    .footer-brand img{
        margin:auto auto 20px;
        display:block;
    }

}


/* Tablet */

@media(max-width:992px){

    .devices-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:576px){

    .devices{
        padding:80px 20px;
    }

    .devices-grid{
        grid-template-columns:1fr;
    }

    .compatibility-banner{
        padding:35px 25px;
    }

    .compatibility-banner h3{
        font-size:1.5rem;
    }

}

@media(max-width:992px){
    .menu-toggle{display:block;}
    .nav-btn{display:none;}

    .nav-links{
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:#111;
        flex-direction:column;
        gap:0;
        max-height:0;
        overflow:hidden;
        transition:.4s;
    }

    .nav-links.active{max-height:400px;}

    .nav-links li{
        padding:20px;
        text-align:center;
        border-bottom:1px solid #222;
    }

    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
        padding:40px 0;
    }

    .hero-buttons,.stats{
        justify-content:center;
    }

    .preview-box{
        grid-template-columns:1fr;
    }

    .channel-sidebar{
        border-right:none;
        border-bottom:1px solid #222;
    }

    .player-screen video{
        height:300px;
    }
}

@media(max-width:576px){
    .hero{padding:0 20px;}

    .hero-text h1{
        font-size:2.2rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
    }

    .stats{
        flex-direction:column;
    }

    .stat-box{
        width:100%;
    }

    .preview-card video,
    .player-screen video{
        height:220px;
    }

    .player-footer{
        flex-wrap:wrap;
        gap:10px;
        text-align:center;
    }
}

/* Page Animation */

body{
    animation:fadePage .6s ease;
}

@keyframes fadePage{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.hero-text,
.channels-header,
.pricing-header,
.faq-header,
.contact-header{

    animation:slideLeft .8s ease;
}

.hero-preview{

    animation:slideRight .8s ease;

}

@keyframes slideLeft{

    from{
        opacity:0;
        transform:translateX(-60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes slideRight{

    from{
        opacity:0;
        transform:translateX(60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

.category-card,
.price-card,
.support-card,
.stat-card,
.faq-item{

    opacity:0;
    animation:cardFade .8s forwards;

}

.category-card:nth-child(1){animation-delay:.1s;}
.category-card:nth-child(2){animation-delay:.2s;}
.category-card:nth-child(3){animation-delay:.3s;}
.category-card:nth-child(4){animation-delay:.4s;}
.category-card:nth-child(5){animation-delay:.5s;}
.category-card:nth-child(6){animation-delay:.6s;}
.category-card:nth-child(7){animation-delay:.7s;}
.category-card:nth-child(8){animation-delay:.8s;}
.category-card:nth-child(9){animation-delay:.9s;}

@keyframes cardFade{

    from{

        opacity:0;
        transform:translateY(50px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.navbar{

    animation:navbarDrop .6s ease;

}

@keyframes navbarDrop{

    from{

        opacity:0;
        transform:translateY(-40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.logo{

    transition:.4s;

}

.logo:hover{

    transform:scale(1.05) rotate(-2deg);

}

.category-card,
.price-card,
.support-card{

    transition:.4s;

}

.category-card:hover,
.price-card:hover,
.support-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 50px rgba(255,193,7,.15);

}

.nav-links a{

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;

    height:2px;

    background:#FFC107;

    transition:.3s;

}

.nav-links a:hover::after{

    width:100%;

}

.page-exit{

    animation:pageExit .3s forwards;

}

@keyframes pageExit{

    to{

        opacity:0;
        transform:translateY(-20px);

    }

}