/* ========================================================= */
/* COMPLETE IPTV / VIZOMATE STYLE CSS */
/* FULL PREMIUM DESIGN */
/* ========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;

    background:
    linear-gradient(
    to bottom,
    #050014 0%,
    #02000a 50%,
    #000000 100%
    );

    color:#fff;

    overflow-x:hidden;
}

/* ========================================================= */
/* GLOBAL */
/* ========================================================= */

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

section{
    position:relative;
}

/* ========================================= */
/* HEADER */
/* ========================================= */

.main-header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    padding:18px 0;

    background:
    rgba(5,0,20,.72);

    backdrop-filter:blur(24px);

    border-bottom:
    1px solid rgba(255,255,255,.05);
}

/* NAVBAR */

.navbar-custom{

    display:flex;

    align-items:center;

    justify-content:space-between;
}

/* LOGO */

.logo{

    font-size:38px;

    font-weight:800;

    color:#fff;

    letter-spacing:-1px;
}

.logo span{

    color:#ff9900;
}

/* MENU */

.nav-menu{

    display:flex;

    align-items:center;

    gap:34px;

    margin:0;
}

/* LINKS */

.nav-menu li{

    list-style:none;
}

.nav-menu a{

    position:relative;

    color:#d5d5d5;

    font-size:14px;

    font-weight:500;

    transition:.3s;
}

/* HOVER */

.nav-menu a:hover{

    color:#fff;
}

/* LINE */

.nav-menu a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    border-radius:30px;

    background:#ff9900;

    transition:.3s;
}

.nav-menu a:hover::after{

    width:100%;
}

/* BUTTON */

.trial-btn{

    height:52px;

    padding:0 28px;

    border-radius:16px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #8b5cf6,
    #ff9900
    );

    color:#fff;

    font-size:14px;

    font-weight:600;

    transition:.4s;

    box-shadow:
    0 10px 35px rgba(255,153,0,.18);
}

/* HOVER */

.trial-btn:hover{

    transform:translateY(-4px);

    color:#fff;
}

/* MOBILE BUTTON */

.mobile-menu-btn{

    width:50px;
    height:50px;

    border-radius:14px;

    display:none;

    align-items:center;
    justify-content:center;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    color:#fff;

    font-size:20px;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:991px){

.nav-menu{

    display:none;
}

.mobile-menu-btn{

    display:flex;
}

.trial-btn{

    display:none;
}

.logo{

    font-size:32px;
}

.main-header{

    padding:14px 0;
}

}
/* ========================================================= */
/* HERO SECTION */
/* ========================================================= */

/* ========================================= */
/* HERO SECTION HEIGHT SMALL */
/* ========================================= */

.hero-section{

    position:relative;

    min-height:620px;   /* pehle 720px tha */

    display:flex;
    align-items:center;

    overflow:hidden;

    padding:110px 0 40px;   /* top bottom kam */

    background:
    radial-gradient(circle at top right,
    rgba(255,140,0,.18),
    transparent 30%),

    radial-gradient(circle at bottom left,
    rgba(139,92,246,.16),
    transparent 35%),

    linear-gradient(
    90deg,
    #050014 0%,
    #070018 45%,
    #140500 100%
    );
}

/* CONTENT */

.hero-content{
    max-width:520px;
}

/* TITLE SMALL */

.hero-content h1{

    font-size:58px;   /* smaller */

    line-height:1.02;

    margin-bottom:16px;
}

/* DESCRIPTION */

.hero-description{

    font-size:14px;

    line-height:1.8;
}

/* BUTTON AREA */

.hero-buttons{
    margin-top:28px;
}

/* STATUS */

.live-status-wrap{
    margin-top:24px;
}

/* IMAGE */

.hero-image img{
    max-width:470px;   /* image smaller */
}

/* GLOW */

.hero-image::before{

    width:420px;
    height:420px;

    filter:blur(130px);
}

/* FLOATING CARDS */

