/* ===================================
   STREAMIPTV V2
=================================== */

:root{

--primary:#00C8FF;
--secondary:#7A5CFF;

--dark:#08101D;
--dark2:#101827;

--card:#182235;

--white:#ffffff;
--text:#B9C5D6;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:var(--dark);
color:white;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

.container{

    width:min(90%,1280px);

    margin:auto;

}

/* ===========================
HEADER
=========================== */

header{

position:fixed;
top:0;
left:0;
width:100%;

z-index:999;

background:rgba(8,16,29,.75);

backdrop-filter:blur(20px);

}

header .container{

display:flex;

justify-content:space-between;

align-items:center;

padding:22px 0;

}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.logo img{

    width:45px;
    height:45px;
    object-fit:contain;

}


.logo h2{
    color: #fff;
    margin: 0;
}

.logo:hover{
    color: #fff;
}

.logo:visited{
    color: #fff;
}


nav{

display:flex;
gap:35px;

}

nav a{

color:white;
transition:.3s;

}
nav a.active{
    color:var(--primary);
}
nav a:hover{

color:var(--primary);

}

.btn{

    display:inline-block;

    padding:16px 36px;

    border-radius:50px;

    background:linear-gradient(135deg,#00C8FF,#0066FF);

    color:#fff;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,200,255,.25);

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(0,200,255,.35);

}

.btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 35px rgba(0,200,255,.3);

}

/* ===========================
HERO
=========================== */

.hero{

min-height:100vh;

background:url("../images/heropic.jpg") center center/cover no-repeat;

position:relative;

display:flex;

align-items:center;

}

.overlay{

position:absolute;

inset:0;

background:linear-gradient(rgba(8,16,29,.88),
rgba(8,16,29,.94));

}

.hero-content{

position:relative;

z-index:5;

padding-top:130px;

max-width:760px;

}

.badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 22px;

border-radius:40px;

background:rgba(255,255,255,.08);

margin-bottom:30px;

}

.badge i{

color:var(--primary);

}

.hero h1{

font-size:72px;

line-height:1.08;

margin-bottom:25px;

}

.hero p{

font-size:20px;

line-height:1.8;

color:var(--text);

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:45px;

}

.primary-btn{

padding:18px 36px;

border-radius:50px;

background:linear-gradient(90deg,var(--primary),var(--secondary));

color:white;

font-weight:600;

transition:.3s;

}

.primary-btn:hover{

transform:translateY(-4px);

}

.secondary-btn{

padding:18px 36px;

border-radius:50px;

border:2px solid rgba(255,255,255,.15);

color:white;

transition:.3s;

}

.secondary-btn:hover{

background:white;

color:black;

}

.hero-features{

display:flex;

gap:25px;

flex-wrap:wrap;

}

.hero-features div{

padding:14px 22px;

border-radius:40px;

background:rgba(255,255,255,.08);

}

.hero-features i{

margin-right:8px;

color:var(--primary);

}

/* ===========================
STATS
=========================== */

.stats{

padding:90px 0;

background:#0d1422;

}
/* ===================================
   LIVE SPORTS
=================================== */

.sports{

    padding:120px 0;

    background:#08101d;

}
/* ===================================
   FEATURES
=================================== */

.features{

    padding:120px 0;

    background:#0d1422;

}
/* ===================================
   SUPPORTED DEVICES
=================================== */

.devices{

    padding:120px 0;

    background:#08101d;

}

.devices-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.device-card{

    background:var(--card);

    padding:35px 25px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.device-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 40px rgba(0,200,255,.18);

}

.device-card i{

    font-size:48px;

    color:var(--primary);

    margin-bottom:20px;

}

.device-card h3{

    font-size:22px;

    font-weight:600;

}

@media(max-width:992px){

    .devices-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .devices-grid{

        grid-template-columns:1fr;

    }

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.feature-card{

    background:var(--card);

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 40px rgba(0,200,255,.18);

}

.feature-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:25px;

}

