body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #2c3e50;
    font-family: 'Press Start 2P', cursive, monospace;
    color: #ecf0f1;
}

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

#game-container {
    border: 5px solid #2980b9;
    border-radius: 8px;
    background-color: #34495e;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

#gameCanvas {
    background-color: #1a242c;
    display: block;
    margin-bottom: 15px;
    border: 2px solid #3498db;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

#game-info {
    text-align: center;
}

#score {
    font-size: 1.5em;
    color: #2ecc71;
}

#startButton {
    background-color: #e67e22;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

#startButton:hover {
    background-color: #d35400;
}

/* Basic font import if not using a system font */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
