*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#070d1d;
    color:#fff;
}

/* HEADER */

.header{
    height:80px;
    background:#08101f;
    border-bottom:1px solid rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 50px;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:60px;
    width:auto;
}


.yellow{
    color:#a855f7;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

nav a.active{
    color:#FFDD6D;
}

.header-right{
    display:flex;
    gap:12px;
    align-items:center;
}

.search-box{
    width:300px;
    position:relative;
}

.search-box input{
    width:100%;
    background:#111827;
    border:none;
    padding:13px 40px 13px 15px;
    border-radius:8px;
    color:white;
}

.search-box i{
    position:absolute;
    right:15px;
    top:15px;
}

.btn-dark{
    background:#111827;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:8px;
}

.btn-primary{
    background:linear-gradient(90deg,#EDD53A,#FCE684);
    border:none;
    color:black;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
}

/* HERO */

.hero{
    position:relative;
    height:520px;

    background:
    linear-gradient(to right,
    rgba(7,13,29,.95),
    rgba(7,13,29,.35)),
    url('https://images.unsplash.com/photo-1511512578047-dfb367046420')
    center/cover;
}

.hero-overlay{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
}

.hero-content{
    margin-left:110px;
    max-width:500px;
}

.badge{
    display:inline-block;
    background:#F6D55C;
    padding:8px 14px;
    border-radius:8px;
    margin-bottom:20px;
    font-size:13px;
    color:black;
}

.hero h1{
    font-size:74px;
    line-height:0.9;
    margin-bottom:25px;
    font-weight:800;
}

.hero p{
    color:#d6d6d6;
    margin-bottom:25px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn-outline{
    background:transparent;
    border:1px solid rgba(255,255,255,.2);
    color:white;
    padding:12px 24px;
    border-radius:8px;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    color:white;
}

.left{
    left:30px;
}

.right{
    right:30px;
}

.slider-dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
}

.slider-dots span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#777;
    display:inline-block;
    margin:0 5px;
}

.slider-dots .active{
    background:#FFDD6D;
}

/* SECTION */

.section{
    padding:30px 60px;
}

.section-title{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.section-title h2{
    font-size:22px;
}

.section-title a{
    color:#ccc;
    text-decoration:none;
}

.games-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
}

.game-card{
    background:#0c1324;
    border:1px solid rgba(255,255,255,.06);
    border-radius:14px;
    overflow:hidden;
}

.game-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.game-card h3{
    padding:12px;
    font-size:15px;
}

.tag{
    margin:10px;
    display:inline-block;
    background:#EDD53A;
    padding:4px 8px;
    border-radius:5px;
    font-size:11px;
}

.blue{background:#2563eb;}
.green{background:#16a34a;}
.red{background:#dc2626;}
.orange{background:#ea580c;}
.yellow-bg{background:#EAD833;}

.meta{
    padding:0 12px 12px;
    display:flex;
    justify-content:space-between;
    color:#bbb;
}

/* BOTTOM */

.bottom-grid{
    padding:0 60px 50px;
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:20px;
}

.panel{
    background:#0c1324;
    border-radius:16px;
    padding:24px;
}

.panel h2{
    margin-bottom:20px;
    font-size:20px;
}

.news-item{
    display:flex;
    gap:15px;
    margin-bottom:18px;
}

.news-item img{
    width:120px;
    height:70px;
    border-radius:8px;
    object-fit:cover;
}

.news-item h4{
    margin-bottom:6px;
    font-size:14px;
}

.news-item span{
    color:#aaa;
    font-size:13px;
}

.stat{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
    border-bottom:1px solid rgba(255,255,255,.05);
    padding-bottom:15px;
}

.join-btn{
    width:100%;
    border:none;
    padding:18px;
    border-radius:10px;

    background:
    linear-gradient(
    90deg,
    #EDD53A,
    #FCE684);

    color:black;
    font-weight:700;
}