/*=========================
    GOOGLE FONT
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --bg:#07070d;
    --bg2:#0d0d18;
    --card:#11111d;
    --card2:#171726;

    --purple:#8f3dff;
    --purple2:#b04cff;

    --white:#fff;
    --gray:#bfbfbf;

    --radius:18px;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:#fff;
    overflow-x:hidden;

}

body::before{

    content:"";
    position:fixed;
    inset:0;

    background:

    radial-gradient(circle at top left,#7d2cff40,transparent 40%),
    radial-gradient(circle at bottom right,#5d00ff35,transparent 40%);

    z-index:-1;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:white;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:1400px;
    margin:auto;

}


/*=========================
HEADER
==========================*/

header{

    position:sticky;
    top:0;
    z-index:999;

    background:#09090fcc;
    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.06);

}

.nav{

    display:flex;
    align-items:center;
    justify-content:space-between;

    height:85px;

}

.logo{

    display:flex;
    align-items:center;
    gap:15px;

}

.logo img{

    width:42px;

}

.logo span{

    font-size:30px;
    font-weight:700;

}

.menu{

    display:flex;
    gap:35px;

}

.menu a{

    color:#ccc;
    font-size:14px;
    transition:.3s;

}

.menu a:hover,
.menu .active{

    color:var(--purple);

}

.right{

    display:flex;
    align-items:center;
    gap:25px;

}

.discord{

    background:linear-gradient(45deg,#6d1dff,#a93fff);

    color:white;
    border:none;

    padding:13px 28px;

    border-radius:12px;

    cursor:pointer;

    font-weight:600;

    transition:.35s;

}

.discord:hover{

    transform:translateY(-3px);

    box-shadow:0 0 25px #8b2dff;

}


/*=========================
HERO
==========================*/

.hero{

    padding:90px 0;

}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;

}

.hero h1{

    font-size:70px;
    line-height:1.05;
    font-weight:800;

}

.hero h2{

    margin-top:20px;

    font-size:80px;

    color:var(--purple);

    font-weight:800;

    text-transform:uppercase;

}

.hero p{

    margin:35px 0;

    color:#bfbfbf;

    line-height:1.8;

    max-width:520px;

}

.buttons{

    display:flex;
    gap:20px;

    margin-bottom:40px;

}