.floating-card{

    padding:12px 18px;

    font-size:12px;
}

/* STATS */

.hero-stats{

    gap:14px;

    margin-top:28px;
}

.stat-box{

    padding:18px 24px;

    min-width:120px;
}

.stat-box h3{
    font-size:24px;
}

.stat-box span{
    font-size:12px;
}

/* MOBILE */

@media(max-width:768px){

.hero-section{

    min-height:auto;

    padding:110px 0 50px;
}

.hero-content h1{
    font-size:38px;
}

.hero-image{
    margin-top:40px;
}

.hero-image img{
    max-width:100%;
}

}
/* OVERLAY */

.hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to right,
    rgba(0,0,0,.55),
    rgba(0,0,0,.15)
    );

    z-index:1;
}

/* CONTENT */

.hero-content{

    position:relative;
    z-index:5;

    max-width:560px;
}

/* BADGE */

.hero-mini-badge{

    display:inline-flex;
    align-items:center;

    padding:10px 22px;

    border-radius:50px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    color:#15d1c5;

    font-size:12px;

    margin-bottom:24px;
}

/* TITLE */

.hero-content h1{

    font-size:66px;

    line-height:1.02;

    font-weight:800;

    letter-spacing:-3px;

    margin-bottom:20px;
}

.hero-content h1 span{
    color:#ffb400;
}

/* DESCRIPTION */

.hero-description{

    font-size:15px;

    line-height:1.9;

    color:#cfcfcf;

    max-width:520px;
}

/* BUTTONS */

.hero-buttons{

    display:flex;
    align-items:center;

    gap:16px;

    margin-top:35px;
}

/* LIVE STATUS */

.live-status-wrap{
    margin-top:32px;
}

.live-item{

    margin-bottom:12px;

    font-weight:600;
}

.watching{
    color:#00ff9d;
    font-size:18px;
}

.trials{
    color:#ff3b3b;
    font-size:18px;
}

.timer{
    color:#ffcc00;
    font-size:15px;
}

.joined{
    color:#d6d6d6;
    font-size:14px;
}

/* HERO IMAGE */

.hero-image{

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:5;
}

/* GLOW */

.hero-image::before{

    content:'';

    position:absolute;

    width:520px;
    height:520px;

    background:#ff9900;

    border-radius:50%;

    filter:blur(160px);

    opacity:.18;

    z-index:1;
}

/* IMAGE */

.hero-image img{

    position:relative;

    z-index:5;

    width:100%;
    max-width:520px;

    border-radius:28px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.5);
}

/* FLOATING CARDS */

.floating-card{

    position:absolute;

    z-index:10;

    padding:14px 24px;

    border-radius:18px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    font-size:13px;

    font-weight:600;

    box-shadow:
    0 10px 40px rgba(0,0,0,.4);
}

/* CARD POSITIONS */

.card1{
    top:12%;
    left:-2%;
}

.card2{
    right:-2%;
    top:38%;
}

.card3{
    bottom:8%;
    left:10%;
}

/* ========================================================= */
/* STATS BOX */
/* ========================================================= */

.hero-stats{

    display:flex;
    gap:18px;

    margin-top:40px;
}

.stat-box{

    padding:22px 30px;

    border-radius:24px;

    background:
    rgba(255,255,255,.04);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.06);

    min-width:140px;
}

.stat-box h3{

    font-size:30px;

    color:#ffb400;

    margin-bottom:6px;
}

.stat-box span{

    font-size:13px;

    color:#bcbcbc;
}

/* ========================================================= */
/* APP SLIDER SECTION */
/* ========================================================= */

.app-slider-section{

    position:relative;

    overflow:hidden;

    padding:90px 0;

    background:
    linear-gradient(
    to bottom,
    #090018,
    #040009
    );
}

/* TITLE */

.slider-title-wrap{

    text-align:center;

    margin-bottom:50px;
}

.slider-title-wrap h2{

    font-size:40px;

    font-weight:800;

    margin-bottom:12px;
}

