* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0f0f0f;
    color: white;
    overflow: hidden;
    height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
    z-index: 1;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.coming-soon {
    font-size: 2rem;
    letter-spacing: 8px;
    animation: pulse 2s infinite;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.background span {
    position: absolute;
    width: 20vmin;
    height: 20vmin;
    border-radius: 20vmin;
    background: rgba(45, 45, 180, 0.3);
    animation: move 25s linear infinite;
    filter: blur(20px);
}

.background span:nth-child(1) {
    top: 0;
    left: 25%;
    animation-duration: 18s;
    background: rgba(123, 31, 162, 0.3);
    transform-origin: 50% 50%;
}

.background span:nth-child(2) {
    top: 80%;
    left: 50%;
    animation-duration: 22s;
    background: rgba(32, 156, 238, 0.3);
    animation-delay: -2s;
}

.background span:nth-child(3) {
    top: 30%;
    left: 80%;
    animation-duration: 15s;
    background: rgba(76, 175, 80, 0.3);
    animation-delay: -4s;
}

.background span:nth-child(4) {
    top: 50%;
    left: 10%;
    animation-duration: 20s;
    background: rgba(233, 30, 99, 0.3);
    animation-delay: -6s;
}

.background span:nth-child(5) {
    top: 70%;
    left: 30%;
    animation-duration: 25s;
    background: rgba(255, 152, 0, 0.3);
    animation-delay: -8s;
}

@keyframes move {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(100px, 100px) rotate(90deg) scale(1.2);
    }
    50% {
        transform: translate(-50px, 150px) rotate(180deg) scale(0.8);
    }
    75% {
        transform: translate(-100px, -50px) rotate(270deg) scale(1.1);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .coming-soon {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
}