.btn{

    padding:17px 35px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.btn i{

    margin-right:10px;

}

.purple{

    background:linear-gradient(45deg,#7b23ff,#b640ff);

}

.dark{

    border:2px solid #6f2dff;

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 0 25px #8d39ff;

}

.socials{

    display:flex;
    gap:18px;

}

.socials i{

    width:46px;
    height:46px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#141424;

    transition:.3s;

    cursor:pointer;

}

.socials i:hover{

    background:var(--purple);

    transform:translateY(-4px);

}


/*=========================
LIVE CARD
==========================*/

.live-card{

    background:var(--card);

    border-radius:20px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.05);

    box-shadow:0 20px 60px rgba(0,0,0,.4);

}

.live-card img{

    height:420px;

    object-fit:cover;

}

.live-badge{

    position:absolute;

    margin:20px;

    background:#ff2f56;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.card-content{

    padding:25px;

}

.card-content h3{

    margin-bottom:10px;

}

.card-content p{

    color:#aaa;

}


/*=========================
SECTIONS
==========================*/

section{

    padding:70px 0;

}

.section-title{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:40px;

}

.section-title h2{

    font-size:34px;

}

.section-title a{

    color:var(--purple);

}


/*=========================
CARDS
==========================*/

.clip-grid,
.streamer-grid{

    display:grid;

    gap:25px;

}

.clip-grid{

    grid-template-columns:repeat(4,1fr);

}

.streamer-grid{

    grid-template-columns:repeat(5,1fr);

}

.clip-card,
.streamer-card,
.stat,
.planning,
.games,
.news{

    background:var(--card);

    border-radius:18px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.clip-card:hover,
.streamer-card:hover{

    transform:translateY(-8px);

    box-shadow:0 0 25px #7425ff;

}

.clip-card h4{

    padding:18px;

}

.clip-card span{

    color:#aaa;

    padding:0 18px 18px;

    display:block;

}

.streamer-card{

    padding:30px;

    text-align:center;

}

.streamer-card img{

    width:120px;

    height:120px;

    border-radius:50%;

    margin:auto;

    border:4px solid var(--purple);

}

.streamer-card h3{

    margin-top:20px;

}

.streamer-card p{

    color:#a6a6a6;

    margin:10px 0 25px;

}

.streamer-card button{

    width:100%;

    border:none;

    background:linear-gradient(45deg,#7423ff,#b442ff);

    color:white;

    padding:14px;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;

}

/*======================================
    STATS
======================================*/

.stats{
    padding:60px 0;
}

.stat-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.stat{
    padding:35px 20px;
    text-align:center;
    transition:.35s;
}

.stat:hover{
    transform:translateY(-8px);
    border-color:var(--purple);
    box-shadow:0 0 25px rgba(143,61,255,.35);
}

.stat i{
    font-size:34px;
    color:var(--purple);
    margin-bottom:20px;
}

.stat h2{
    font-size:42px;
    margin-bottom:8px;
}

.stat span{
    color:#9e9e9e;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:13px;
}


/*======================================
BOTTOM GRID
======================================*/

.bottom-grid{

    display:grid;
    grid-template-columns:280px 1fr 350px;
    gap:30px;

}

.planning,
.games,
.news{

    padding:25px;

}

.planning h2,
.games h2,
.news h2{

    font-size:24px;
    margin-bottom:25px;

}

.planning ul li{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.06);

}

.planning ul li:last-child{

    border:none;

}

.planning span{

    color:var(--purple);

    font-weight:600;

}


/*======================================
GAME LIST
======================================*/

.game-list{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;

}

.game-list img{

    border-radius:14px;

    height:220px;

    object-fit:cover;

    transition:.35s;

    cursor:pointer;

}

.game-list img:hover{

    transform:scale(1.05);

    box-shadow:0 0 20px rgba(143,61,255,.5);

}


/*======================================
NEWS
======================================*/

.news ul{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.news li{

    padding:16px;

    background:#141424;

    border-radius:12px;

    transition:.3s;

    cursor:pointer;

}

.news li:hover{

    background:#1b1b2f;

    transform:translateX(6px);

}


/*======================================
FOOTER
======================================*/

footer{

    margin-top:90px;

    background:#090912;

    border-top:1px solid rgba(255,255,255,.05);

}

.footer{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 2fr;

    gap:40px;

    padding:70px 0;

}

.footer h2{

    font-size:30px;
    margin-bottom:20px;

}

.footer h4{

    margin-bottom:20px;
    color:var(--purple);

}

.footer p{

    color:#9c9c9c;
    line-height:1.8;

}

.footer a{

    display:block;

    color:#bdbdbd;

    margin-bottom:14px;

    transition:.3s;

}

.footer a:hover{

    color:var(--purple);

    padding-left:8px;

}


/*======================================
NEWSLETTER
======================================*/

.footer form{

    display:flex;
    gap:10px;
    margin-top:20px;

}

.footer input{

    flex:1;

    height:50px;

    background:#141421;

    border:1px solid rgba(255,255,255,.05);

    color:white;

    padding:0 20px;

    border-radius:12px;

    outline:none;

}

.footer button{

    background:linear-gradient(45deg,#7f29ff,#b63cff);

    color:white;

    border:none;

    padding:0 28px;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

}

.footer button:hover{

    transform:translateY(-3px);

    box-shadow:0 0 20px rgba(143,61,255,.5);

}


/*======================================
COPYRIGHT
======================================*/

.copyright{

    text-align:center;

    padding:25px;

    color:#8e8e8e;

    border-top:1px solid rgba(255,255,255,.05);

}


/*======================================
SCROLLBAR
======================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0b0b12;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(#6f28ff,#b83dff);

    border-radius:20px;

}


/*======================================
ANIMATIONS
======================================*/

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

.hero-right{

    animation:floating 5s ease-in-out infinite;

}

.live-card{

    position:relative;

}

.live-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:20px;

    border:1px solid rgba(143,61,255,.25);

    pointer-events:none;

}


/*======================================
HOVER GLOW
======================================*/

.clip-card:hover,
.streamer-card:hover,
.stat:hover,
.games:hover,
.news:hover,
.planning:hover{

    box-shadow:
        0 0 0 1px rgba(143,61,255,.2),
        0 10px 40px rgba(143,61,255,.3);

}


/*======================================
TEXT SELECTION
======================================*/

::selection{

    background:var(--purple);

    color:#fff;

}

.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

.top-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:linear-gradient(45deg,#7a2dff,#b144ff);
    color:#fff;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
    box-shadow:0 10px 25px rgba(143,61,255,.4);
}

.top-btn.visible{
    opacity:1;
    visibility:visible;
}

.top-btn:hover{
    transform:translateY(-5px);
}

.active-news{
    border-left:4px solid var(--purple);
    background:#1c1c31 !important;
}