.slider-title-wrap p{

    color:#ffb400;

    font-size:18px;
}

/* SLIDER AREA */

.app-slider-area{

    width:100%;

    overflow:hidden;

    position:relative;
}

/* TRACK */

.slider-track{

    display:flex;

    align-items:center;

    width:calc(420px * 8);

    animation:scrollSlider 25s linear infinite;
}

/* ITEM */

.slider-item{

    width:400px;

    height:250px;

    margin-right:20px;

    border-radius:25px;

    overflow:hidden;

    flex-shrink:0;

    position:relative;

    background:#111;

    border:
    1px solid rgba(255,255,255,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.4);
}

.slider-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;
}

.slider-item:hover img{
    transform:scale(1.05);
}

/* OVERLAY */

.slider-item::before{

    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.4),
    transparent
    );

    z-index:2;
}

/* ANIMATION */

@keyframes scrollSlider{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-420px * 4));
    }
}
/* ===================================== */
/* FEATURES SECTION */
/* ===================================== */

.features-section{

    position:relative;

    padding:85px 0;

    background:
    linear-gradient(
    to bottom,
    #060011,
    #020007
    );
}

/* DOWNLOAD BOX */

.download-code-box{

    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;

    padding:26px 30px;

    margin-bottom:55px;

    border-radius:28px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    box-shadow:
    0 15px 50px rgba(0,0,0,.3);
}

.download-code-box span{

    color:#d5d5d5;

    font-size:14px;

    margin-bottom:10px;
}

.download-code-box strong{

    font-size:34px;

    font-weight:800;

    color:#ffb400;

    letter-spacing:2px;
}

/* TITLE */

.section-title{

    text-align:center;

    margin-bottom:50px;
}

.section-title span{

    color:#15d1c5;

    font-size:13px;

    letter-spacing:2px;
}

.section-title h2{

    font-size:42px;

    font-weight:800;

    margin-top:14px;

    letter-spacing:-1px;
}

/* CARD */

.feature-card{

    position:relative;

    height:100%;

    padding:34px 26px;

    border-radius:28px;

    overflow:hidden;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    transition:.4s;

    box-shadow:
    0 15px 50px rgba(0,0,0,.22);
}

/* HOVER */

.feature-card:hover{

    transform:translateY(-8px);

    border-color:
    rgba(255,153,0,.25);

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

/* TOP GLOW */

.feature-card::before{

    content:'';

    position:absolute;

    width:180px;
    height:180px;

    top:-90px;
    right:-90px;

    background:
    radial-gradient(circle,
    rgba(255,153,0,.15),
    transparent);

    z-index:1;
}
/* Desktop */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

/* Hide hamburger on desktop */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 991px) {

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .header-btns {
        display: none;
    }
}
/* ICON */

.feature-icon{

    position:relative;

    z-index:2;

    width:70px;
    height:70px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #8b5cf6,
    #ff9900
    );

    font-size:28px;

    margin-bottom:24px;

    box-shadow:
    0 10px 30px rgba(139,92,246,.35);
}

/* TITLE */

.feature-card h4{

    position:relative;

    z-index:2;

    font-size:22px;

    margin-bottom:15px;

    font-weight:700;
}

/* TEXT */

.feature-card p{

    position:relative;

    z-index:2;

    color:#c9c9c9;

    font-size:14px;

    line-height:1.9;
}

/* RESPONSIVE */

@media(max-width:991px){

.section-title h2{
    font-size:34px;
}

.download-code-box strong{
    font-size:28px;
}

}

@media(max-width:768px){

.features-section{
    padding:70px 0;
}

.section-title h2{
    font-size:28px;
}

.feature-card{
    padding:30px 22px;
}

.feature-card h4{
    font-size:20px;
}

.feature-card p{
    font-size:13px;
}

.download-code-box strong{
    font-size:24px;
}

}
/* ===================================== */
/* SPORTS SLIDER BOX SECTION */
/* ===================================== */

