body {
    margin: 0;
    padding: 0;
    background-color: #ffe8cc;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    touch-action: none; /* Prevent scrolling on mobile */
}

.game-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 100%;
    max-height: 800px;
    background-color: #fff8dc;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.header {
    padding: 15px;
    background-color: #ffcc80;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #5d4037;
    z-index: 10;
}

#game-area {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

#game-over {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 100;
}

.hidden {
    display: none !important;
}

button {
    padding: 10px 20px;
    font-size: 1.2rem;
    background-color: #ff9800;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #f57c00;
}
