@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes flicker {
    0% { opacity: 0.1; }
    50% { opacity: 1; }
    100% { opacity: 0.1; }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px #0ff, 0 0 10px #0ff; }
    50% { box-shadow: 0 0 20px #0ff, 0 0 40px #0ff; }
    100% { box-shadow: 0 0 5px #0ff, 0 0 10px #0ff; }
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460, #53354a);
    background-size: 300% 300%;
    animation: gradientAnimation 10s ease infinite;
    color: white;
    text-align: center;
}

.container {
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0px 4px 10px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease;
    animation: pulseGlow 2s infinite alternate;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px rgba(0, 255, 255, 0.8);
    animation: flicker 3s infinite alternate;
}

p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.tech-animation {
    width: 100px;
    height: 100px;
    margin: 20px auto;
    background: radial-gradient(circle, cyan, transparent);
    border-radius: 50%;
    box-shadow: 0 0 20px cyan, 0 0 40px cyan;
    animation: pulseGlow 1.5s infinite alternate;
}
