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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Animated Background Gradient */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 92, 92, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(106, 192, 220, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 189, 74, 0.1) 0%, transparent 50%);
    animation: moveGradient 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes moveGradient {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 1;
    gap: 3rem;
}

/* Logo Styles */
.logo {
    opacity: 0;
    display: flex;
    justify-content: center;
}

.logo svg {
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
    overflow: visible;
    display: block;
}

.dot {
    transform-origin: center;
    opacity: 0;
}

/* Text Wrapper */
.text-wrapper {
    text-align: center;
}

.coming-soon {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    text-transform: uppercase;
}

.word {
    display: inline-block;
    opacity: 0;
    position: relative;
}

.word::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #ff5c5c, #6ac0dc, #ffbd4a);
    border-radius: 2px;
}

.word-1 {
    color: #ffffff;
}

.word-2 {
    color: #ffffff;
}



/* Glowing Dots Animation */
@keyframes glow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px currentColor);
    }

    50% {
        filter: drop-shadow(0 0 40px currentColor);
    }
}

.dot-1 {
    animation: glow 3s ease-in-out infinite;
    color: #ff5c5c;
}

.dot-2 {
    animation: glow 3s ease-in-out infinite 1s;
    color: #6ac0dc;
}

.dot-3 {
    animation: glow 3s ease-in-out infinite 2s;
    color: #ffbd4a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        gap: 2rem;
    }

    .logo svg {
        width: 300px;
        height: auto;
    }

    .coming-soon {
        gap: 1rem;
        font-size: clamp(2.5rem, 10vw, 6rem);
    }
}

@media (max-width: 480px) {
    .container {
        gap: 1.5rem;
    }

    .logo svg {
        width: 180px;
        height: auto;
    }

    .coming-soon {
        gap: 0.75rem;
        font-size: 30px;
    }
}