body {
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
  color: #00B7FF;
}

h1 {
  color: white;
  font-size: 7em;
}

p {
  color: antiquewhite;
  font-size: 2em;
}


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    overflow: hidden;
    background: #050816;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    position: relative;
}

/* Animated Gradient */
body::before {
    content: "";
    position: fixed;
    inset: -50%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0,255,255,0.25), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(255,0,255,0.2), transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(0,150,255,0.25), transparent 35%),
        linear-gradient(135deg, #050816, #0a1a3d, #140021, #050816);
    background-size: 200% 200%;
    animation: gradientFlow 18s ease infinite;
    filter: blur(40px);
    z-index: -2;
}

/* Floating Blobs */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle, rgba(255,255,255,0.12) 2px, transparent 3px);
    background-size: 120px 120px;
    animation: floatParticles 25s linear infinite;
    opacity: 0.6;
    z-index: -1;
}

@keyframes gradientFlow {
    0% {
        transform: rotate(0deg) scale(1);
        background-position: 0% 50%;
    }
    50% {
        transform: rotate(180deg) scale(1.15);
        background-position: 100% 50%;
    }
    100% {
        transform: rotate(360deg) scale(1);
        background-position: 0% 50%;
    }
}

@keyframes floatParticles {
    from {
        transform: translateY(0) translateX(0);
    }
    to {
        transform: translateY(-120px) translateX(-60px);
    }
}