/* =========================
   COMING SOON PAGE
========================= */

.coming-soon-page {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    box-sizing: border-box;

    min-height: calc(95vh - 150px);

    padding: 70px 24px;

    overflow-x: hidden;
    overflow-y: hidden;

    background-color: #18171c;

    background-image:
        linear-gradient(
            rgba(143, 103, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(143, 103, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}


/* =========================
   MAIN CONTENT
========================= */

.coming-soon-content {
    box-sizing: border-box;

    width: min(100%, 760px);

    margin: 0 auto;

    text-align: center;
}


/* =========================
   HEADING
========================= */

.coming-soon-heading {
    margin-bottom: 24px;
}

.coming-soon-heading h1 {
    margin: 0;

    color: #b84cff;

    font-size: clamp(36px, 6vw, 54px);
    line-height: 1.15;

    text-shadow:
        0 0 10px rgba(184, 76, 255, 0.45),
        0 0 20px rgba(184, 76, 255, 0.18);
}


/* =========================
   PATCH
========================= */

.patch-area {
    position: relative;

    display: flex;
    justify-content: center;

    width: fit-content;

    margin: 0 auto 26px;
}

.patch-image {
    display: block;

    width: min(450px, 80vw);
    height: auto;

    object-fit: contain;

    image-rendering: auto;
}


/* =========================
   DESCRIPTION
========================= */

.coming-soon-description {
    margin-bottom: 38px;
}

.coming-soon-description p {
    max-width: 600px;

    margin: 0 auto;

    color: #aaa6b2;

    font-size: 12px;
    line-height: 1.9;
}


/* =========================
   FEATURES
========================= */

.coming-soon-features {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 42px;

    margin: 0 auto 42px;
}

.coming-soon-feature {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    min-width: 90px;

    color: inherit;

    text-decoration: none;

    transition:
        transform 0.18s ease;
}

.coming-soon-feature:hover {
    transform: translateY(-2px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    background-color:
        rgba(110, 76, 185, 0.08);

    border:
        1px solid rgba(164, 126, 255, 0.45);

    border-radius: 10px;

    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.feature-icon img {
    width: 38px;
    height: 38px;

    object-fit: contain;
}

.coming-soon-feature span {
    color: #968ca9;

    font-size: 8px;
    letter-spacing: 0.13em;

    transition:
        color 0.18s ease;
}

.coming-soon-feature:hover .feature-icon {
    background-color:
        rgba(110, 76, 185, 0.14);

    border-color:
        rgba(184, 156, 255, 0.75);

    box-shadow:
        0 0 12px rgba(151, 102, 255, 0.10);
}

.coming-soon-feature:hover span {
    color: #b89cff;
}


/* =========================
   SLOGAN
========================= */

.coming-soon-slogan {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    color: #cfc7df;

    font-size: 11px;
}

.coming-soon-slogan::before,
.coming-soon-slogan::after {
    content: "";

    width: 48px;
    height: 1px;

    background-color:
        rgba(164, 126, 255, 0.28);
}


/* =========================
   DECORATIONS
========================= */

.decoration {
    position: absolute;

    z-index: 1;

    color:
        rgba(155, 116, 255, 0.22);

    pointer-events: none;

    user-select: none;
}

.decoration-one {
    top: 12%;
    left: 14%;

    font-size: 20px;
}

.decoration-two {
    top: 16%;
    right: 16%;

    font-size: 14px;
}

.decoration-three {
    top: 31%;
    left: 9%;

    font-size: 16px;
}

.decoration-four {
    top: 38%;
    right: 11%;

    font-size: 17px;
}

.decoration-five {
    top: 55%;
    left: 17%;

    font-size: 12px;
}

.decoration-six {
    top: 61%;
    right: 18%;

    font-size: 15px;
}

.decoration-seven {
    bottom: 19%;
    left: 28%;

    font-size: 11px;
}

.decoration-eight {
    bottom: 14%;
    right: 26%;

    font-size: 13px;
}

.decoration-nine {
    top: 25%;
    left: 31%;

    font-size: 10px;
}

.decoration-ten {
    top: 48%;
    right: 31%;

    font-size: 11px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 700px) {

    .coming-soon-page {
        min-height: calc(100vh - 120px);

        padding: 56px 20px;
    }

    .patch-image {
        width: min(340px, 82vw);
    }

    .patch-shadow {
        width: 175px;
    }

    .coming-soon-features {
        gap: 24px;

        margin-bottom: 38px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

    .coming-soon-page {
        width: 100%;

        box-sizing: border-box;

        padding: 46px 18px;

        overflow-x: hidden;
    }

    .coming-soon-content {
        box-sizing: border-box;

        width: 100%;
        max-width: 100%;

        margin: 0 auto;

        align-items: center;

        text-align: center;
    }

    .coming-soon-heading {
        width: 100%;

        margin: 0 auto 16px;

        text-align: center;
    }

    .coming-soon-heading h1 {
        margin: 0 auto;

        font-size: 34px;
    }


    .patch-area {
        display: flex;
        justify-content: center;

        width: 100%;

        margin: 0 auto 22px;

        transform: translateX(px);
    }

    .patch-image {
        display: block;

        width: min(295px, 84vw);
        height: auto;

        margin: 0;

        object-fit: contain;

        image-rendering: auto;
    }

    .coming-soon-description {
        width: 100%;

        margin: 0 auto 34px;

        text-align: center;
    }

    .coming-soon-description p {
        width: min(100%, 320px);

        margin: 0 auto;

        font-size: 10px;
        line-height: 1.85;

        text-align: center;
    }

    .coming-soon-features {
        display: flex;
        justify-content: center;

        width: 100%;

        gap: 14px;

        margin: 0 auto 38px;
    }

    .coming-soon-feature {
        min-width: 76px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon img {
        width: 33px;
        height: 33px;
    }

    .coming-soon-slogan {
        width: 100%;

        margin: 0 auto;

        justify-content: center;

        text-align: center;
    }

    .coming-soon-slogan::before,
    .coming-soon-slogan::after {
        width: 28px;
    }

    .decoration-one {
        left: 6%;
    }

    .decoration-two {
        right: 6%;
    }

    .decoration-three {
        left: 4%;
    }

    .decoration-four {
        right: 4%;
    }

    .decoration-seven,
    .decoration-eight,
    .decoration-nine,
    .decoration-ten {
        display: none;
    }

}

html,
body {
    overflow-x: hidden;
}

.coming-soon-page {
    overflow-x: clip;
}