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

/*  TG STYLES  */
body,
html.theme_dark body.bg_light {
    --text-color: #000;
    --second-text-color: #7d7f81;
    --accent-btn-color: #2481cc;
    --accent-color-hover: #1a8ad5;
    --body-bg: #fff;
    --box-bg: #fff;
    --box-bg-blured: rgba(255, 255, 255, .84);
    --tme-logo-color: #363b40;
    --accent-link-color: #2481cc;
    --pattern-url: url('../images/pattern.svg?1');
    --pattern-intensity: 0.3;
}

html.theme_dark body,
html body.bg_dark {
    --text-color: #fff;
    --accent-btn-color: #1c93e3;
    --body-bg: #000;
    --box-bg: #1e1e1e;
    --box-bg-blured: rgba(34, 34, 34, .84);
    --tme-logo-color: #fff;
    --accent-link-color: #3ca1eb;
    --pattern-url: url('../images/pattern.svg?1');
    --pattern-intensity: 0.3;
}

body {
    background: var(--body-bg);
}


.page_background_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: var(--body-bg);
}
.page_background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.page_background.default {
}
.page_background.motion {
    left: -10px;
    top: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    animation: bg-motion 10s linear infinite;
}
.page_background_pattern {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: overlay;
    background: center repeat;
    background-size: 420px auto;
    background-image: var(--pattern-url, none);
    opacity: var(--pattern-intensity, 1);
}
.page_background_pattern.default {
    opacity: 0.3;
    background-image: url('../images/pattern.svg?1');
}
html.theme_dark .page_background,
body.bg_dark .page_background {
    -webkit-mask: center repeat;
    -webkit-mask-size: 420px auto;
    -webkit-mask-image: var(--pattern-url, none);
    opacity: var(--pattern-intensity, 1);
}
html.theme_dark .page_background.default,
body.bg_dark .page_background.default {
    opacity: 0.3;
    -webkit-mask-image: url('../images/pattern.svg?1');
}
body.bg_light .page_background,
body.bg_light .page_background.default {
    -webkit-mask: none;
    opacity: 1;
}
html.theme_dark .page_background_pattern,
body.bg_dark .page_background_pattern {
    display: none;
}
body.bg_light .page_background_pattern {
    display: block;
}

@-webkit-keyframes bg-motion {
    20% { transform: translateX(0px); }
    25% { transform: translateX(-10px); }
    35% { transform: translateX(10px); }
    40% { transform: translateX(0px); }
}
@keyframes bg-motion {
    20% { transform: translateX(0px); }
    25% { transform: translateX(-10px); }
    35% { transform: translateX(10px); }
    40% { transform: translateX(0px); }
}






/* PAGE STYLES */
/* PAGE STYLES */
/* PAGE STYLES */
/* PAGE STYLES */
/* PAGE STYLES */
/* PAGE STYLES */
/* PAGE STYLES */
/* PAGE STYLES */



header {
    min-width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: var(--box-bg-blured);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    z-index: 1;
}

header > .container{
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
}

header > .container > img{
    max-height: 34px;
    height: 34px;
}

header > .container > button{
    display: inline-block;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
    color: #fff;
    background: #2481cc;
    padding: 9px 16px;
    height: 34px;
    border-radius: 17px;
    text-align: center;
    transition: all .15s ease .15s;
    border: 0;
}

main{
    padding: 70px 16px 40px;
}

main > .banner{
    position: relative;
    margin: 16px auto;
    padding: 32px 0;
    max-width: 400px;
    background: var(--box-bg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: all .15s ease .15s;
}

main > .banner > .text > a > img{
    width: 122px;
    height: 122px;
    border-radius: 61px;
}

main > .banner > .text > a{
    text-align: center;
    padding-bottom: 16px;
}

main > .banner > .text > .title{
    font-size: 26px;
    line-height: 32px;
    font-weight: bold;
    text-align: center;
    max-width: 340px;
    padding: 0 10px;
    margin: 0 auto;
    color: var(--text-color);
    overflow: hidden;
    text-overflow: ellipsis;
}

main > .banner > .text > .members{
    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;
    max-height: 125px;
    word-break: break-word;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    margin: 10px 16px 0;
    padding: 0;
    color: var(--text-color);
}

@-webkit-keyframes bg-move {
    0%   { background-position: -500px 0; }
    100% { background-position: 1000px 0; }
}
@keyframes bg-move {
    0%   { background-position: -500px 0; }
    100% { background-position: 1000px 0; }
}

main > .banner > .buttons > .blue {
    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;
    animation: bg-move linear 5s infinite;
    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;
}

.button_shine {
    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;
    animation: bg-move linear 5s infinite;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    color: #FFF;
    background-color: #2481cc;
    border-radius: 22px;
    overflow: hidden;
    display: inline-block;
    padding: 13px 24px;
    max-height: 42px;
    text-transform: uppercase;
    vertical-align: top;
    text-decoration: none;
}

.banner > .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

main > .banner > .buttons > .blue-bordered {
    border: 2px solid #2481cc;

    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    color: #2481cc;
    border-radius: 22px;
    overflow: hidden;
    display: inline-block;
    padding: 11px 22px;
    text-transform: uppercase;
    vertical-align: top;
    z-index: 99999;
    position: relative;
    text-decoration: none;
}

.banner > .text {
    display: flex;
    flex-direction: column;
}













