body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #282c34;
    color: #fff;
    margin: 0;
}

h1 {
    color: #61dafb;
    margin-bottom: 20px;
}

.game-container {
    display: flex;
    flex-direction: column; /* Change to column for better mobile layout */
    align-items: center;
    gap: 20px;
    background-color: #3a404d;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

canvas {
    background-color: #000;
    border: 2px solid #61dafb;
    display: block;
    width: 100%;
    max-width: 480px; /* Original canvas width */
}

.info-panel {
    display: flex;
    flex-direction: row; /* Change to row for better layout */
    justify-content: space-around; /* Distribute items */
    align-items: center;
    padding: 10px;
    background-color: #21252b;
    border-radius: 5px;
    width: 100%;
    max-width: 480px; /* Match canvas width */
}

.info-panel p {
    margin: 10px 0;
    font-size: 1.1em;
}

.info-panel span {
    font-weight: bold;
    color: #61dafb;
}

button {
    background-color: #61dafb;
    color: #282c34;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

button:hover {
    background-color: #21a1f1;
}

#message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px #000;
    display: none; /* Initially hidden */
}
