:root {
    --container-max-width: 1470px;
    --logo-width: clamp(8.0625rem, 7.1827rem + 3.9103vw, 11.875rem);
    --font-small: clamp(0.75rem, 0.7212rem + 0.1282vw, 0.875rem);
    --font-regular: clamp(0.8125rem, 0.7837rem + 0.1282vw, 0.9375rem);
    --font-medium: clamp(0.9375rem, 0.8942rem + 0.1923vw, 1.125rem);
    --font-large: clamp(1.25rem, 1.1635rem + 0.3846vw, 1.625rem);
    --font-xtra-large: clamp(1.625rem, 1.4952rem + 0.5769vw, 2.1875rem);
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: var(--font-regular);
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
}

.header {
    background: #080014;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
}

.header__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: var(--container-max-width);
    padding: 0 15px;
    margin: 0 auto;
    height: 80px;
}

@media screen and (min-width: 768px) {
    .header__inner {
        height: 100px;
    }
}

.menu {
    background: #080014;
    width: 70vw;
    height: 100vh;
    position: fixed;
    z-index: 999;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .15s ease-in-out, opacity .15s ease-in-out;
}

@media screen and (min-width: 768px) {
    .menu {
        width: 400px;
    }
}

.menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.menu-toggler {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    position: relative;
    width: 31px;
    height: 24px;
    cursor: pointer;
}

.menu-toggler--open {
    margin: 0 20px 0 0;
}

.menu-toggler--open .menu-toggler__bar {
    width: 100%;
    top: 10px; 
}

.menu-toggler--open:before,
.menu-toggler--open:after {
    content: '';
    transition: width .15s ease-in-out, background .15s ease-in-out;
}

.menu-toggler--open:before {
    width: 75%;
    top: 0;
}

.menu-toggler--open:after {
    width: 50%;
    bottom: 0;
}

.menu-toggler--open .menu-toggler__bar,
.menu-toggler--open:before,
.menu-toggler--open:after {
    display: block;
    background: #fff;
    border-radius: 5px;
    height: 4px;
    position: absolute;
    left: 0;
}

.menu-toggler--open:hover:before,
.menu-toggler--open:hover:after {
    width: 100%;
    background: #8345d5;
}

.menu-toggler--close {
    position: absolute;
    top: 25px;
    right: 25px;
    transition: transform .15s ease-in-out;
}

.menu-toggler--close:before,
.menu-toggler--close:after {
    display: block;
    content: '';
    width: 100%;
    height: 4px;
    background: #fff;
    position: absolute;
    border-radius: 5px;
    left: 0;
    top: 10px;
    transform: rotate(45deg);
    transition: background .15s ease-in-out;
}

.menu-toggler--close:before {
    transform: rotate(45deg);
}

.menu-toggler--close:after {
    transform: rotate(-45deg);
}

.menu-toggler--close:hover:before,
.menu-toggler--close:hover:after {
    background: #8345d5;
}

.menu-toggler--close:hover {
    transform: rotate(180deg);
}

.menu__nav {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 25px 50px;
    box-sizing: border-box;
    gap: 25px;
}

.menu__nav-item {
    display: block;
    text-decoration: none;
    color: #fff;
    transition: color .15s ease-in-out;
    font-size: var(--font-medium);
    font-weight: 600;
}

.menu__nav-item:hover {
    color: #8345d5;   
}

.alerts {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: flex-start;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 5px;
    z-index: 998;
    gap: 10px;
}

.alert {
    display: none;
    opacity: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #8345d5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    width: 100%;
    column-gap: 5px;
    row-gap: 2px;
}

@media screen and (min-width: 1060px) {
    .alerts {
        align-items: start;
        padding: 0;
        top: 130px;
        left: 30px;
        position: absolute;
    }

    .alert {
        padding: 15px 30px 15px 20px;
    }

    .alerts, .alert {
        width: auto;
    }
}

