/*==================================================
                TUTA GAMES
        Play Beyond Limits
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#070707;
    color:#ffffff;
    overflow-x:hidden;

}

/*==========================================
                SCROLLBAR
==========================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:#6D28D9;
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#8B5CF6;

}

/*==========================================
                NAVBAR
==========================================*/

.navbar{

    background:rgba(5,5,5,.75);
    backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(255,255,255,.06);
    padding:18px 0;
    transition:.35s;

}

.navbar-brand img{

    height:45px;

}

.nav-link{

    color:#bcbcbc!important;
    margin:0 10px;
    font-weight:500;
    transition:.3s;

}

.nav-link:hover{

    color:white!important;

}

.btn-primary{

    background:#7C3AED;
    border:none;
    border-radius:14px;
    padding:12px 28px;
    font-weight:600;
    transition:.35s;

}

.btn-primary:hover{

    background:#9D5CFF;
    transform:translateY(-3px);
    box-shadow:0 15px 40px rgba(124,58,237,.45);

}

.btn-dark{

    background:#171717;
    border:1px solid #333;
    border-radius:14px;
    padding:12px 28px;

}

.btn-dark:hover{

    background:#252525;

}

/*==========================================
                HERO
==========================================*/

.hero{

    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;

    background:
            linear-gradient(rgba(5,5,5,.82),
            rgba(5,5,5,.92)),
            url(images/hero-bg.jpg);

    background-size:cover;
    background-position:center;

}

.hero::before{

    content:"";

    position:absolute;

    width:800px;
    height:800px;

    background:#6D28D9;

    filter:blur(220px);

    opacity:.20;

    top:-250px;
    right:-250px;

}

.hero-small{

    color:#7C3AED;
    letter-spacing:5px;
    margin-bottom:18px;
    font-size:14px;

}

.hero h1{

    font-size:78px;
    font-weight:800;
    line-height:1.0;

}

.hero h1 span{

    color:#7C3AED;

}

.hero p{

    color:#bfbfbf;
    font-size:20px;
    margin-top:25px;
    line-height:1.8;

}

.hero-phone{

    animation:float 5s ease-in-out infinite;
}

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*==========================================
        SECTION TITLE
==========================================*/

.section-title{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;

}

.section-title h2{

    font-size:42px;
    font-weight:700;

}

.section-title a{

    color:#7C3AED;
    text-decoration:none;

}

/*==========================================
            FEATURED GAMES
==========================================*/

.games{

    padding:120px 0;

}

.game-card{

    background:#101010;

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    overflow:hidden;

    transition:.4s;

    margin-bottom:25px;

}

.game-card:hover{

    transform:translateY(-12px);

    border-color:#7C3AED;

    box-shadow:0 25px 60px rgba(124,58,237,.25);

}

.game-card img{

    width:100%;
    height:220px;
    object-fit:cover;

}

.game-info{

    padding:22px;

}

.game-info h3{

    font-size:22px;
    margin-bottom:10px;

}

.game-info p{

    color:#999;

    margin-bottom:20px;

}

.game-info button{

    width:100%;

}

/*==========================================
                UPDATES
==========================================*/

.updates{

    padding:120px 0;

    background:#0d0d0d;

}

.update{

    display:flex;

    margin-bottom:22px;

    background:#111;

    padding:18px;

    border-radius:18px;

    transition:.3s;

}

.update:hover{

    background:#171717;

}

.update img{

    width:150px;
    height:95px;

    border-radius:12px;

    object-fit:cover;

    margin-right:20px;

}

.update h4{

    margin-bottom:8px;

}

.update p{

    color:#999;

}

/*==========================================
            LEADERBOARD
==========================================*/

.leaderboard{

    background:#111;

    padding:30px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.06);

}

.player{

    display:flex;

    justify-content:space-between;

    margin-top:18px;

    padding-bottom:15px;

    border-bottom:1px solid #222;

}

/*==========================================
            STATS
==========================================*/

.stats{

    padding:120px 0;

    background:#090909;

    text-align:center;

}

.stats h1{

    color:#7C3AED;

    font-size:65px;

    font-weight:800;

}

.stats p{

    color:#888;

    margin-top:15px;

}

/*==========================================
            JOIN
==========================================*/

.join{

    padding:140px 0;

}

.join h2{

    font-size:58px;

    margin-bottom:20px;

}

.join p{

    color:#999;

    font-size:19px;

    margin-bottom:40px;

}

/*==========================================
            FOOTER
==========================================*/

footer{

    background:#050505;

    padding:80px 0;

    border-top:1px solid rgba(255,255,255,.05);

}

footer h4{

    margin-bottom:20px;

}

footer p{

    color:#999;

}

footer ul{

    list-style:none;

    padding:0;

}

footer li{

    color:#888;

    margin-bottom:12px;

    cursor:pointer;

    transition:.3s;

}

footer li:hover{

    color:white;

}

footer input{

    background:#111!important;

    border:1px solid #333!important;

    color:white!important;

}

footer hr{

    border-color:#222;

    margin:45px 0;

}

/*==========================================
        GLASS EFFECT
==========================================*/

.glass{

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

}

/*==========================================
        HOVER GLOW
==========================================*/

.glow:hover{

    box-shadow:0 0 60px rgba(124,58,237,.35);

}

/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:992px){

.hero{

    text-align:center;

    padding-top:120px;

}

.hero h1{

    font-size:58px;

}

.hero-phone{

    margin-top:50px;

}

.join{

    text-align:center;

}

.section-title{

    flex-direction:column;

    gap:15px;

}

}

@media(max-width:768px){

.hero h1{

    font-size:42px;

}

.hero p{

    font-size:17px;

}

.stats h1{

    font-size:42px;

}

.join h2{

    font-size:38px;

}

.navbar{

    background:#090909;

}

.game-card{

    margin-bottom:30px;

}

}