.sports-slider-section{

    position:relative;

    padding:90px 0;

    background:
    linear-gradient(
    to bottom,
    #05000f,
    #020006
    );
}

/* MAIN BOX */

.sports-main-box{

    position:relative;

    width:100%;

    max-width:1180px;

    margin:auto;

    overflow:hidden;

    border-radius:34px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    padding:22px;

    box-shadow:
    0 20px 70px rgba(0,0,0,.35);
}

/* WRAP */

.sports-slider-wrap{

    overflow:hidden;

    border-radius:24px;
}

/* TRACK */

.sports-slider-track{

    display:flex;

    width:max-content;

    animation:sportsSlider 25s linear infinite;
}

/* ITEM */

.sports-slide{

    width:320px;

    height:200px;

    flex-shrink:0;

    overflow:hidden;

    margin-right:0;
}

/* IMAGE */

.sports-slide img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;
}

/* HOVER */

.sports-slide:hover img{
    transform:scale(1.08);
}

/* OVERLAY */

.sports-slide::before{

    content:'';

    position:absolute;

    inset:0;

    

    z-index:2;
}

/* ANIMATION */

@keyframes sportsSlider{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-320px * 5));
    }

}

/* MOBILE */

@media(max-width:768px){

.sports-main-box{
    padding:14px;
}

.sports-slide{

    width:220px;
    height:140px;
}

@keyframes sportsSlider{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-220px * 5));
    }

}

}
/* ===================================== */
/* CONTENT SECTION */
/* ===================================== */

.content-section{

    position:relative;

    padding:100px 0;

    background:
    linear-gradient(
    to bottom,
    #050010,
    #020006
    );
}

/* IMAGE */

.content-image{

    position:relative;

    overflow:hidden;

    border-radius:34px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    padding:16px;

    box-shadow:
    0 20px 70px rgba(0,0,0,.35);
}

.content-image img{

    width:100%;

    border-radius:24px;

    object-fit:cover;
}

/* RIGHT */

.content-right{
    padding-left:40px;
}

/* MINI TITLE */

.content-mini-title{

    color:#15d1c5;

    font-size:13px;

    letter-spacing:2px;

    font-weight:600;
}

/* TITLE */

.content-right h2{

    font-size:52px;

    font-weight:800;

    margin-top:16px;

    line-height:1.1;
}

/* UNDERLINE */

.title-line{

    width:120px;
    height:5px;

    border-radius:20px;

    margin:24px 0;

    background:
    linear-gradient(
    90deg,
    #ff9900,
    #8b5cf6
    );
}

/* TEXT */

.content-text{

    color:#cfcfcf;

    font-size:15px;

    line-height:1.9;

    margin-bottom:35px;
}

/* CHANNEL LIST */

.channel-list{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;
}

/* ITEM */

.channel-item{

    position:relative;

    padding-left:26px;

    color:#fff;

    font-size:15px;

    font-weight:500;
}

/* DOT */

.channel-item::before{

    content:'';

    position:absolute;

    left:0;
    top:8px;

    width:10px;
    height:10px;

    border-radius:50%;

    background:#ff9900;

    box-shadow:
    0 0 15px rgba(255,153,0,.8);
}

/* STATS */

.content-stats{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

/* BOX */

.content-stat-box{

    flex:1;

    min-width:160px;

    padding:24px 22px;

    border-radius:24px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.25);
}

/* TITLE */

.content-stat-box h3{

    font-size:28px;

    color:#ffb400;

    margin-bottom:10px;

    font-weight:800;
}

/* TEXT */

.content-stat-box span{

    color:#cfcfcf;

    font-size:13px;
}

/* RESPONSIVE */

@media(max-width:991px){

.content-right{
    padding-left:0;
    margin-top:50px;
}

.content-right h2{
    font-size:40px;
}

}