.alert.active {
    display: flex;
    animation: fadeIn .3s ease forwards;
}

.alert svg {
    width: 20px;
    height: 20px;
    fill: #8345d5;
    margin-right: 5px;
}

.alert span {
    color: #8345d5;
    font-weight: 600;
}

.logo {
    max-width: var(--logo-width);
}

.language-list {
    margin-left: auto;
    position: relative;
}

.language-list__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    height: 50px;
    padding: 0px 15px;
    text-decoration: none;
}

.language-list__item.current {
    cursor: pointer;
    border-bottom: 0;
}

.language-list__item.current:after {
    border-style: solid;
    border-width: 1px 1px 0 0;
    border-color: #ffffff;
    content: '';
    display: inline-block;
    height: 8px;
    left: 0;
    position: relative;
    top: -2px;
    transform: rotate(135deg);
    vertical-align: top;
    width: 8px;
    transition: transform .15s ease-in-out;
}

.language-list.active .language-list__item.current:after {
    transform: rotate(-45deg);
    top: 2px;
}

.language-list__item.current .language-list__item-title {
    display: none;
}

@media screen and (min-width: 768px) {
    .language-list__item.current .language-list__item-title {
        display: block;
    }
}

.language-list__item-title {
    color: #fff;
    margin: 0;
}

.language-list__item:not(.current) .language-list__item-title {
    color: #000;
    transition: color .15s ease-in-out;
}

.language-list__item:not(.current):not(:last-child) {
    border-bottom: 1px solid #ebebeb;
}

.language-list__item:not(.current):hover .language-list__item-title {
    color: #8345d5;
}

.language-list__dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    border: 1px solid #8345d5;
    width: 190px;
    max-height: 200px;
    overflow: auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    opacity: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 999;
}

.language-list__dropdown::-webkit-scrollbar {
    display: none;
}

.language-list.active .language-list__dropdown {
    display: block;
    animation: fadeIn .15s ease forwards;
}

.main {
    display: flex;
    flex-direction: row;
    align-items: start;
    flex-direction: start;
    flex-wrap: wrap;
    gap: 15px;
    max-width: var(--container-max-width);
    padding: 30px 15px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .main {
        gap: 30px;
    }
}

.mirror,
.gateway,
.details,
.preview,
.comments,
.stats-box {
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
}

.details {
    width: 100%;
    position: relative;
    z-index: 997;
}

@media screen and (min-width: 768px) {
    .mirror,
    .gateway,
    .details,
    .preview,
    .comments,
    .stats-box {
        padding: 35px 50px;
    }

    .details {
        padding-left: 35px;
        padding-right: 35px;
    }
}

@media screen and (min-width: 1060px) {
    .details {
        width: calc(40% - 15px);
    }
}

.details,
.preview,
.comments,
.stats-box {
    background-color: rgba(22, 0, 51, 1);
    background-image: linear-gradient(75deg, rgba(22, 0, 51, 1) 0%, rgba(2, 0, 4, 1) 100%);
}

.stats-box {
    width: 100%;
    flex-grow: 1;
}

@media screen and (min-width: 768px) {
    .stats-box {
        width: calc(100% / 2 - 20px);
    }
}

@media screen and (min-width: 1060px) {
    .stats-box {
        width: calc(100% / 3 - 20px);
    }
}

.preview,
.comments {
    width: 100%;
}

.mirror, 
.gateway {
    flex-direction: row;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    background-color: rgba(131, 69, 213, 1);
    background-image: linear-gradient(75deg, rgba(131, 69, 213, 1) 0%, rgba(119, 17, 255, 1) 100%);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.mirror {
    display: flex;
}

.mirror.hidden {
    animation: fadeOut .15s ease forwards;
}

.gateway {
    display: none;
}

.gateway.active {
    display: flex;
    animation: fadeIn .15s ease forwards;
}

@media screen and (min-width: 768px) {
    .mirror,
    .gateway {
        flex-direction: row;
        align-items: start;
    }
}

@media screen and (min-width: 1060px) {
    .mirror,
    .gateway {
        width: calc(60% - 15px);
    }
}

.mirror__overlay,
.gateway__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .15));
    -webkit-mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .15));
    mask-mode: alpha;
    -webkit-mask-mode: alpha;
}

