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

#game-container {
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

canvas {
    background-color: #87CEEB; /* Sky blue */
    display: block;
}

#ui {
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
}

h1 {
    margin: 0;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

p {
    margin: 5px 0;
    font-size: 14px;
}

#score-display {
    font-size: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

#lives-display {
    font-size: 20px;
    font-weight: bold;
    color: #FF4444;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}