@media(max-width:768px){

.content-section{
    padding:70px 0;
}

.content-right h2{
    font-size:32px;
}

.channel-list{
    grid-template-columns:1fr;
}

.content-stat-box{
    width:100%;
}

}
/* ===================================== */
/* PRICING SECTION */
/* ===================================== */

.pricing-section{

    position:relative;

    padding:100px 0;

    background:
    linear-gradient(
    to bottom,
    #060010,
    #020006
    );
}

/* TABS */

.pricing-tabs{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:50px;

    margin-bottom:55px;

    flex-wrap:wrap;
}

/* TAB BUTTON */

.tab-btn{

    padding:16px 30px;

    border:none;

    border-radius:18px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.4s;
}

.tab-btn.active,
.tab-btn:hover{

    background:
    linear-gradient(
    135deg,
    #8b5cf6,
    #ff9900
    );

    box-shadow:
    0 10px 35px rgba(139,92,246,.35);
}

/* CONTENT */

.pricing-content{
    display:none;
}

.pricing-content.active-tab{
    display:block;
}

/* CARD */

.pricing-card{

    position:relative;

    height:100%;

    padding:34px 26px;

    border-radius:30px;

    overflow:hidden;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    transition:.4s;

    box-shadow:
    0 15px 50px rgba(0,0,0,.25);
}

/* HOVER */

.pricing-card:hover{

    transform:translateY(-10px);

    border-color:
    rgba(255,153,0,.25);
}

/* OFFER */

.offer-tag{

    position:absolute;

    top:18px;
    right:18px;

    padding:8px 14px;

    border-radius:40px;

    background:
    linear-gradient(
    135deg,
    #ff9900,
    #8b5cf6
    );

    font-size:11px;

    font-weight:700;
}

/* OLD PRICE */

.old-price{

    display:block;

    color:#bdbdbd;

    margin-bottom:14px;

    font-size:13px;
}

/* TITLE */

.pricing-card h3{

    font-size:28px;

    margin-bottom:16px;

    font-weight:700;
}

/* PRICE */

.price{

    font-size:52px;

    font-weight:800;

    color:#ffb400;

    margin-bottom:24px;
}

/* LIST */

.pricing-card ul li{

    position:relative;

    padding-left:24px;

    margin-bottom:14px;

    color:#d5d5d5;

    font-size:14px;

    line-height:1.7;
}

/* DOT */

.pricing-card ul li::before{

    content:'';

    position:absolute;

    left:0;
    top:8px;

    width:10px;
    height:10px;

    border-radius:50%;

    background:#15d1c5;
}

/* NOTE */

.plan-note{

    margin-top:24px;

    padding:18px;

    border-radius:18px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);

    color:#cfcfcf;

    font-size:13px;

    line-height:1.8;
}

/* BUTTONS */

.pricing-buttons{

    margin-top:28px;

    display:flex;

    flex-direction:column;

    gap:14px;
}

/* LIFETIME */

.lifetime-card{

    border:
    1px solid rgba(255,153,0,.3);

    box-shadow:
    0 20px 60px rgba(255,153,0,.12);
}

/* RESPONSIVE */

@media(max-width:768px){

.pricing-section{
    padding:70px 0;
}

.tab-btn{
    width:100%;
}

.price{
    font-size:42px;
}

.pricing-card h3{
    font-size:24px;
}

}
/* ===================================== */
/* MOVIE SLIDER SECTION */
/* ===================================== */

.movie-slider-section{

    position:relative;

    padding:100px 0;

    overflow:hidden;

    background:
    linear-gradient(
    to bottom,
    #05000f,
    #020006
    );
}

/* MAIN BOX */

.movie-slider-box{

    position:relative;

    overflow:hidden;

    border-radius:34px;

    padding:24px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    box-shadow:
    0 20px 70px rgba(0,0,0,.35);

    margin-top:55px;
}

/* GLOW */

.movie-glow{

    position:absolute;

    top:-120px;
    right:-120px;

    width:280px;
    height:280px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,153,0,.18),
    transparent);

    z-index:1;
}

/* WRAP */