.mirror__poster,
.gateway__poster {
    width: 100%;
    flex-shrink: 0;
    border: 5px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

@media screen and (min-width: 768px) {
    .mirror__poster,
    .gateway__poster {
        aspect-ratio: 30/37;
        max-width: 260px;
        margin-right: 20px;
    }
}

.mirror__poster img,
.gateway__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mirror__details,
.gateway__details {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .mirror__details,
    .gateway__details {
        width: calc(100% - 260px - 50px - 10px);
        margin-top: 25px;
    }
}

.mirror__date {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    margin: 0;
}

.mirror__date svg {
    width: 18px;
    height: 18px;
    fill: #8dff30;
    margin-right: 10px;
    flex-shrink: 0;
}

.mirror__date span {
    margin-left: 5px;
}

.mirror__title {
    color: #fff;
    /*font-family: 'TT Octosquares', sans-serif;*/
    font-weight: 700;
    font-size: var(--font-large);
    line-height: var(--font-xtra-large);
    /*letter-spacing: -0.02em;*/
    margin: 0;
    width: 100%;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .2);
    white-space: pre-line;
}

@media screen and (min-width: 768px) {
    .mirror__title {
        margin-bottom: 15px;
    }
}

.mirror__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 190px;
}

.mirror__meta svg {
    width: 45px;
    height: 55px;
    fill: #8dff30;
    margin-right: 15px;
    flex-shrink: 0;
}

.mirror__meta-title,
.mirror__meta-value {
    margin: 0;
    line-height: 1;
}

.mirror__meta-title {
    margin-bottom: 5px;
}

.mirror__meta-value {
    font-family: 'TT Octosquares', sans-serif;
    font-weight: 700;
    font-size: var(--font-large);
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .2);
}

.mirror__button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background: #8dff30;
    color: #000;
    border: 0;
    font-family: 'TT Octosquares', sans-serif;
    font-weight: 600;
    font-size: var(--font-regular);
    letter-spacing: -0.02em;
    padding: 15px 30px 15px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    cursor: pointer;
    margin-top: 5px;
    margin-right: 10%;
    transition: transform .15s ease-in-out, box-shadow .15s ease-in-out;
}

.mirror__button:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.mirror__button svg {
    width: 23px;
    height: 28px;
    fill: #000;
    margin-right: 15px;
    transition: transform .15s ease-in-out;
    flex-shrink: 0;
}

.mirror__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.mirror__button:hover svg {
    transform: rotate(350deg);
}

.gateway__header {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: flex-start;
    gap: 15px;
}

.gateway__header-icon {
    width: 52px;
    height: 59px;
    fill: #8dff30;
    flex-shrink: 0;
}

.gateway__title,
.gateway__subtitle {
    margin: 0;
}

.gateway__title {
    font-size: var(--font-large);
    font-weight: 700;
    /*font-family: 'TT Octosquares', sans-serif;*/
    /*letter-spacing: -0.02em;*/
    color: #fff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .2);
}

.gateway__subtitle {
    font-size: var(--font-regular);
    color: #fff;
}

.gateway__offers {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    margin: 10px 0 5px 0;
    width: 100%;
    counter-reset: num;
}

.gateway__offer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    background: #080014;
    color: #fff;
    font-size: var(--font-regular);
    text-decoration: none;
    /*font-family: 'TT Octosquares', sans-serif;*/
    /*font-weight: 600;*/
    font-size: var(--font-small);
    padding: 10px;
    border-radius: 20px;
    transition: color .15s ease-in-out;
    counter-increment: num;
}