.feature-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.feature-card p{

    color:var(--text);

    line-height:1.7;

}

@media(max-width:992px){

    .features-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .features-grid{

        grid-template-columns:1fr;

    }

}

.section-title{

    max-width:750px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    color:#00C8FF;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    font-size:48px;

    margin:20px 0;

}

.section-title p{

    color:#B7C1D8;

    line-height:1.8;

}

.section-title span{

    color:var(--primary);

    font-weight:600;

    letter-spacing:2px;

    display:inline-block;

    margin-bottom:15px;

}

.section-title h2{

    font-size:48px;

    margin-bottom:20px;

}

.section-title p{

    color:var(--text);

    max-width:700px;

    margin:auto;

    line-height:1.8;

}
STOPPP


.sports-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.sport-card{

    background:var(--card);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.sport-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 40px rgba(0,200,255,.18);

}

.sport-card img{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    object-fit:contain;

}

.sport-card h3{

    font-size:24px;

    margin-bottom:12px;

}

.sport-card p{

    color:var(--text);

    line-height:1.7;

}

/* Responsive */

@media(max-width:992px){

    .sports-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .sports-grid{

        grid-template-columns:1fr;

    }

}

.stats-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.stat-box{

background:var(--card);

padding:35px;

border-radius:20px;

text-align:center;

transition:.35s;

}

.stat-box:hover{

transform:translateY(-8px);

}

.stat-box h2{

font-size:48px;

color:var(--primary);

margin-bottom:10px;

}

.stat-box p{

color:var(--text);

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:900px){

nav{

display:none;

}

.btn{

display:none;

}

.hero h1{

font-size:46px;

}

.hero-buttons{

flex-direction:column;

}

.stats-grid{

grid-template-columns:1fr;

}

}
/* ===================================
   PRICING
=================================== */

.pricing{

padding:120px 0;

background:#0d1422;

}

.pricing-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

align-items:center;

}

.price-card{

background:var(--card);

padding:40px 30px;

border-radius:20px;

text-align:center;

transition:.35s;

position:relative;

border:1px solid rgba(255,255,255,.08);

}

.price-card:hover{

transform:translateY(-12px);

border-color:var(--primary);

box-shadow:0 20px 40px rgba(0,200,255,.2);

}

.featured{

border:2px solid var(--primary);

transform:scale(1.05);

}

.featured:hover{

transform:scale(1.08);

}

.popular{

position:absolute;

top:-16px;

left:50%;

transform:translateX(-50%);

background:linear-gradient(90deg,var(--primary),var(--secondary));

padding:8px 22px;

border-radius:30px;

font-size:14px;

font-weight:600;

}

.price{

font-size:52px;

font-weight:700;

margin:20px 0;

color:var(--primary);

}

.bonus{

margin-bottom:25px;

color:#FFD54A;

font-weight:600;

}

.price-card ul{

list-style:none;

margin-bottom:30px;

}

.price-card li{

padding:10px 0;

color:var(--text);

}

.price-btn{

display:inline-block;

padding:16px 34px;

border-radius:50px;

background:linear-gradient(90deg,var(--primary),var(--secondary));

color:white;

font-weight:600;

transition:.3s;

}

.price-btn:hover{

transform:translateY(-3px);

}

@media(max-width:1200px){

.pricing-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.pricing-grid{

grid-template-columns:1fr;

}

.featured{

transform:none;

}

}
/* ===================================
   REVIEWS
=================================== */

.reviews{

padding:120px 0;

background:#08101d;

}

.reviews-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.review-card{

background:var(--card);

padding:35px;

border-radius:20px;

transition:.35s;

border:1px solid rgba(255,255,255,.08);

}

.review-card:hover{

transform:translateY(-10px);

border-color:var(--primary);

box-shadow:0 20px 40px rgba(0,200,255,.18);

}

