body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #1a1a2e;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

.game-container {
    text-align: center;
}

canvas {
    border: 3px solid #4cc9f0;
    background-color: #16213e;
    box-shadow: 0 0 20px rgba(76, 201, 240, 0.3);
}

.controls {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score {
    margin: 10px 0;
    font-size: 24px;
    color: #4cc9f0;
}

button {
    padding: 12px 25px;
    font-size: 18px;
    background-color: #f72585;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 15px;
}

button:hover {
    background-color: #b5179e;
    transform: scale(1.05);
}

.instructions {
    font-size: 16px;
    color: #a8dadc;
    margin-top: 10px;
}