body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.game-container {
    text-align: center;
    background-color: #34495e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

h1 {
    color: #ecf0f1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#gameCanvas {
    background-color: #2c3e50;
    border: 3px solid #95a5a6;
    border-radius: 5px;
}

.game-stats {
    color: #ecf0f1;
    font-size: 1.2em;
    margin: 10px 0;
}

.controls {
    margin-top: 20px;
}

#startBtn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#startBtn:hover {
    background-color: #219a52;
}

.instructions {
    color: #bdc3c7;
    font-size: 0.9em;
    margin-top: 10px;
} 