/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

#game-container {
    position: relative;
    text-align: center;
}

#gameCanvas {
    border: 2px solid #000;
    background-color: #f3f3f3;
    display: block;
}

#mobile-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

button {
    padding: 5px 10px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}

@media (max-width: 600px) {
    #mobile-controls {
        margin-top: 10px;
    }
    button {
        padding: 15px;
        font-size: 20px;
    }
}
