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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0f0321 0%, #1f0a3d 50%, #2d1055 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Ambient glow effect */
body::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
    top: 20%;
    left: -10%;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

body::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    bottom: 10%;
    right: -5%;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
}

/* Subtle stars */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 4s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.8; }
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 8px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #c084fc 50%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(147, 51, 234, 0.8));
    }
}

.subtitle {
    font-size: 1.3rem;
    color: #c084fc;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.coming-soon {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 2rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.description {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #9333ea, transparent);
    margin: 3rem auto;
}

.footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    letter-spacing: 1px;
    z-index: 10;
}

@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .coming-soon {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .description {
        font-size: 1rem;
        line-height: 1.8;
    }
}