.stars{

font-size:24px;

color:#FFD54A;

margin-bottom:20px;

}

.review-card p{

color:var(--text);

line-height:1.8;

margin-bottom:25px;

}

.review-card h4{

margin-bottom:5px;

}

.review-card span{

color:var(--primary);

}

@media(max-width:992px){

.reviews-grid{

grid-template-columns:1fr;

}

}
/* ===================================
   FAQ
=================================== */

.faq{

    padding:120px 0;

    background:#0d1422;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq details{

    background:var(--card);

    margin-bottom:20px;

    border-radius:15px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

}

.faq summary{

    padding:22px 25px;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    list-style:none;

}

.faq summary::-webkit-details-marker{

    display:none;

}

.faq summary::after{

    content:"+";

    float:right;

    color:var(--primary);

    font-size:22px;

}

.faq details[open] summary::after{

    content:"−";

}

.faq details p{

    padding:0 25px 25px;

    color:var(--text);

    line-height:1.8;

}
/* ===================================
   CTA
=================================== */

.cta{

padding:120px 0;

text-align:center;

background:linear-gradient(135deg,#00C8FF,#7A5CFF);

}

.cta h2{

font-size:52px;

margin-bottom:20px;

}

.cta p{

max-width:700px;

margin:0 auto 40px;

font-size:20px;

line-height:1.8;

color:white;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

/* ===================================
   FOOTER
=================================== */

footer{

background:#060B14;

padding:80px 0 30px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:40px;

}

.footer-grid h3,
.footer-grid h4{

margin-bottom:20px;

}

.footer-grid p{

color:var(--text);

line-height:1.8;

}

.footer-grid ul{

list-style:none;

}

.footer-grid li{

margin-bottom:12px;

}

.footer-grid a{

color:var(--text);

transition:.3s;

}

.footer-grid a:hover{

color:var(--primary);

}

.copyright{

margin-top:50px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

color:var(--text);

}

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

}
/* ===================================
   PAGE HERO
=================================== */

.page-hero{

    padding:180px 0 100px;

    text-align:center;

    background:#0b1120;

}

.page-hero h1{

    font-size:60px;

    margin:25px 0;

}

.page-hero p{

    max-width:700px;

    margin:auto;

    color:var(--text);

    line-height:1.8;

    font-size:20px;

}
/* ===================================
   PRICING PAGE
=================================== */

.pricing-page{

    padding:120px 0;

}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    align-items:stretch;

}

.price-btn{

    margin-top:auto;

    display:block;

    width:100%;

    padding:16px;

    text-align:center;

    border-radius:50px;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

    color:#fff;

    font-weight:600;

}

.price-card{

    background:var(--card);

    border-radius:20px;

    padding:40px;

    border:2px solid rgba(255,255,255,.08);

    transition:.3s;

    display:flex;

    flex-direction:column;

    height:100%;

}

.price-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

}

.featured{

    border:2px solid var(--primary);

}

.popular{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:var(--primary);

    color:#000;

    padding:8px 20px;

    border-radius:20px;

    font-size:14px;

    font-weight:700;

}

.price{

    font-size:58px;

    font-weight:800;

    color:var(--primary);

    margin:20px 0;

}

.currency{

    font-size:28px;

    vertical-align:top;

}
.currency{

    font-size:28px;

    vertical-align:top;

}

.bonus{

    color:#FFD54F;

    margin-bottom:25px;

    font-weight:600;

}

.price-card ul{

    list-style:none;

    margin:35px 0;

    text-align:left;

}

.price-card ul li{

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

    color:var(--text);

}
.pricing-section{

    padding:120px 0;

}

.price-card{

    background: var(--card);
    border-radius:20px;
    padding:40px;
    border:2px solid rgba(255,255,255,.08);

    display:flex;
    flex-direction:column;

    height:100%;
}