.movie-slider-wrap{

    position:relative;

    z-index:2;

    overflow:hidden;

    border-radius:24px;
}

/* TRACK */

.movie-slider-track{

    display:flex;

    width:max-content;

    animation:movieSlider 35s linear infinite;
}

/* ITEM */

.movie-slide{

    position:relative;

    width:240px;

    height:360px;

    flex-shrink:0;

    overflow:hidden;

    margin-right:0;
}

/* IMAGE */

.movie-slide img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;
}

/* HOVER */

.movie-slide:hover img{

    transform:scale(1.08);
}

/* OVERLAY */

.movie-slide::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.5),
    transparent
    );

    z-index:2;
}

/* ANIMATION */

@keyframes movieSlider{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-240px * 6));
    }

}

/* RESPONSIVE */

@media(max-width:768px){

.movie-slider-section{
    padding:70px 0;
}

.movie-slider-box{
    padding:14px;
}

.movie-slide{

    width:160px;
    height:240px;
}

@keyframes movieSlider{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-160px * 6));
    }

}

}
/* ===================================== */
/* INSTALL SECTION */
/* ===================================== */

.install-section{

    position:relative;

    padding:100px 0;

    background:
    linear-gradient(
    to bottom,
    #05000f,
    #020006
    );
}

/* SUBTITLE */

.install-subtitle{

    color:#cfcfcf;

    font-size:15px;

    margin-top:18px;
}

/* MAIN BOX */

.install-main-box{

    position:relative;

    margin-top:60px;

    padding:26px;

    border-radius:36px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    box-shadow:
    0 20px 70px rgba(0,0,0,.35);
}

/* CARD */

.install-card{

    position:relative;

    height:100%;

    padding:40px 30px;

    border-radius:28px;

    overflow:hidden;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);

    transition:.4s;
}

/* HOVER */

.install-card:hover{

    transform:translateY(-10px);

    border-color:
    rgba(255,153,0,.25);

    box-shadow:
    0 15px 50px rgba(0,0,0,.3);
}

/* STEP NUMBER */

.step-number{

    width:70px;
    height:70px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #8b5cf6,
    #ff9900
    );

    font-size:26px;

    font-weight:800;

    margin-bottom:28px;

    box-shadow:
    0 10px 35px rgba(139,92,246,.35);
}

/* TITLE */

.install-card h3{

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;
}

/* LINE */

.install-line{

    width:100px;
    height:5px;

    border-radius:30px;

    margin-bottom:24px;

    background:
    linear-gradient(
    90deg,
    #ff9900,
    #8b5cf6
    );
}

/* TEXT */

.install-card p{

    color:#d0d0d0;

    font-size:14px;

    line-height:1.9;

    margin-bottom:16px;
}

/* APPS */

.install-apps{

    margin-top:20px;
}

.install-apps li{

    position:relative;

    padding-left:24px;

    margin-bottom:14px;

    color:#fff;

    font-size:14px;
}

/* DOT */

.install-apps li::before{

    content:'';

    position:absolute;

    left:0;
    top:8px;

    width:10px;
    height:10px;

    border-radius:50%;

    background:#15d1c5;

    box-shadow:
    0 0 15px rgba(21,209,197,.8);
}

/* RESPONSIVE */

@media(max-width:768px){

.install-section{
    padding:70px 0;
}

.install-main-box{
    padding:16px;
}

.install-card{
    padding:32px 24px;
}

.install-card h3{
    font-size:24px;
}

.step-number{
    width:60px;
    height:60px;
    font-size:22px;
}

}
/* ===================================== */
/* TESTIMONIAL SECTION */
/* ===================================== */

.testimonial-section{

    position:relative;

    padding:100px 0;

    background:
    linear-gradient(
    to bottom,
    #05000f,
    #020006
    );
}

/* SUBTITLE */

.testimonial-subtitle{

    color:#cfcfcf;

    font-size:15px;

    margin-top:16px;
}

