body {
    margin: 0;
    overflow: hidden;
    background: black;
    color: white;
    font-family: Arial, sans-serif;
    animation: warp 12s infinite alternate ease-in-out;
}

/* Warping Background - Now with a deeper shifting effect */
@keyframes warp {
    0% { background: radial-gradient(circle, hsl(280, 100%, 50%) 0%, hsl(250, 100%, 30%) 100%); }
    25% { background: radial-gradient(circle, hsl(320, 100%, 60%) 0%, hsl(280, 100%, 40%) 100%); }
    50% { background: radial-gradient(circle, hsl(280, 100%, 70%) 0%, hsl(240, 100%, 30%) 100%); }
    75% { background: radial-gradient(circle, hsl(250, 100%, 50%) 0%, hsl(220, 100%, 40%) 100%); }
    100% { background: radial-gradient(circle, hsl(280, 100%, 50%) 0%, hsl(250, 100%, 30%) 100%); }
}

/* Bouncing Glowing Growing Text */
#movingText {
    position: absolute;
    font-size: 30px;
    font-weight: bold;
    color: hsl(50, 100%, 80%);
    text-shadow: 0 0 15px hsl(50, 100%, 50%), 0 0 25px hsl(50, 100%, 40%);
    padding: 10px;
    animation: pulse 2.5s infinite alternate ease-in-out, growShrink 3s infinite ease-in-out;
}

/* Glowing Pulse Effect */
@keyframes pulse {
    0% { text-shadow: 0 0 15px hsl(50, 100%, 50%); }
    50% { text-shadow: 0 0 20px hsl(50, 100%, 70%); }
    100% { text-shadow: 0 0 15px hsl(50, 100%, 50%); }
}

/* Grow and Shrink Effect */
@keyframes growShrink {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); } /* Expand */
    100% { transform: scale(1); } /* Shrink */
}

/* Pulsing Instruction Text */
#instructions {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px hsl(50, 100%, 50%);
    animation: pulse 2.5s infinite alternate ease-in-out;
}

/* Color Rain Effect */
.rain-container {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@keyframes fall {
    0% { transform: translateY(-10vh); opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.rain-container div {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: hsl(calc(360 * var(--hue)), 100%, 50%);
    animation: fall 5s linear infinite;
}

/* Karma Text Rain Effect */
.karma-container {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@keyframes karmaFall {
    0% { transform: translateY(-10vh); opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.karma-container div {
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    color: hsl(calc(360 * var(--hue)), 100%, 70%);
    text-shadow: 0 0 10px hsl(calc(360 * var(--hue)), 100%, 50%);
    animation: karmaFall 6s linear infinite;
}