.price-card:hover{

    transform:translateY(-8px);

    border-color:#00C8FF;

}

.plan-badge{

    display:inline-block;

    background:#00C8FF;

    color:#000;

    padding:8px 18px;

    border-radius:20px;

    font-weight:700;

    margin-bottom:20px;

}

.price{

    font-size:58px;

    margin-bottom:10px;

}

.bonus{

    color:#FFD54F;

    margin-bottom:30px;

}

.connection-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    margin:25px 0;

}

.connection{

    width:60px;

    height:60px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    font-size:22px;

    font-weight:bold;

    background:#10182B;

    color:white;

    transition:.3s;

}

.connection:hover{

    background:#00C8FF;

    color:#000;

}

.connection.active{

    background:#00C8FF;

    color:#000;

}

.plan-features{

    list-style:none;

    text-align:left;

    margin:30px 0;

}

.plan-features li{

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.subscribe-btn{

    display:inline-block;

    width:100%;

    padding:16px;

    border-radius:50px;

    background:linear-gradient(90deg,#00C8FF,#7A5CFF);

    color:white;

    font-weight:600;

    margin-top:15px;

}
.plan-name{

    display:inline-block;

    padding:8px 20px;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

.connection-selector{

    display:flex;

    justify-content:center;

    gap:12px;

    margin:25px 0;

}

.connection-btn{

    width:55px;

    height:55px;

    border:none;

    border-radius:12px;

    background:#10182B;

    color:#fff;

    font-size:20px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.connection-btn:hover{

    background:var(--primary);

    color:#000;

}

.connection-btn.active{

    background:var(--primary);

    color:#000;

}

.device-info{

    margin-bottom:25px;

    color:var(--text);

    font-size:15px;

}
.channels{

    padding:140px 0;

    background:var(--bg);

}

.channels-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.channel-card{

    background:var(--card);

    padding:40px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.channel-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 40px rgba(0,200,255,.15);

}

.channel-icon{

    width:90px;

    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:40px;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

}

.channel-card h3{

    margin-bottom:15px;

    font-size:26px;

}

.channel-card p{

    color:var(--text);

    line-height:1.8;

}

.popular-channels{

    padding:100px 0;

    background:var(--bg2);

}

.logo-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:20px;

}

.logo-box{

    background:var(--card);

    padding:35px 20px;

    border-radius:15px;

    text-align:center;

    font-size:20px;

    font-weight:700;

    transition:.3s;

    border:1px solid rgba(255,255,255,.08);

}

.logo-box:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    color:var(--primary);

}

.devices-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.device-card{

    background:var(--card);

    padding:30px;

    text-align:center;

    border-radius:18px;

    font-size:22px;

    font-weight:600;

    transition:.3s;

}

.device-card:hover{

    transform:translateY(-8px);

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

}

.sports-hero{

    padding:180px 0 120px;

    background:linear-gradient(rgba(8,11,22,.9),
    rgba(8,11,22,.95)),
    url("../images/sports-bg.jpg") center/cover;

}

.sports-content{

    max-width:750px;

}

.sports-badge{

    display:inline-block;

    padding:12px 24px;

    background:rgba(255,255,255,.08);

    border-radius:50px;

    color:var(--primary);

    font-weight:600;

    margin-bottom:30px;

}

.sports-content h1{

    font-size:68px;

    margin-bottom:25px;

}

.sports-content p{

    color:var(--text);

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

.competitions{

    padding:120px 0;

}

.competition-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.competition-card{

    background:var(--card);

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}
.competition-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 40px rgba(0,200,255,.15);

}

.competition-card h3{

    font-size:24px;

    margin:20px 0 10px;

}

.competition-card p{

    color:var(--text);

}

.contact-page{

    padding:140px 0;

    background:var(--bg);

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    margin-top:60px;

}

.contact-card{

    background:var(--card);

    padding:30px;

    border-radius:20px;

    margin-bottom:25px;

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-8px);

    border:1px solid var(--primary);

}

.contact-icon{

    font-size:40px;

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:15px;

}

.contact-card p{

    color:var(--text);

    margin-bottom:20px;

    line-height:1.7;

}

.contact-btn{

    display:inline-block;

    padding:12px 28px;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

    color:#fff;

    border-radius:50px;

}

.contact-form{

    background:var(--card);

    padding:40px;

    border-radius:20px;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    border:none;

    border-radius:12px;

    background:#0d1528;

    color:#fff;

    font-family:'Poppins',sans-serif;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:2px solid var(--primary);

}

@media(max-width:900px){

.contact-grid{

grid-template-columns:1fr;

}

}

.about-hero{

    padding:150px 0 80px;

    background:var(--bg);

}

.our-story{

    padding:100px 0;

}

.story-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

    align-items:center;

}

