:root {
    --gx-purple-dark: #2d0734;
    --gx-purple: #59145f;
    --gx-purple-light: #8d4b91;
    --gx-turquoise: #56d7d2;
    --gx-pink: #dc82b7;
    --gx-white: #ffffff;
    --gx-text-soft: rgba(255, 255, 255, 0.76);
    --gx-border: rgba(255, 255, 255, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;

    color: var(--gx-white);
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(86, 215, 210, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(220, 130, 183, 0.14),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            var(--gx-purple-dark) 0%,
            var(--gx-purple) 58%,
            #3b0a47 100%
        );

    font-family:
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55),
        transparent 85%
    );
}

.domain-page {
    position: relative;
    z-index: 1;

    flex: 1;
    width: 100%;
    display: grid;
    place-items: center;

    padding: 48px 24px 30px;
}

.domain-card {
    width: min(100%, 720px);
    padding: clamp(38px, 7vw, 72px);

    text-align: center;

    background: rgba(30, 4, 38, 0.34);
    border: 1px solid var(--gx-border);
    border-radius: 4px;

    box-shadow:
        0 24px 70px rgba(15, 0, 20, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    animation: card-in 700ms ease-out both;
}

.logo-link {
    display: inline-block;
    line-height: 0;
}

.logo {
    display: block;
    width: clamp(130px, 24vw, 205px);
    max-height: 105px;
    object-fit: contain;
    margin: 0 auto;
}

.divider {
    width: 46px;
    height: 2px;
    margin: 34px auto;

    background: linear-gradient(
        90deg,
        var(--gx-turquoise),
        var(--gx-pink)
    );
}

h1 {
    margin: 0;

    font-size: clamp(2rem, 7vw, 4.4rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
}

.domain-info {
    max-width: 530px;
    margin: 30px auto 0;

    color: var(--gx-text-soft);
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    line-height: 1.7;
}

.domain-info strong {
    color: var(--gx-white);
    font-weight: 600;
}

.domain-status {
    margin: 14px 0 0;

    color: var(--gx-text-soft);
    font-size: 1rem;
    line-height: 1.6;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 7px;

    margin-top: 42px;
    padding-top: 30px;

    border-top: 1px solid var(--gx-border);
}

.contact span {
    color: var(--gx-text-soft);
    font-size: 0.92rem;
}

.contact a {
    color: var(--gx-turquoise);
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
}

.contact a:hover,
.contact a:focus-visible {
    color: var(--gx-white);
    text-decoration: underline;
    text-underline-offset: 5px;
}

footer {
    position: relative;
    z-index: 1;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    padding: 0 24px 24px;

    color: rgba(255, 255, 255, 0.48);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
    color: var(--gx-turquoise);
}

@keyframes card-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .domain-page {
        padding: 22px 16px 18px;
    }

    .domain-card {
        padding: 38px 22px;
    }

    .divider {
        margin: 27px auto;
    }

    .domain-info {
        margin-top: 24px;
    }

    .contact {
        margin-top: 34px;
        padding-top: 25px;
    }

    footer {
        flex-wrap: wrap;
        padding-bottom: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .domain-card {
        animation: none;
    }
}