/*======================================
WatchOnlineTV Landing Page
style.css (Part 1)
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#070b18 url('images/background.jpg') center center/cover fixed no-repeat;
    color:#fff;
    overflow-x:hidden;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(5,8,20,.82);
    z-index:-1;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*=========================
HEADER
=========================*/

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(10,12,25,.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo img{
    width:65px;
}

nav ul{
    list-style:none;
    display:flex;
    gap:40px;
}

nav ul li a{
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover{
    color:#ff3c7d;
}

.live-top{
    background:linear-gradient(90deg,#ff0055,#ff7a00);
    padding:12px 24px;
    border-radius:40px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    box-shadow:0 0 25px rgba(255,0,100,.4);
}

.live-top span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#fff;
}

/*=========================
HERO
=========================*/

.hero{
    padding:160px 0 90px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.tag{
    color:#ff2d6f;
    font-size:20px;
    font-weight:700;
    display:block;
    margin-bottom:20px;
}

.hero h1{
    font-size:52px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:20px;
    max-width:600px;
}

.hero p{
    color:#cfd5e4;
    font-size:20px;
    margin-bottom:35px;
}

.live-status{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#10192c;
    padding:15px 25px;
    border-radius:12px;
    margin-bottom:35px;
    font-weight:700;
    color:#20d9ff;
}

.dot{
    width:18px;
    height:18px;
    background:#ff003d;
    border-radius:50%;
    animation:blink 1s infinite;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-live{
    background:linear-gradient(90deg,#ff005d,#ff8400);
    color:#fff;
    text-decoration:none;
    padding:18px 38px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
    box-shadow:0 0 30px rgba(255,0,120,.4);
}

.btn-live:hover{
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    padding:18px 38px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-outline:hover{
    background:#fff;
    color:#000;
}

.video-box{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.video-box img{
    width:100%;
    display:block;
}

.play-button{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:110px;
    height:110px;
    border-radius:50%;
    background:linear-gradient(135deg,#ff0055,#ff8400);
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
    font-size:40px;
    cursor:pointer;
    z-index:10;
    box-shadow:0 0 30px rgba(255,0,85,.6);
    transition:all .35s ease;
}

.play-button:hover{
    transform:translate(-50%,-50%) scale(1.12);
    box-shadow:0 0 50px rgba(255,0,85,.9);
}

.play-button i{
    margin-left:6px;
}

/*=========================
ANIMATIONS
=========================*/

@keyframes blink{

0%,100%{
opacity:1;
}

50%{
opacity:.3;
}

}

.pulse{
transform:scale(1.05);
}

.zoom{
transform:translate(-50%,-50%) scale(1.08);
}

/*======================================
FEATURES SECTION
======================================*/

.features{
    padding:100px 0;
}

.features h2,
.event-info h2,
.watch-now h2{
    text-align:center;
    font-size:42px;
    margin-bottom:20px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.feature-box{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    backdrop-filter:blur(10px);
}

.feature-box:hover{
    transform:translateY(-10px);
    border-color:#ff3d7a;
    box-shadow:0 15px 40px rgba(255,0,100,.25);
}

.feature-box i{
    font-size:50px;
    color:#ff3d7a;
    margin-bottom:20px;
}

.feature-box h3{
    font-size:24px;
    margin-bottom:15px;
}

.feature-box p{
    color:#c7d0df;
    line-height:1.8;
}

/*======================================
EVENT INFO
======================================*/

.event-info{
    padding:100px 0;
}

.section-text{
    max-width:760px;
    margin:0 auto 50px;
    text-align:center;
    color:#cfd5e4;
    line-height:1.8;
    font-size:18px;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.info-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-8px);
    border-color:#00d9ff;
}

.info-card h3{
    margin-bottom:15px;
    color:#00d9ff;
}

.info-card p{
    color:#d3d8e3;
    line-height:1.8;
}

/*======================================
STATISTICS
======================================*/

.stats{
    padding:80px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:linear-gradient(135deg,#10172a,#1b2540);
    border-radius:20px;
    text-align:center;
    padding:40px 20px;
    border:1px solid rgba(255,255,255,.08);
}

.stat-box h2{
    font-size:48px;
    color:#ff3d7a;
    margin-bottom:10px;
}

.stat-box p{
    color:#d6dce7;
    font-size:18px;
}

/*======================================
READY TO WATCH
======================================*/

.watch-now{
    padding:110px 0;
    text-align:center;
}

.watch-now p{
    max-width:700px;
    margin:20px auto 40px;
    color:#d5dce7;
    line-height:1.9;
    font-size:18px;
}

.watch-btn{
    display:inline-block;
    text-decoration:none;
    color:#fff;
    font-weight:700;
    padding:18px 45px;
    border-radius:50px;
    background:linear-gradient(90deg,#ff0055,#ff8400);
    box-shadow:0 0 35px rgba(255,0,100,.4);
    transition:.3s;
}

.watch-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(255,0,100,.5);
}

/*======================================
FOOTER
======================================*/

footer{
    padding:50px 0;
    margin-top:80px;
    border-top:1px solid rgba(255,255,255,.08);
    background:rgba(8,12,22,.90);
}

footer .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

footer p{
    color:#cfd5e4;
    font-size:15px;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:linear-gradient(135deg,#ff0055,#ff8400);
    transform:translateY(-5px);
}

/*======================================
BACK TO TOP BUTTON
======================================*/

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#ff0055,#ff8400);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    display:none;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(255,0,100,.45);
    transition:.3s;
    z-index:999;
}

#topBtn:hover{
    transform:translateY(-5px);
}

/*======================================
SCROLLBAR
======================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0c1325;
}

::-webkit-scrollbar-thumb{
    background:#ff3d7a;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#ff6a00;
}

/*======================================
RESPONSIVE - TABLET
======================================*/

@media (max-width:991px){

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.hero h1{
    font-size:46px;
}

.hero-buttons{
    justify-content:center;
}

.feature-grid{
    grid-template-columns:repeat(2,1fr);
}

.info-grid{
    grid-template-columns:1fr;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.header .container{
    flex-direction:column;
    height:auto;
    padding:20px 0;
}

nav ul{
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

}

/*======================================
RESPONSIVE - MOBILE
======================================*/

@media (max-width:576px){

.hero{
    padding-top:140px;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.tag{
    font-size:16px;
}

.btn-live,
.btn-outline,
.watch-btn{
    width:100%;
    text-align:center;
}

.feature-grid{
    grid-template-columns:1fr;
}

.stats-grid{
    grid-template-columns:1fr;
}

.video-box{
    margin-top:30px;
}

.play-button{
    width:75px;
    height:75px;
    font-size:26px;
}

.features h2,
.event-info h2,
.watch-now h2{
    font-size:30px;
}

footer .container{
    flex-direction:column;
    text-align:center;
}

.social-icons{
    justify-content:center;
}

}

/*======================================
EXTRA ANIMATIONS
======================================*/

.feature-box,
.info-card,
.stat-box,
.video-box{
    transition:all .35s ease;
}

.feature-box:hover,
.info-card:hover,
.stat-box:hover{
    transform:translateY(-10px);
}

.video-box:hover{
    transform:scale(1.02);
}

.btn-live,
.btn-outline,
.watch-btn{
    transition:all .3s ease;
}

.live-top{
    animation:livePulse 2s infinite;
}

@keyframes livePulse{

0%{
box-shadow:0 0 0 0 rgba(255,0,85,.5);
}

70%{
box-shadow:0 0 0 18px rgba(255,0,85,0);
}

100%{
box-shadow:0 0 0 0 rgba(255,0,85,0);
}

}

.play-button::before{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    border:2px solid rgba(255,255,255,.15);
    border-radius:50%;
    animation:ring 2s infinite;
}

.play-button::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border:2px solid rgba(255,0,85,.15);
    border-radius:50%;
    animation:ring 2.8s infinite;
}

@keyframes ring{

0%{
transform:scale(.8);
opacity:1;
}

100%{
transform:scale(1.4);
opacity:0;
}

}