/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    min-height: 100vh;
    overflow: hidden;
    background: #050510;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Animated Background */
.background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
            rgba(120, 80, 255, 0.35) 0%,
            rgba(120, 80, 255, 0.08) 30%,
            transparent 70%);
}

.background::after {
    content: "";
    position: absolute;
    width: 1200px;
    height: 1200px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(140, 100, 255, 0.12),
        transparent 70%
    );
    animation: pulse 6s infinite ease-in-out;
}

.container {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.logo {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: -3px;

    background: linear-gradient(
        135deg,
        #ffffff,
        #c9b6ff,
        #8b5cf6
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 20px rgba(139, 92, 246, 0.3);
}

.coming-soon {
    margin-top: 1rem;
    letter-spacing: 0.6rem;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255,255,255,0.75);
}

.coming-soon::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 1.5rem auto 0;
    border-radius: 999px;
    background: #8b5cf6;
    box-shadow: 0 0 20px #8b5cf6;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}