.story-grid p{

    color:var(--text);

    line-height:1.9;

    margin-bottom:20px;

}

.story-box{

    background:var(--card);

    padding:35px;

    border-radius:20px;

}

.story-box ul{

    list-style:none;

    margin-top:20px;

}

.story-box li{

    padding:12px 0;

}

.mission{

    padding:120px 0;

    background:var(--bg2);

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.mission-card{

    background:var(--card);

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.3s;

}

.mission-card:hover{

    transform:translateY(-10px);

    border:1px solid var(--primary);

}

.mission-icon{

    font-size:48px;

    margin-bottom:20px;

}

@media(max-width:900px){

.story-grid{

grid-template-columns:1fr;

}

}

.blog-hero{

padding:150px 0 80px;

}

.featured-blog{

padding:60px 0;

}

.featured-post{

display:grid;

grid-template-columns:1fr 1fr;

gap:40px;

align-items:center;

}

.featured-image{

background:var(--card);

height:350px;

display:flex;

justify-content:center;

align-items:center;

font-size:100px;

border-radius:20px;

}

.blog-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

padding:80px 0;

}

.blog-card{

background:var(--card);

padding:30px;

border-radius:20px;

transition:.3s;

}

.blog-card:hover{

transform:translateY(-8px);

}

.blog-image{

height:180px;

background:#10182B;

border-radius:15px;

display:flex;

justify-content:center;

align-items:center;

font-size:70px;

margin-bottom:20px;

}

.blog-card h3{

margin-bottom:15px;

}

.blog-card p{

color:var(--text);

line-height:1.8;

margin-bottom:20px;

}

.setup-hero{

padding:150px 0 80px;

}

.setup-guides{

padding:80px 0;

}

.setup-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.setup-card{

background:var(--card);

padding:35px;

border-radius:20px;

text-align:center;

transition:.3s;

}

.setup-card:hover{

transform:translateY(-10px);

border:1px solid var(--primary);

}

.setup-card{

font-size:22px;

}

.setup-card p{

margin:20px 0;

color:var(--text);

}

.setup-card a{

color:var(--primary);

font-weight:600;

}

nav a.active{

color:var(--primary);

font-weight:600;

}

header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(8,11,22,.95);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.08);

}


.price-card,
.blog-card,
.contact-card,
.mission-card,
.competition-card,
.setup-card{

    background:#171F33;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.price-card:hover,
.blog-card:hover,
.contact-card:hover,
.mission-card:hover,
.competition-card:hover,
.setup-card:hover{

    transform:translateY(-10px);

    border-color:#00C8FF;

    box-shadow:0 20px 40px rgba(0,200,255,.15);

}

img{

    max-width:100%;

    display:block;

    border-radius:15px;

}


.customer-proof{

    padding:120px 0;

}

.proof-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:20px;

}

.proof-card{

    background:#171F33;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

}

.proof-card:hover{

    transform:translateY(-8px);

}

.proof-card img{

    width:100%;

    display:grid;

}

.how-it-works{

    padding:120px 0;

}

