body {
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}

.game-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

canvas {
    background-color: #111;
    border: 2px solid #fff;
}

#controls {
    margin-top: 10px;
    color: #aaa;
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #555;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #555;
}
