*{margin:0;padding:0;box-sizing:border-box;font-family:Arial}
body{
    background:#000;
    color:#fff;
}

/* TOP BAR */
.topbar{
    height:60px;
    background:#0a0a0a;
    border-bottom:2px solid #f5b700;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 30px;
}
.brand{
    font-size:22px;
    font-weight:bold;
    color:#f5b700;
}
.brand span{color:#fff}
.top-right{
    display:flex;
    gap:15px;
    align-items:center;
}
.balance{
    border:1px solid #f5b700;
    padding:6px 16px;
    border-radius:20px;
}
.profile{
    width:32px;height:32px;
    border-radius:50%;
    border:2px solid #f5b700;
}

/* MAIN */
.wrapper{
    max-width:1200px;
    margin:30px auto;
}

/* HERO */
.hero{
    position:relative;
    background:#111;
    border-radius:18px;
    overflow:hidden;
    padding-bottom:30px;
}
.hero-bg{
    width:100%;
    height:260px;
    object-fit:cover;
}
.hero-games{
    display:flex;
    gap:12px;
    padding:15px;
}
.mini-game{
    background:#000;
    border-radius:12px;
    padding:6px;
    width:120px;
    text-align:center;
}
.mini-game img{width:100%}
.mini-game span{font-size:12px}

/* CENTER */
.hero-center{
    text-align:center;
    margin-top:-40px;
}
.hero-center img{width:160px}
.lobby{color:#f5b700;margin-top:6px}

.hero-btns{
    margin-top:12px;
    display:flex;
    justify-content:center;
    gap:14px;
}
.btn{
    padding:10px 26px;
    border-radius:20px;
    font-weight:bold;
    border:none;
}
.yellow{background:#f5b700;color:#000}
.dark{background:#111;color:#fff;border:1px solid #444}

/* SECTIONS */
.section-title{
    margin:30px 0 15px;
    color:#f5b700;
}
.games-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.game-box{
    background:#111;
    border-radius:16px;
    padding:16px;
}
.game-box img{width:100%;border-radius:12px}
.game-box h3{margin:10px 0}
.game-box button{
    margin-top:10px;
    width:100%;
    padding:10px;
    background:#f5b700;
    border:none;
    border-radius:14px;
    font-weight:bold;
}

/* WINS */
.wins{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:10px;
}
.win{
    background:#111;
    padding:12px;
    border-radius:12px;
    text-align:center;
    color:#f5b700;
}
