.fz-login-gate-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 18%, rgba(29, 116, 168, .16), transparent 32%),
        radial-gradient(circle at 82% 64%, rgba(214, 161, 55, .10), transparent 30%),
        #050a12;
}

.fz-login-gate-main {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: calc(100vh - 230px);
    padding: 72px 24px 88px;
}

.fz-login-gate-card {
    position: relative;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: center;
    width: min(100%, 920px);
    min-height: 330px;
    overflow: hidden;
    border: 1px solid rgba(85, 119, 151, .42);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(13, 25, 40, .98), rgba(7, 15, 27, .98));
    box-shadow: 0 28px 80px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .035);
}

.fz-login-gate-card::after {
    position: absolute;
    right: -110px;
    bottom: -145px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 170, 61, .12), transparent 67%);
    content: "";
    pointer-events: none;
}

.fz-login-gate-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-self: stretch;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 40px 28px;
    border-right: 1px solid rgba(85, 119, 151, .30);
    background: linear-gradient(160deg, rgba(21, 47, 70, .72), rgba(10, 24, 39, .38));
}

.fz-login-gate-visual > span {
    color: rgba(229, 188, 95, .76);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
}

.fz-login-gate-icon {
    width: 108px;
    height: 108px;
    filter: drop-shadow(0 12px 25px rgba(217, 164, 53, .20));
}

.fz-login-gate-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
}

.fz-login-gate-icon circle {
    fill: rgba(218, 164, 52, .08);
    stroke: #d9a334;
    stroke-width: 2;
}

.fz-login-gate-icon .fz-login-gate-play {
    fill: #efbd50;
}

.fz-login-gate-icon .fz-login-gate-lock {
    stroke: #f5cc70;
    stroke-linecap: round;
    stroke-width: 3;
}

.fz-login-gate-content {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding: 46px 54px;
}

.fz-login-gate-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(78, 199, 157, .26);
    border-radius: 999px;
    background: rgba(42, 176, 133, .09);
    color: #45c89a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.fz-login-gate-content h1 {
    margin: 18px 0 10px;
    color: #f6f8fb;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
}

.fz-login-gate-content > p {
    margin: 0;
    color: #9eabbd;
    font-size: 16px;
    line-height: 1.75;
}

.fz-login-gate-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.fz-login-gate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 150px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform .18s ease, border-color .18s ease, filter .18s ease;
}

.fz-login-gate-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.fz-login-gate-button--primary {
    border: 1px solid #e9b748;
    background: linear-gradient(135deg, #f0c45f, #d99c2e);
    box-shadow: 0 10px 26px rgba(215, 157, 44, .20);
    color: #151006 !important;
}

.fz-login-gate-button--secondary {
    border: 1px solid rgba(125, 151, 178, .40);
    background: rgba(255, 255, 255, .035);
    color: #dfe7f1 !important;
}

.fz-login-gate-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
    color: #758399;
    font-size: 13px;
    line-height: 1.5;
}

.fz-login-gate-note a {
    flex: none;
    color: #d9ae52;
    text-decoration: none;
}

@media (max-width: 820px) {
    .fz-login-gate-page {
        min-height: 100svh;
        background:
            radial-gradient(circle at 50% 18%, rgba(27, 96, 142, .18), transparent 36%),
            #040a12;
    }

    .fz-login-gate-main {
        align-items: flex-start;
        min-height: calc(100svh - 154px);
        padding: 30px 14px 88px;
    }

    .fz-login-gate-card {
        display: block;
        width: 100%;
        min-height: 0;
        border-radius: 18px;
    }

    .fz-login-gate-card::after {
        right: -145px;
        bottom: -125px;
        width: 300px;
        height: 300px;
    }

    .fz-login-gate-visual {
        gap: 12px;
        padding: 34px 20px 22px;
        border-right: 0;
        border-bottom: 0;
        background: linear-gradient(180deg, rgba(20, 47, 69, .54), transparent);
    }

    .fz-login-gate-icon {
        width: 88px;
        height: 88px;
    }

    .fz-login-gate-visual > span {
        font-size: 10px;
    }

    .fz-login-gate-content {
        padding: 4px 20px 30px;
        text-align: center;
    }

    .fz-login-gate-kicker {
        display: none;
    }

    .fz-login-gate-content h1 {
        margin: 8px 0 10px;
        font-size: 26px;
    }

    .fz-login-gate-content > p {
        max-width: 330px;
        margin: 0 auto;
        font-size: 14px;
        line-height: 1.65;
    }

    .fz-login-gate-actions {
        display: grid;
        gap: 10px;
        margin-top: 25px;
    }

    .fz-login-gate-button {
        width: 100%;
        min-height: 46px;
        border-radius: 9px;
    }

    .fz-login-gate-note {
        display: grid;
        justify-content: center;
        gap: 10px;
        margin-top: 18px;
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .fz-login-gate-main {
        padding-right: 10px;
        padding-left: 10px;
    }

    .fz-login-gate-visual {
        padding-top: 28px;
    }

    .fz-login-gate-content {
        padding-right: 16px;
        padding-left: 16px;
    }
}
