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

.game-container {
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header h1 {
    color: #eee;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2.5em;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
}

.scores-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.score {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1em;
    text-align: center;
    min-width: 80px;
}

.game-message {
    text-align: center;
    font-size: 1.4em;
    margin: 10px 0;
    font-weight: bold;
    color: #fdd;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    width: 100%;
}

.game-canvas-container {
    border: 4px solid #555;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 10px 0;
}

#gameCanvas {
    background-color: #444;
    display: block;
}

.options-container {
    margin-top: 20px;
    text-align: center;
}

#startButton {
    padding: 12px 25px;
    font-size: 1.2em;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#startButton:hover {
    background-color: #4cae4c;
}