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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow-x: hidden;
}


.coming-soon {
    min-height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;

    background: linear-gradient(
        120deg,
        #14001f,
        #2b0a3d,
        #3c0f5f,
        #14001f
    );
    background-size: 300% 300%;
    animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.content {
    max-width: 100%;
    padding: 20px;
}

/* logo style*/
.logo {
    width: clamp(160px, 40vw, 420px);
    height: auto;
    margin-bottom: 20px;
}

/* Coming soon */

.coming-text {
    font-size: clamp(2rem, 8vw, 3.5rem);
    letter-spacing: clamp(2px, 0.6vw, 4px);
    font-weight: 800;

    color: #fff;
    text-shadow:
        1px 1px 0 #c77dff,
        2px 2px 0 #a855f7,
        3px 3px 0 #7e22ce,
        4px 4px 0 #5b189a,
        6px 6px 15px rgba(0,0,0,0.6);

    animation: floatText 3s ease-in-out infinite;
}

/* Floating effect added */

@keyframes floatText {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


.content p {
    margin-top: 12px;
    font-size: clamp(0.95rem, 3vw, 1.2rem);
    opacity: 0.85;
}


@media (max-width: 480px) {
    .coming-text {
        text-shadow:
            1px 1px 0 #a855f7,
            2px 2px 8px rgba(0,0,0,0.6);
    }
}