/* MAIN BOX */

.testimonial-main-box{

    position:relative;

    margin-top:60px;

    padding:28px;

    border-radius:36px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    box-shadow:
    0 20px 70px rgba(0,0,0,.35);
}

/* CARD */

.testimonial-card{

    position:relative;

    height:100%;

    padding:38px 30px;

    border-radius:28px;

    overflow:hidden;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);

    transition:.4s;
}

/* ACTIVE CARD */

.active-review{

    border:
    1px solid rgba(255,153,0,.25);

    box-shadow:
    0 15px 60px rgba(255,153,0,.12);
}

/* HOVER */

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:
    rgba(255,153,0,.25);
}

/* STARS */

.quote-icon{

    font-size:24px;

    color:#ffb400;

    margin-bottom:24px;
}

/* TEXT */

.testimonial-card p{

    color:#d0d0d0;

    font-size:14px;

    line-height:2;

    margin-bottom:34px;
}

/* USER */

.testimonial-user{

    display:flex;

    align-items:center;

    gap:16px;
}

/* IMAGE */

.testimonial-user img{

    width:65px;
    height:65px;

    border-radius:50%;

    object-fit:cover;

    border:
    2px solid rgba(255,255,255,.1);
}

/* NAME */

.testimonial-user h4{

    font-size:18px;

    margin-bottom:5px;

    font-weight:700;
}

/* COUNTRY */

.testimonial-user span{

    color:#bdbdbd;

    font-size:13px;
}

/* RESPONSIVE */

@media(max-width:768px){

.testimonial-section{
    padding:70px 0;
}

.testimonial-main-box{
    padding:16px;
}

.testimonial-card{
    padding:30px 22px;
}

.quote-icon{
    font-size:20px;
}

}
/* ===================================== */
/* FAQ SECTION */
/* ===================================== */

.faq-section{

    position:relative;

    padding:100px 0;

    background:
    linear-gradient(
    to bottom,
    #05000f,
    #020006
    );
}

/* SUBTITLE */

.faq-subtitle{

    color:#cfcfcf;

    font-size:15px;

    margin-top:16px;
}

/* MAIN BOX */

.faq-main-box{

    position:relative;

    max-width:950px;

    margin:60px auto 0;

    padding:30px;

    border-radius:36px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    box-shadow:
    0 20px 70px rgba(0,0,0,.35);
}

/* ITEM */

.faq-item{

    margin-bottom:20px;

    border-radius:24px;

    overflow:hidden;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);

    transition:.4s;
}

/* QUESTION */

.faq-question{

    width:100%;

    border:none;

    outline:none;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:28px 30px;

    background:none;

    color:#fff;

    font-size:18px;

    font-weight:600;

    text-align:left;
}

/* PLUS */

.faq-question span{

    width:36px;
    height:36px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    rgba(255,255,255,.05);

    font-size:22px;

    transition:.4s;
}

/* ANSWER */

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.4s;

    color:#d0d0d0;

    font-size:14px;

    line-height:2;

    padding:0 30px;
}

/* ACTIVE */

.active-faq{

    border:
    1px solid rgba(255,153,0,.25);

    box-shadow:
    0 10px 40px rgba(255,153,0,.08);
}

.active-faq .faq-answer{

    max-height:300px;

    padding:0 30px 30px;
}

.active-faq .faq-question span{

    transform:rotate(45deg);

    background:#ff9900;
}

/* RESPONSIVE */

@media(max-width:768px){

.faq-section{
    padding:70px 0;
}

.faq-main-box{
    padding:16px;
}

.faq-question{

    padding:22px 20px;

    font-size:15px;
}

.active-faq .faq-answer{

    padding:0 20px 20px;
}

}
/* ========================================================= */
/* FOOTER */
/* ========================================================= */

/* ===================================== */
/* FOOTER */
/* ===================================== */