.steps-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.step-card{

    background:#171F33;

    padding:40px;

    border-radius:20px;

    text-align:center;

}

.step-number{

    width:70px;

    height:70px;

    margin:auto auto 20px;

    border-radius:50%;

    background:linear-gradient(135deg,#00C8FF,#0066FF);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:28px;

    font-weight:bold;

}

.why-us{

padding:120px 0;

background:#10182B;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.why-card{

background:#171F33;

padding:35px;

border-radius:20px;

text-align:center;

transition:.3s;

}

.why-card:hover{

transform:translateY(-10px);

}

.why-card h3{

margin:20px 0;

}

.final-cta{

padding:100px 0;

text-align:center;

background:linear-gradient(135deg,#00C8FF,#0066FF);

}

.final-cta h2{

font-size:48px;

margin-bottom:20px;

color:#fff;

}

.final-cta p{

font-size:20px;

margin-bottom:35px;

color:#fff;

}

@media (max-width:768px){

header .container{

display:flex;

justify-content:space-between;

align-items:center;

padding:15px 20px;

}

nav{

display:none;

}

.menu-toggle{

display:block;

font-size:28px;

cursor:pointer;

color:white;

}

}

@media(max-width:768px){

.hero h1{

font-size:36px;

line-height:1.2;

}

.hero p{

font-size:16px;

}

.hero{

padding:120px 20px 80px;

}

}

@media(max-width:768px){

.pricing-grid{

grid-template-columns:1fr;

gap:25px;

}

}

@media(max-width:768px){

section{

padding:60px 20px;

}

}

@media(max-width:768px){

.btn,
.price-btn{

width:100%;

padding:16px;

font-size:18px;

text-align:center;

}

}

img{

max-width:100%;

height:auto;

display:block;

}

@media (max-width:768px){

.pricing-grid{

    display:grid;

    grid-template-columns:1fr;
    gap:25px;

}

.price-card{

    width:100%;
    max-width:100%;
    margin:0 auto;

}

}

@media (max-width:768px){

.price-card{

    padding:25px 20px;

}

}

@media (max-width:768px){

.plan-name{

    font-size:18px;

}

.price{

    font-size:40px;

}

.bonus{

    font-size:15px;

}

}

@media (max-width:768px){

.connection-selector{

    display:flex;

    justify-content:center;
    gap:12px;

}

.connection-btn{

    width:55px;
    height:55px;

    font-size:18px;

    border-radius:12px;

}

}

@media (max-width:768px){

.price-btn{

    display:block;

    width:100%;

    text-align:center;

    padding:16px;

    margin-top:20px;

}

}

@media (max-width:768px){

.proof-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:20px;

}

.proof-card img{

    width:100%;

}

}

.mobile-action-bar{
    display:none;
}

@media (max-width:768px){

.mobile-action-bar{

    display:flex;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#171F33;
    z-index:9999;

}

.mobile-action-bar a{

    flex:1;
    text-align:center;
    padding:15px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-right:1px solid rgba(255,255,255,.1);

}

.mobile-action-bar a:last-child{
    border-right:none;
}

}

@media (max-width:768px){

.sports-hero{

    padding:120px 20px 70px;

}

.sports-hero h1{

    font-size:36px;
    line-height:1.2;

}

.sports-hero p{

    font-size:16px;

}

}

@media (max-width:768px){

.competitions-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;

}

.competition-card{

    padding:18px 10px;
    text-align:center;

}

.competition-card h3{

    font-size:15px;
    line-height:1.3;
    word-break:break-word;

}

}

@media (max-width:768px){

.sports-grid{

    display:grid;
    grid-template-columns:1fr;
    gap:25px;

}

.sport-card{

    width:100%;

}

}

.competition-card img{

    width:60px;
    height:60px;
    object-fit:contain;

}

@media (max-width:768px){

.competition-card img{

    width:45px;
    height:45px;

}

}

