:root {
    --brand-start: #4b3369;
    --brand-end: #3c1a67;
    --surface: #ffffff;
    --text-dark: #202020;
    --circle-fill: rgba(255, 255, 255, 0.32);
    --card-shadow: 0 18px 40px rgba(20, 8, 41, 0.14);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

a:hover {
    text-decoration: none;
}

.context {
    position: absolute;
    z-index: 2;
    width: 100%;
}

.wrapper {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

.iq-comingsoon {
    width: 100%;
}

.iq-comingsoon-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comingsoon-logo {
    width: 250px;
}

.countdown {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
    margin: 60px 0 0;
    padding: 0;
}

.countdown li {
    flex: 0 0 240px;
    max-width: 240px;
    padding: 0;
}

.countdown-card {
    background-color: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--card-shadow);
}

.countdown-card-body {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 22px 16px;
    color: var(--text-dark);
    text-align: center;
}

.countdown-card-body span {
    display: inline-block;
    width: 100%;
    font-size: 76px;
    line-height: 1;
    color: var(--text-dark);
}

.launch-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.launch-heading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    color: #ffffff;
}

.launch-heading-icon {
    display: block;
    height: 50px;
}

#launch-button {
    display: none;
    padding-top: 20px;
}

.launch-button-image {
    display: block;
    height: 76px;
}

.countdown-emoji {
    height: 60px;
}

.area {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: var(--brand-start);
    background: linear-gradient(180deg, var(--brand-start) 0%, var(--brand-end) 100%);
}

.circles {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.circles li {
    position: absolute;
    bottom: -150px;
    display: block;
    width: 20px;
    height: 20px;
    list-style: none;
    background: var(--circle-fill);
    animation: float-circle 25s linear infinite;
}

.circles li:nth-child(1) { left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.circles li:nth-child(2) { left: 10%; animation-delay: 2s; animation-duration: 12s; }
.circles li:nth-child(3) { left: 70%; animation-delay: 4s; }
.circles li:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.circles li:nth-child(5) { left: 65%; animation-delay: 0s; }
.circles li:nth-child(6) { left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.circles li:nth-child(7) { left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.circles li:nth-child(8) { left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
.circles li:nth-child(9) { left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
.circles li:nth-child(10) { left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 11s; }

@keyframes float-circle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

@media (max-width: 767px) {
    .wrapper {
        align-items: center;
    }

    .iq-comingsoon {
        margin-top: 0;
    }

    .comingsoon-logo {
        width: 210px;
    }

    .countdown {
        gap: 10px;
        max-width: 380px;
        margin: 40px auto 0;
    }

    .countdown li {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .countdown-card-body {
        padding: 12px;
    }

    .countdown-card-body span {
        font-size: 40px;
    }

    .launch-button-image {
        height: 68px;
    }

    .launch-heading {
        font-size: 1.2rem;
    }

    .launch-heading-icon {
        height: 30px;
    }
}