.gateway__offer:hover {
    color: #8dff30;
}

.gateway__offer span {
    width: calc(100% - 35px - 15px);
}

.gateway__offer:before {
    content: counter(num);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 33px;
    border-radius: 15px;
    font-family: 'TT Octosquares', sans-serif;
    font-weight: 700;
    font-size: var(--font-regular);
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
    background: #8dff30;
    color: #080014!important;
}

.gateway__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 20px;
    width: 100%;
    position: relative;
}

@media screen and (min-width: 768px) {
    .gateway__footer {
        flex-direction: row;
    }
}

.gateway__qr-notice {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    background: #f2e9ff;
    width: 100%;
    flex-grow: 1;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    position: relative;
}

@media screen and (max-width: 768px) {
    .gateway__qr-notice:after {
        content: '';
        display: block;
        position: absolute;
        bottom: -13px;
        left: 50%;
        transform: translateX(-50%) rotate(0deg);
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 13px 13px 0 13px;
        border-color: #f2e9ff transparent transparent transparent;
    }
}

.gateway__qr-notice svg {
    width: 44px;
    height: 44px;
    fill: #8345d5;
    flex-shrink: 0;
}

.gateway__qr-notice-title,
.gateway__qr-notice-subtitle {
    margin: 0;
}

.gateway__qr-notice-title {
    font-weight: 600;
}

.gateway__qr-notice-subtitle {
    display: none;
}

@media screen and (min-width: 768px) {
    .gateway__qr-notice-subtitle {
        display: block;
    }
}

.gateway__qr-code {
    max-width: 80px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid rgba(17, 15, 15, 0.1);
    box-sizing: content-box;
}

.gateway__spinner {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

.gateway__spinner:before {
    content: '';
    display: inline-block;
    margin-right: 10px;
    width: 10px;
    padding: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #8dff30;
    --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: rotate 1s infinite linear;
}

.gateway__spinner.active {
    display: flex;
    animation: fadeIn .15s ease forwards;
}

.highlight-text {
    color: #8dff30;
}

.notice {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    position: relative;
}

@media screen and (min-width: 768px) {
    .notice {
        margin-bottom: 15px;
    }
}

.notice svg {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    flex-shrink: 0;
}

.notice--light {
    background: #f2e9ff;
}

.notice--light svg {
    flex-shrink: 0;
    fill: #8345d5;
}

.notice--dark {
    background: #3b2952;
    color: #fff;
}

.notice--dark svg {
    fill: #8dff30;
}

.title-text {
    font-size: var(--font-large);
    font-weight: 700;
    /*font-family: 'TT Octosquares', sans-serif;*/
    /*letter-spacing: -0.02em;*/
    color: #fff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .2);
    margin: 0 0 25px 0;
}

.subtitle-text {
    font-size: var(--font-medium);
    /*font-family: 'TT Octosquares', sans-serif;*/
    font-weight: 700;
    /*letter-spacing: -0.02em;*/
    color: #fff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .2);
    margin: 0 0 15px 0;
}

.highlight-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.highlight-list__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-radius: 20px;
    padding: 15px 20px;
}

.highlight-list__item-text {
    margin: 0;
    color: #fff;
}

.highlight-list__item-text strong {
    font-weight: 600;
}

.highlight-list__item svg {
    width: 35px;
    height: 35px;
    margin-right: 15px;
    flex-shrink: 0;
}

.highlight-list__item:nth-child(odd) {
    background-color: rgba(131, 69, 213, 1);
    background-image: linear-gradient(75deg, rgba(131, 69, 213, 1) 0%, rgba(119, 17, 255, 1) 100%);
}

.highlight-list__item:nth-child(odd) svg {
    fill: #fff;
}

.highlight-list__item:nth-child(even) {
    border: 1px solid #8345d5;
}

.highlight-list__item:nth-child(even) svg {
    fill: #8345d5;
}

