* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

html {
    width: 100%;
    min-height: 100%;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;

    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.00) 3.74%
        ),
        radial-gradient(
            126.14% 31.7% at 50% 0%,
            #C1CAA9 0%,
            rgba(193, 202, 169, 0.00) 100%
        ),
        radial-gradient(
            96.8% 44.87% at 50% 90.79%,
            #C5D08B 0%,
            rgba(197, 208, 139, 0.00) 100%
        ),
        #7EAE8B;
}

body::after {
    display: block;
    width: 100vw;
    height: 100vh;

    position: fixed;
    top: 0;
    left: 0;

    content: "";

    background: url("pattern.svg");
    mix-blend-mode: soft-light;

    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
    z-index: 2;

    width: 100%;

    padding: 30px 16px 40px;

    box-sizing: border-box;
}

main > .banner {
    position: relative;

    width: 100%;
    max-width: 400px;

    margin: 16px auto;
    padding: 32px 0;

    background: #ffffff;

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    border-radius: 16px;

    z-index: 998;

    box-sizing: border-box;

    overflow: hidden;
}

.banner > .text {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-sizing: border-box;
}


/* =========================================================
   АВАТАР
   ========================================================= */

.lucas-avatar {
    width: 122px !important;
    height: 122px !important;

    min-width: 122px !important;
    min-height: 122px !important;

    max-width: 122px !important;
    max-height: 122px !important;

    margin: 0 auto 16px !important;
    padding: 0 !important;

    display: block !important;

    position: relative !important;

    overflow: hidden !important;

    border-radius: 50% !important;

    flex: none !important;

    box-sizing: border-box !important;

    pointer-events: none !important;
}

.lucas-avatar img {
    display: block !important;

    width: 122px !important;
    height: 122px !important;

    min-width: 122px !important;
    min-height: 122px !important;

    max-width: 122px !important;
    max-height: 122px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    border-radius: 50% !important;

    object-fit: cover !important;

    box-sizing: border-box !important;

    pointer-events: none !important;
}


/* =========================================================
   ЗАГОЛОВОК
   ========================================================= */

main > .banner > .text > .title {
    font-family: 'Roboto', sans-serif;

    width: 100%;
    max-width: 340px;

    padding: 0 10px;
    margin: 0 auto;

    font-size: 26px;
    line-height: 32px;

    font-weight: bold;

    text-align: center;

    color: #000;

    overflow: hidden;

    text-overflow: ellipsis;

    box-sizing: border-box;

    pointer-events: none;
}


/* =========================================================
   ПОДПИСЧИКИ
   ========================================================= */

main > .banner > .text > .members {
    font-family: 'Roboto', sans-serif;

    font-size: 15px;
    line-height: 18px;

    text-align: center;

    padding: 6px 16px 0;

    color: #7d7f81;
}


/* =========================================================
   ОПИСАНИЕ
   ========================================================= */

main > .banner > .text > .description {
    display: -webkit-box;

    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;

    width: calc(100% - 32px);

    max-width: 368px;
    max-height: 125px;

    margin: 10px 16px 0;
    padding: 0;

    font-family: 'Roboto', sans-serif;

    font-size: 16px;
    line-height: 25px;

    text-align: center;

    word-break: break-word;

    box-sizing: border-box;

    pointer-events: none;
}


/* =========================================================
   КНОПКА
   ========================================================= */

.banner > .buttons {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 15px;

    margin-top: 15px;
}

main > .banner > .buttons > .blue {
    font-family: 'Roboto', sans-serif;

    background-image: linear-gradient(
        270deg,
        rgba(100, 181, 239, 0) 48.44%,
        #64b5ef 75.52%,
        rgba(100, 181, 239, 0) 100%
    );

    background-repeat: no-repeat;

    background-position: -500px 0;

    background-color: #2481cc;

    font-size: 14px;
    line-height: 17px;

    font-weight: bold;

    -webkit-font-smoothing: antialiased;

    color: #fff;

    border-radius: 22px;

    overflow: hidden;

    display: inline-block;

    padding: 13px 24px;

    text-transform: uppercase;

    vertical-align: top;

    z-index: 99999;

    position: relative;

    text-decoration: none;

    animation: none;

    transition:
        background-color 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.1s ease;
}


/* Наведение */

main > .banner > .buttons > .blue:hover {
    background-color: #2d8bd0;

    box-shadow:
        0 0 7px rgba(36, 129, 204, 0.45);

    background-position: 0 0;
}


/* Нажатие */

main > .banner > .buttons > .blue:active {
    background-color: #2176b8;

    box-shadow:
        0 0 5px rgba(36, 129, 204, 0.35);

    transform: scale(0.98);
}


/* =========================================================
   ЗАЩИТА ОТ ЛИШНИХ КЛИКАБЕЛЬНЫХ ОБЛАСТЕЙ
   ========================================================= */

.lucas-avatar,
.lucas-avatar *,
.title,
.members,
.description {
    pointer-events: none;
}


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 480px) {

    main {
        width: 100%;

        padding:
            20px 12px 40px;

        box-sizing: border-box;
    }

    main > .banner {
        width: 100%;
        max-width: 400px;

        margin-left: auto;
        margin-right: auto;

        overflow: hidden !important;

        box-sizing: border-box;
    }

    .lucas-avatar {
        width: 122px !important;
        height: 122px !important;

        min-width: 122px !important;
        min-height: 122px !important;

        max-width: 122px !important;
        max-height: 122px !important;

        overflow: hidden !important;

        flex: none !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

    .lucas-avatar img {
        width: 122px !important;
        height: 122px !important;

        min-width: 122px !important;
        min-height: 122px !important;

        max-width: 122px !important;
        max-height: 122px !important;

        object-fit: cover !important;

        display: block !important;
    }
}