.footer{

    position:relative;

    padding:90px 0 40px;

    overflow:hidden;

    background:
    linear-gradient(
    to bottom,
    #05000f,
    #000000
    );

    border-top:
    1px solid rgba(255,255,255,.05);
}

/* TOP */

.footer-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    flex-wrap:wrap;

    padding-bottom:40px;

    border-bottom:
    1px solid rgba(255,255,255,.06);
}

/* LOGO */

.footer-logo{

    font-size:42px;

    font-weight:800;

    margin-bottom:10px;

    color:#fff;
}

.footer-logo span{

    color:#ff9900;
}

.footer-logo-wrap p{

    color:#bdbdbd;

    font-size:14px;
}

/* ===================================== */
/* SOCIAL IMAGE BUTTONS */
/* ===================================== */

.footer-socials{

    display:flex;

    align-items:center;

    gap:18px;
}

/* BUTTON */

.social-btn{

    width:62px;
    height:62px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    transition:.4s;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.25);
}

/* IMAGE */

.social-btn img{

    width:28px;
    height:28px;

    object-fit:contain;
}

/* HOVER */

.social-btn:hover{

    transform:translateY(-6px);

    background:
    rgba(255,255,255,.08);

    border-color:
    rgba(255,153,0,.25);

    box-shadow:
    0 12px 40px rgba(255,153,0,.2);
}

/* MOBILE */

@media(max-width:768px){

.social-btn{

    width:52px;
    height:52px;
}

.social-btn img{

    width:24px;
    height:24px;
}

}

/* MENU */

.footer-menu{

    display:flex;

    align-items:center;

    justify-content:center;

    flex-wrap:wrap;

    gap:35px;

    margin-top:45px;
}

/* LINKS */

.footer-menu a{

    color:#d0d0d0;

    font-size:15px;

    transition:.3s;
}

.footer-menu a:hover{

    color:#ff9900;
}

/* PAYMENT */

.payment-box{

    margin-top:45px;

    text-align:center;
}

.payment-box img{

    max-width:420px;

    width:100%;

    margin:auto;

    opacity:.95;
}

/* COPYRIGHT */

.footer-bottom{

    margin-top:40px;

    padding-top:28px;

    border-top:
    1px solid rgba(255,255,255,.05);

    text-align:center;

    color:#8d8d8d;

    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:768px){

.footer{
    padding:70px 0 30px;
}

.footer-top{

    flex-direction:column;

    text-align:center;
}

.footer-logo{
    font-size:34px;
}

.footer-menu{

    gap:18px;
}

.footer-menu a{

    font-size:14px;
}

.footer-socials a{

    width:48px;
    height:48px;

    font-size:18px;
}

.payment-box img{

    max-width:280px;
}

}
/* ========================================================= */
/* RESPONSIVE */
/* ========================================================= */

@media(max-width:991px){

.hero-section{
    padding:130px 0 80px;
    min-height:auto;
}

.hero-content{
    text-align:center;
    margin:auto;
}

.hero-content h1{
    font-size:52px;
}

.hero-description{
    margin:auto;
}

.hero-buttons{
    justify-content:center;
}

.live-status-wrap{
    text-align:center;
}

.hero-stats{
    justify-content:center;
    flex-wrap:wrap;
}

.hero-image{
    margin-top:70px;
}

.slider-title-wrap h2{
    font-size:32px;
}

.slider-item{
    width:320px;
    height:210px;
}

}

@media(max-width:768px){

.hero-section{
    padding:120px 0 60px;
}

.hero-content h1{
    font-size:40px;
}

.hero-description{
    font-size:14px;
}

.hero-buttons{
    flex-direction:column;
}

.btn-main,
.btn-outline{
    width:100%;
}

.hero-image img{
    max-width:100%;
}

.stat-box{
    width:100%;
}

.logo{
    font-size:28px;
}

.nav-menu{
    display:none;
}

.slider-track{
    width:calc(280px * 8);
}

.slider-item{
    width:260px;
    height:170px;
}

@keyframes scrollSlider{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-280px * 4));
    }
}

}