.highlist-list--countable {
    counter-reset: step;
}

.highlight-list--countable .highlight-list__item {
    counter-increment: step;
}

.highlight-list--countable .highlight-list__item:before {
    content: counter(step);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 38px;
    border-radius: 15px;
    font-family: 'TT Octosquares', sans-serif;
    font-weight: 700;
    font-size: var(--font-medium);
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.highlight-list--countable .highlight-list__item:nth-child(odd):before {
    background: #fff;
    color: #8345d5;
}

.highlight-list--countable .highlight-list__item:nth-child(even):before {
    background-color: rgba(131, 69, 213, 1);
    background-image: linear-gradient(75deg, rgba(131, 69, 213, 1) 0%, rgba(119, 17, 255, 1) 100%);
    color: #fff;
}

.preview {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

@media screen and (min-width: 1060px) {
    .preview {
        flex-direction: row;
    }

    .preview:before {
        content: '';
        display: block;
        position: absolute;
        width: clamp(170px, calc(170px + (63 * ((100vw - 1060px) / 860))), 233px);
        height: clamp(160px, calc(160px + (65 * ((100vw - 1060px) / 860))), 225px);
        top: clamp(-155px, calc(-100px - (55 * ((100vw - 1060px) / 860))), -100px);
        right: clamp(40px, calc(40px + (35 * ((100vw - 1060px) / 860))), 75px);
        background: url('../img/gamepad.png') no-repeat;
        background-size: 100% 100%;
        background-position: center;
    }
}

.preview__embed {
    width: 100%;
}

.preview__meta {
    width: 100%;
}

@media screen and (min-width: 1060px) {
    .preview__embed {
        width: calc(60% - 15px);
    }

    .preview__meta {
        width: calc(40% - 15px);
    }
}

.player {
    aspect-ratio: 16/9;
    border: 5px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.player__overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--player-bg) center/cover no-repeat;
}

.player__overlay:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, .5) 100%);
}

.player__button {
    fill: #fff;
    position: relative;
    cursor: pointer;
    width: 100px;
    height: 100px;
    opacity: .5;
    transition: opacity .15s ease-in-out;
}

.player__button:hover {
    opacity: 1;
}

.player__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partners-label {
    margin-top: 20px;
}

.partners {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.partners__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #8345d5;
    border-radius: 15px;
    width: calc(100% / 2 - 10px);
    height: 65px;
}

@media screen and (min-width: 768px) {
    .partners__item {
        width: calc(100% / 3 - 10px);
    }
}

.partners__item img {
    max-width: 80%;
}

.stats-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
}

.stats-box__label {
    font-size: var(--font-large);
    /*font-family: 'TT Octosquares', sans-serif;*/
    font-weight: 700;
    /*letter-spacing: -0.02em;*/
    line-height: var(--font-large);
    color: #fff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .2);
}

.stats-box__label span {
    display: block;
}

.stats-box__data {
    border-left: 2px dotted rgba(255, 255, 255, .25);
    padding-left: 20px;
}

.stats-box__value {
    font-size: var(--font-xtra-large);
    font-family: 'TT Octosquares', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: var(--font-xtra-large);
    color: #fff;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .2);
}

.stats-box__value:after {
    content: '+';
    color: #8dff30;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .2);
}

.stats-box__value-label {
    /*font-family: 'TT Octosquares', sans-serif;
    font-weight: 500;*/
    line-height: var(--font-regular);
    color: #fff;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .2);
}

.comments__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 15px;
    max-height: 390px;
    overflow-y: auto;
    padding-right: 15px;
}

.comments__list::-webkit-scrollbar {
    width: 15px;
}

.comments__list::-webkit-scrollbar-track {
    background: #ebebeb;
    border-radius: 20px;
}
 
