body.demo-gate-page {
    overflow: hidden;
    min-height: 100vh;
}

.demo-gate-page .demo-gate {
    height: 100vh;
    overflow-y: auto;
}

.demo-gate {
    min-height: 100vh;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

.demo-gate__container {
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
}

.demo-gate__logo {
    margin-bottom: 56px;
    animation: demo-gate-fade 0.35s ease-out both;
}

.demo-gate__logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media (max-width: 480px) {
    .demo-gate__container {
        padding: 24px 16px;
    }

    .demo-gate__logo {
        margin-bottom: 40px;
        max-width: 85%;
    }

    .demo-gate__logo img {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .demo-gate__btns {
        flex-direction: column;
        width: 100%;
        max-width: min(280px, 100%);
        padding: 0;
    }

    .demo-gate__btn {
        width: 100%;
        max-width: 100%;
    }
}

.demo-gate__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
    padding: 0 8px;
}

.demo-gate__btn:nth-child(1) {
    animation: demo-gate-fade 0.35s 0.6s ease-out both;
}

.demo-gate__btn:nth-child(2) {
    animation: demo-gate-fade 0.35s 1.2s ease-out both;
}

.demo-gate__btn {
    flex-shrink: 0;
    min-width: 0;
    background: #fff;
    border: 1px solid #617d96;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #212529 !important;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
}

.demo-gate__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(97, 125, 150, 0.25);
}

.demo-gate__btn._primary {
    background: #617d96;
    color: #fff !important;
}

.demo-gate__btn._primary:hover {
    background: #526d84;
    border-color: #526d84;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(97, 125, 150, 0.4);
}

@keyframes demo-gate-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}