body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #121212;
    color: #fff;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #1e1e1e;
}

.logo {
    font-weight: bold;
    font-size: 18px;
}

.btn-daftar {
    background: #ff3c00;
    border: none;
    padding: 8px 15px;
    color: white;
    border-radius: 5px;
}

.menu-icon {
    font-size: 22px;
    margin-left: 10px;
}

/* MARQUEE */
.marquee {
    background: #222;
    padding: 8px;
    font-size: 14px;
}

/* SLIDER */
.slider {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: none;
}

.slide.active {
    display: block;
}

/* JACKPOT */
.jackpot {
    text-align: center;
    padding: 15px;
    background: #000;
    color: gold;
    font-weight: bold;
}

.jackpot span {
    font-size: 20px;
}

/* MENU GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 15px;
}

.menu-item {
    background: #1e1e1e;
    padding: 20px 5px;
    text-align: center;
    border-radius: 10px;
    font-size: 13px;
}

/* GAME GRID */
.section-title {
    padding: 10px 15px;
    font-weight: bold;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 15px 80px 15px;
}

.game-card {
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.game-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1e1e1e;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    font-size: 12px;
}

.center-btn {
    background: #333;
    padding: 15px;
    border-radius: 50%;
    margin-top: -25px;
}