*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#050505;
    color:white;
    overflow:hidden;
}

/* GLOW EFFECTS */

.bg-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(140px);
    z-index:-1;
}

.glow1{
    width:550px;
    height:550px;
    background:#4f6cff;
    top:-200px;
    left:-150px;
    opacity:0.18;
}

.glow2{
    width:450px;
    height:450px;
    background:white;
    bottom:-200px;
    right:-150px;
    opacity:0.05;
}

/* NAVBAR */

.navbar{
    width:95%;
    margin:20px auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 26px;

    border:1px solid rgba(255,255,255,0.08);

    border-radius:26px;

    background:rgba(255,255,255,0.03);

    backdrop-filter:blur(22px);

    animation:fadeUp 1s ease;
}

.left-nav{
    display:flex;
    align-items:center;
    gap:18px;
}

.logo{
    width:62px;
    border-radius:18px;
}

.left-nav h1{
    font-size:24px;
    font-weight:600;

    opacity:0.8;

    cursor:pointer;

    transition:0.3s;
}

.left-nav h1:hover{
    opacity:1;
    color:#4f6cff;
}

.divider{
    width:2px;
    height:50px;
    background:rgba(255,255,255,0.12);
}

.left-nav ul{
    display:flex;
    gap:34px;
    list-style:none;
}

.left-nav li{
    color:#888;
    font-size:20px;
    font-weight:500;

    cursor:pointer;

    transition:0.3s;

    position:relative;
}

.left-nav li:hover{
    color:white;
}

.left-nav li.active{
    color:#4f6cff;
}

.left-nav li.active::after{
    content:"";

    position:absolute;

    bottom:-8px;
    left:0;

    width:100%;
    height:3px;

    background:#4f6cff;

    border-radius:20px;

    box-shadow:0 0 12px #4f6cff;
}

/* RIGHT NAV */

.right-nav{
    display:flex;
    align-items:center;
    gap:18px;
}

.right-nav h2{
    font-size:24px;
    opacity:0.8;
}

.profile{
    width:58px;
    height:58px;
    border-radius:50%;
}

/* BACK BUTTON */

.back-button{
    margin-left:50px;

    opacity:0;

    transform:translateY(-10px);

    pointer-events:none;

    transition:0.4s;

    color:rgba(255,255,255,0.6);

    font-size:20px;
    font-weight:500;

    cursor:pointer;

    width:fit-content;
}

.back-button:hover{
    color:#4f6cff;
}

.show-back{
    opacity:1;
    transform:translateY(0px);
    pointer-events:auto;
}

/* HERO */

.hero{
    width:95%;
    margin:auto;

    height:80vh;

    display:flex;
    justify-content:space-between;
    align-items:center;

    animation:fadeUp 1s ease;
}

.hero-left h1{
    font-size:145px;
    line-height:1.02;
    font-weight:800;

    letter-spacing:-4px;
}
.hero-left{
    padding-left:20px;
}

.hero-left span{
    display:inline-block;
    margin-bottom:8px;
}

.blue{
    color:#4f6cff;

    text-shadow:
    0 0 18px rgba(79,108,255,0.7);
}

.white{
    color:white;

    text-shadow:
    0 0 12px rgba(255,255,255,0.35);
}

.hero-right{
    width:45%;
    text-align:center;
}

.hero-right p{
    font-size:31px;
    line-height:1.55;
    font-weight:700;
}

.blue-text{
    color:#4f6cff;
}

.hero-right button{
    margin-top:38px;

    padding:18px 42px;

    border:none;

    border-radius:18px;

    background:#4f6cff;

    color:white;

    font-size:32px;
    font-weight:700;

    cursor:pointer;

    transition:0.3s;

    box-shadow:
    0 0 25px rgba(79,108,255,0.4);
}

.hero-right button:hover{
    transform:translateY(-4px);

    box-shadow:
    0 0 35px rgba(79,108,255,0.7);
}

/* COMING PAGES */

.coming-page{
    height:80vh;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;

    text-align:center;

    animation:fadeUp 0.7s ease;
}

.coming-page h3{
    font-size:28px;
    color:#4f6cff;
    font-weight:600;
}

.coming-page h1{
    font-size:120px;
    font-weight:800;
}

.coming-page p{
    width:50%;
    margin-top:20px;

    font-size:24px;

    color:#bdbdbd;
}

/* PAGE SYSTEM */

.page{
    display:none;
}

.active-page{
    display:flex;
}

/* ANIMATION */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0px);
    }

}
/* BACKEND PAGE */

.backend-page{
    width:95%;
    margin:auto;

    height:80vh;

    display:flex;
    align-items:flex-start;
    justify-content:flex-start;

    padding-top:40px;

    animation:fadeUp 0.7s ease;
}

.backend-container{
    width:100%;
}

.backend-header h1{
    font-size:52px;
    font-weight:700;

    margin-bottom:30px;
}

.backend-header span{
    color:#4f6cff;
}

.games-panel{
    width:420px;

    background:#141414;

    border:1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:25px;

    box-shadow:
    0 0 30px rgba(0,0,0,0.35);
}

.games-panel h2{
    font-size:30px;
    margin-bottom:20px;

    color:#dcdcdc;
}

.games-panel ul{
    list-style:none;

    display:flex;
    flex-direction:column;

    gap:14px;
}

.games-panel li{
    background:#1d1d1d;

    padding:16px 20px;

    border-radius:14px;

    font-size:20px;

    transition:0.25s;

    cursor:pointer;
}

.games-panel li:hover{
    background:#262626;

    transform:translateX(6px);

    color:#4f6cff;
}

.quality-trigger{
    cursor:pointer;
}