.comments__list::-webkit-scrollbar-thumb {
    background-color: rgba(131, 69, 213, 1);
    background-image: linear-gradient(75deg, rgba(131, 69, 213, 1) 0%, rgba(119, 17, 255, 1) 100%);
    border-radius: 20px;
    border: 3px solid #ebebeb;
}

.comments__list::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
    background: rgba(131, 69, 213, 1);
}

.comment {
    display: block;
    background: #3b2952;
    border-radius: 20px;
    padding: 20px;
}

.comment.active {
    animation: fadeIn .3s ease forwards;
}

.comment.hidden {
    display: none;
}

.comment__author,
.comment__content {
    margin: 0;
}

.comment__author {
    color: #8dff30;
}

.comment__content {
    color: #fff;
}

.comments__form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 15px;
    margin: 25px 0 15px 0;
}

@media screen and (min-width: 768px) {
    .comments__form {
        flex-direction: row;
        align-items: center;
    }
}

.comments__form-input {
    flex-grow: 1;
    background: #fff;
    padding: 18px 25px;
    border-radius: 20px;
    border: 0;
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-regular);
    color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    cursor: pointer;
}

.comments__form-input::placeholder {
    color: #000;
}

.comments__form-input:disabled {
    opacity: .75;
    cursor: not-allowed;
}

.comments__form-submit {
    background: #8dff30;
    color: #000;
    border: 0;
    font-family: 'TT Octosquares', sans-serif;
    font-weight: 600;
    font-size: var(--font-regular);
    letter-spacing: -0.02em;
    padding: 18px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    cursor: pointer;
}

.comments__form-submit:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.footer {
    background: #080014;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, .2);
}

.footer__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: var(--container-max-width);
    padding: 0 15px;
    margin: 0 auto;
    height: 80px;
}

@media screen and (min-width: 768px) {
    .footer__inner {
        height: 100px;
    }
}

.copyrights {
    margin-left: auto;
    color: #fff;
}

.disclaimer {
    color: #000;
    max-width: var(--container-max-width);
    padding: 20px 15px;
    margin: 0 auto;
    text-align: right;
}

.article {
    width: 100%;
    margin: 0 auto 30px auto;
}

.article__title {
    display: inline-block;
    color: #000;
    font-weight: 700;
    font-size: var(--font-xtra-large);
    margin: 0 0 35px 0;
}

.article__title:after {
    content: '';
    display: block;
    width: 60px;
    height: 15px;
    margin-top: 5px;
    background: #8345d5;
}

.article__content {
    background: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
}

@media screen and (min-width: 768px) {
    .article {
        width: 70%;
    }

    .article__content {
        padding: 50px;
    }

    .article__title {
        margin: 20px 0 50px 0;
    }
}

.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5,
.article__content h6 {
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.article__content h1 { 
    font-size: var(--font-xtra-large);
    font-weight: 600;
}

.article__content h2 { 
    font-size: var(--font-large); 
    font-weight: 600;
}

.article__content h3 { 
    font-size: var(--font-medium);
    font-weight: 600;
}

.article__content h4, 
.article__content h5,
.article__content h6 { 
    font-size: var(--font-regular); 
    font-weight: 400;
}

.article__content strong {
    font-weight: 600;
}

.article__content p,
.article__content ul,
.article__content ol {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.article__content a {
    font-weight: 600;
    text-decoration: none;
    transition: color .15s ease-in-out;
}

.article__content a:hover {
    color: #8345d5;
}

.article__content img,
.article__content iframe,
.article__content embed,
.article__content video {
    display: block;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 100%;
}

.article__content ol,
.article__content ul {
    padding-left: 15px;
    margin-left: 0;
}

.article__content ul li::marker,
.article__content ol li::marker {
    color: #8345d5;
    font-weight: 600;
}

.article__content > *:first-child { 
    margin-top: 0; 
}

.article__content > *:last-child { 
    margin-bottom: 0; 
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    to { 
        transform: rotate(1turn); 
    }
}