:root {
    color-scheme: dark;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #08090c;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    min-height: 100%;
    background: #08090c;
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    color: #f7f7f8;
    background-color: #08090c;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
}

.gateway {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 48px 20px;
}

.gateway__panel {
    width: min(100%, 560px);
}

.gateway__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
    color: #fff;
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
}

.gateway__mark {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: #111722;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.gateway__play {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid #fff;
}

.gateway h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(42px, 8vw, 66px);
    font-weight: 760;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.gateway__lead {
    margin: 0 0 24px;
    color: #c7c9ce;
    font-size: clamp(17px, 3vw, 20px);
    line-height: 1.55;
}

.gateway__notice {
    margin: 0 0 28px;
    color: #92959e;
    font-size: 14px;
    line-height: 1.6;
}

.gateway__domains {
    display: grid;
    gap: 10px;
}

.gateway__domain {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
    font-size: 16px;
    font-weight: 650;
    text-decoration: none;
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.gateway__domain:hover,
.gateway__domain:focus-visible {
    border-color: rgba(127, 158, 255, 0.65);
    color: #fff;
    background: rgba(127, 158, 255, 0.12);
    transform: translateY(-1px);
}

.gateway__brand:focus-visible,
.gateway__domain:focus-visible {
    outline: 3px solid rgba(127, 158, 255, 0.75);
    outline-offset: 3px;
}

.gateway__arrow {
    color: #858995;
    font-size: 20px;
}

.gateway__empty {
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    color: #c7c9ce;
    background: rgba(255, 255, 255, 0.045);
    text-align: center;
}

.gateway__footer {
    margin: 30px 0 0;
    color: #777b85;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 560px) {
    .gateway {
        align-items: start;
        padding-top: 54px;
    }

    .gateway__brand {
        margin-bottom: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gateway__domain {
        transition: none;
    }
}