@media (max-width:768px){

.sport-btn{

    width:100%;
    text-align:center;
    padding:16px;

}

}

@media (max-width:768px){

section{

    padding:60px 20px;

}

.section-title{

    margin-bottom:40px;

}

}

@media (max-width:768px){

.channels-hero{

    padding:120px 20px 70px;

}

.channels-hero h1{

    font-size:36px;
    line-height:1.2;

}

.channels-hero p{

    font-size:16px;

}

}

@media (max-width:768px){

.channel-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

}

.channel-card{

    text-align:center;

    padding:20px;

}

.channel-card img{

    width:80px;

    height:80px;

    object-fit:contain;

}

@media(max-width:768px){

.channel-card img{

    width:60px;

    height:60px;

}

}

.channel-card{

overflow:hidden;

}

.channel-card h3{

font-size:15px;

word-break:break-word;

}

@media (max-width:768px){

.blog-hero{

    padding:120px 20px 70px;

}

.blog-hero h1{

    font-size:34px;
    line-height:1.3;

}

.blog-hero p{

    font-size:16px;

}

}

@media (max-width:768px){

.featured-post{

    display:flex;
    flex-direction:column;

}

.featured-image{

    width:100%;
    height:220px;

}

}

@media (max-width:768px){

.blog-grid{

    grid-template-columns:1fr;

    gap:25px;

}

.blog-card{

    width:100%;

}

}

.blog-card img{

width:100%;

height:220px;

object-fit:cover;

border-radius:15px;

}

.blog-card h3{

font-size:22px;

line-height:1.4;

}

@media(max-width:768px){

.blog-card a{

display:block;

width:100%;

text-align:center;

padding:15px;

margin-top:20px;

}

}

.blog-search{

max-width:500px;

margin:40px auto;

}

.blog-search input{

width:100%;

padding:18px;

border-radius:50px;

font-size:16px;

border:none;

}

.setup-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.setup-card{

background:#171F33;

padding:35px;

border-radius:20px;

text-align:center;

transition:.3s;

}

.setup-card:hover{

transform:translateY(-8px);

}

@media(max-width:768px){

.setup-grid{

grid-template-columns:1fr;

}

}

/* ===========================
   PAYMENT SECTION
=========================== */

.payment-section{

    padding:100px 0;
    background:#080B16;

}

.payment-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:25px;
    margin-top:60px;

}

.payment-card{

    background:#171F33;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;

}

.payment-card:hover{

    transform:translateY(-8px);
    border-color:#00C8FF;

}

.payment-card img{

    width:90px;
    height:55px;
    object-fit:contain;

}

@media (max-width:768px){

.payment-grid{

    grid-template-columns:repeat(2,1fr);
    gap:15px;

}

.payment-card{

    padding:20px;

}

.payment-card img{

    width:100px;

}

}

.payment-card{

    display:flex;
    flex-direction:column;
    text-align:center;

}

.payment-card h4{

    margin-top:15px;
    color:#fff;

}

.payment-card p{

    font-size:14px;
    color:#aaa;

}

.payment-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:40px;

}

@media(max-width:768px){

.payment-grid{

    grid-template-columns:repeat(2,1fr);

}

}

.menu-toggle{

display:block;

background:none;

border:none;

color:#fff;

font-size:28px;

cursor:pointer;

}

@media(max-width:768px){

.menu-toggle{

display:block;

}

nav{

display:none;

position:absolute;

top:80px;

left:0;

width:100%;

background:#171F33;

padding:20px;

flex-direction:column;

gap:20px;

}

nav.active{

display:flex;

}

header .btn{

display:none;

}

}


/* ===========================
   SIMPLE CONTENT PAGE
=========================== */

.page-header{
    background:#111827;
    color:#fff;
    padding:60px 20px;
    text-align:center;
}

.page-header h1{
    font-size:40px;
    margin-bottom:10px;
}

