html {
    touch-action: pan-x pan-y;
    height: 100% 
}

body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #f9d71c;
}

#game-container {
    position: relative;
    width: 400px;
    height: 500px;
    margin: auto;
    background-color: #87CEEB;
    overflow: hidden;
    border: 5px solid #000;
    border-radius: 10px;
}

#minion {
    position: absolute;
    bottom: 10px;
    left: 175px;
    width: 70px;
    height: 70px;
    background-image: url('minion.png'); /* Minion */
    background-size: cover;
    transition: left 0.1s ease-in-out;
}

.smile, .banana {
    position: absolute;
    width: 45px;
    height: 45px;
}

.smile {
    background-image: url('smile.png'); /* Smile */
    background-size: cover;
}

.banana {
    background-image: url('banana.png'); /* Banana */
    background-size: cover;
}

#left-btn, #right-btn {
    width: 190px;
}

/* Touch Controls */
#touch-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

#touch-controls button {
    font-size: 24px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#touch-controls button:hover {
    background-color: #0056b3;
}

.hidden {
    display: none;
}

#fullscreen-btn {
    font-size: 18px;
    padding: 10px 20px;
    margin: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#fullscreen-btn:hover {
    background-color: #218838;
}
