body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: black;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Courier New', Courier, monospace;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
}

#ganeshaBlessing {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.2em;
    color: #fff;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#welcomeMessage {
    position: absolute;
    z-index: 1;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(45deg, #FF6B6B, #FFD93D, #6BCB77, #4D96FF, #FF6F91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #FF6B6B, 0 0 20px #FFD93D, 0 0 30px #6BCB77, 0 0 40px #4D96FF, 0 0 50px #FF6F91;
    }
    100% {
        text-shadow: 0 0 20px #FF6B6B, 0 0 30px #FFD93D, 0 0 40px #6BCB77, 0 0 50px #4D96FF, 0 0 60px #FF6F91;
    }
}

button {
    background-color: #008cba;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    margin: 0.5em;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #005f5f;
}