.page-header p{
    max-width:700px;
    margin:auto;
    color:#d1d5db;
}

.page-content{
    max-width:900px;
    margin:60px auto;
    padding:0 20px;
}

.page-content h2{
    margin-top:40px;
    margin-bottom:15px;
    color:#ffffff;
    border-left:4px solid #2563eb;
    padding-left:12px;
}

.page-content p,
.page-content li{
    line-height:1.8;
    color:#ffffff;
}

.page-content ul{
    padding-left:20px;
}

.page-content hr{
    margin:40px 0;
    border:none;
    border-top:1px solid #ddd;
}

.page-footer-box{
    background:#f5f5f5;
    padding:30px;
    border-radius:10px;
    margin-top:50px;
    text-align:center;
}

.page-footer-box h3{
    margin-bottom:15px;
}

.page-footer-box .btn{
    margin:10px;
}


.watch-content{
    padding:100px 0;
    background:#0d1422;
}

.watch-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.watch-card{
    background:#182235;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
    border:1px solid rgba(255,255,255,.08);
}

.watch-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.watch-card h3{
    padding:20px 20px 10px;
    font-size:24px;
}

.watch-card p{
    padding:0 20px 25px;
    color:#B9C5D6;
    line-height:1.7;
}

.watch-card:hover{
    transform:translateY(-8px);
    border-color:#00C8FF;
    box-shadow:0 20px 40px rgba(0,200,255,.15);
}

@media(max-width:992px){
    .watch-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .watch-grid{
        grid-template-columns:1fr;
    }
}

/* ==========================
CUSTOMER REVIEWS
========================== */

.testimonials{

    padding:120px 0;

    background:#08101d;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:#182235;

    border-radius:18px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.testimonial-card img{

    width:100%;

    display:block;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    border-color:#00C8FF;

    box-shadow:0 18px 35px rgba(0,200,255,.15);

}

@media(max-width:992px){

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.testimonial-grid{

grid-template-columns:1fr;

}

}

/* ==========================
LIFESTYLE
========================== */

.lifestyle{

    padding:120px 0;

    background:#0d1422;

}

.lifestyle-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.lifestyle-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.lifestyle-content span{

    color:#00C8FF;

    text-transform:uppercase;

    font-weight:700;

    letter-spacing:2px;

}

.lifestyle-content h2{

    font-size:48px;

    margin:20px 0;

}

.lifestyle-content p{

    color:#B9C5D6;

    line-height:1.9;

    margin-bottom:20px;

}

.lifestyle-content ul{

    list-style:none;

    margin:35px 0;

}

.lifestyle-content li{

    margin-bottom:18px;

    font-size:18px;

}

.lifestyle-content i{

    color:#00C8FF;

    margin-right:12px;

}

@media(max-width:992px){

.lifestyle-grid{

grid-template-columns:1fr;

}

.lifestyle-content{

text-align:center;

}

.lifestyle-content ul{

display:inline-block;

text-align:left;

}

}

.pricing-banner{

    height:500px;

    background:
    linear-gradient(rgba(8,16,29,.70),
    rgba(8,16,29,.85)),
    url("../images/pricing-banner.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}
/* ==========================
PRICING GALLERY
========================== */

.pricing-gallery{

    padding:40px 0;

}

.gallery-grid{

    display:flex;

    gap:8px;

}

.gallery-card{

    flex:1;

    overflow:hidden;

    border-radius:15px;

}

.gallery-card img{

    width:280%;

    height:300px;

    object-fit:cover;

    display:block;

}

.gallery-card:hover{

    transform:translateY(-8px);

    border-color:#00C8FF;

    box-shadow:0 15px 35px rgba(0,200,255,.18);

}

.gallery-card:hover img{

    transform:scale(1.05);

    transition:.4s;

}

@media(max-width:992px){

.gallery-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:480px){

.gallery-grid{

grid-template-columns:1fr;

}

}