body {
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Arial', sans-serif;
    color: white;
}

#gameCanvas {
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.5), 
        0 0 40px rgba(0, 255, 255, 0.3), 
        0 0 80px rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
}

#startScreen, #gameOverScreen {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    text-align: center;
}

.button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    color: white;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.button:hover {
    transform: scale(1.1);
}

/* lmfaao 40lines */