body {
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #222;
    font-family: Arial, sans-serif;
    color: white;
}

#game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

#game-area {
    position: relative;
    width: 300px; /* Ukuran area game */
    height: 500px;
    background-color: #000;
    border: 2px solid cyan;
    overflow: hidden;
    touch-action: none; /* Mencegah scrolling pada perangkat sentuh */
}

#player {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: yellow;
    border-radius: 5px;
}

.star, .bomb {
    position: absolute;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    color: white;
    font-weight: bold;
    user-select: none;
}

.star {
    background-color: gold;
    content: '⭐'; /* Menggunakan emoji sebagai representasi */
}

.bomb {
    background-color: red;
    content: '💣'; /* Menggunakan emoji sebagai representasi */
}

/* Menggunakan pseudoelemen untuk menampilkan emoji */
.star::before {
    content: '⭐';
}

.bomb::before {
    content: '💣';
}


#game-info {
    margin-top: 20px;
    text-align: center;
}

#game-info p {
    margin: 5px 0;
}

#start-button {
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: cyan;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

#start-button:hover {
    background-color: #00e6e6;
}

/* Responsif untuk perangkat yang lebih kecil */
@media (max-width: 600px) {
    #game-area {
        width: 90vw; /* Lebar relatif untuk mobile */
        height: 70vh;
    }

    #player {
        width: 40px;
        height: 40px;
    }

    .star, .bomb {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 18px;
    }
}