/* General styling for the page */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    background-color: #2c3e50;
    font-family: 'Arial', sans-serif;
    color: #ecf0f1;
    overflow: hidden;
}
h1 {
    color: #ecf0f1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-size: 2.5rem;
    margin-bottom: 20px;
}
/* Style for the container that holds the canvas */
#game-container {
    border: 5px solid #34495e;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border-radius: 10px;
    overflow: hidden;
}
/* Message box styling */
#message-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px 60px;
    background-color: rgba(44, 62, 80, 0.9);
    border: 3px solid #e74c3c;
    border-radius: 15px;
    color: #ecf0f1;
    font-size: 2rem;
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.7);
    z-index: 1000;
    display: none; /* Hide by default */
}
canvas {
    touch-action: none; /* Prevents default touch gestures like scrolling */
}