body {
    margin: 0;
    background: #0e0b14;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: #141018;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo {
    height: 42px;
}
.btn-login, .btn-daftar {
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    margin-left: 6px;
}
.btn-login {
    background: rgba(212,175,55,0.2);
    color: #d4af37;
}
.btn-daftar {
    background: #d4af37;
    color: #000;
}

/* SLIDER */
.banner-swiper img {
    width: 100%;
    border-radius: 10px;
}

/* PROVIDER */
.section-title {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #d4af37;
}
.providers {
    padding: 10px 16px;
}
.provider-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}
.provider-item {
    background: #1a1622;
    border: 1px solid rgba(212,175,55,0.2);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 90px;
}
.provider-item img {
    height: 38px;
}

/* GAMES */
.game-list {
    padding: 10px 16px;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}
.game-card {
    background: #1a1622;
    border-radius: 10px;
    padding: 8px;
    border: 1px solid rgba(212,175,55,0.25);
}
.game-card img {
    width: 100%;
    border-radius: 8px;
}
.game-title {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
}
.btn-play {
    margin-top: 8px;
    display: block;
    background: #d4af37;
    padding: 7px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    color: #000;
}

/* BOTTOM MENU */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #141018;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-around;
    padding: 6px 0;
}
.bm-item {
    text-align: center;
    font-size: 12px;
    color: #d4af37;
}
.active {
    color: white;
}
