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

.game-container {
    text-align: center;
    background: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h1 {
    margin-top: 0;
    color: #4CAF50;
    font-size: 28px;
}

.game-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
    font-size: 16px;
}

#game-canvas {
    border: 2px solid #555;
    background-color: #87CEEB;
    margin-bottom: 15px;
}

.controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    margin: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

#start-btn {
    background-color: #f44336;
}

#start-btn:hover {
    background-color: #d32f2f;
}

.instructions {
    margin: 0;
    font-size: 14px;
    color: #bbb;
    line-height: 1.4;
}

.game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.game-over h2 {
    color: #f44336;
    margin-top: 0;
}
