:root {
    --banner-color: #fff6fb;
    --footer-bg: #1b102b;
    --table-color: #fff6fb;

    --main-text: #fff6fb;
    --reg-btn: #c00062;
    --login-btn: #5b2f86;
    --text-btns: #fff6fb;
}
@keyframes pulse-signup {
    0% {
        box-shadow: 0 0 0 0 color-mix(in srgb, #c00062 55%, transparent);
    }

    70% {
        box-shadow: 0 0 0 12px color-mix(in srgb, #c00062 0%, transparent);
    }

    to {
        box-shadow: 0 0 0 0 color-mix(in srgb, #c00062 0%, transparent);
    }
}

@keyframes pulse-login {
    0% {
        box-shadow: 0 0 0 0 color-mix(in srgb, #5b2f86 55%, transparent);
    }

    70% {
        box-shadow: 0 0 0 12px color-mix(in srgb, #5b2f86 0%, transparent);
    }

    to {
        box-shadow: 0 0 0 0 color-mix(in srgb, #5b2f86 0%, transparent);
    }
}

*,
::after,
::before {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    line-height: 1;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #fff6fb;
    line-height: 1.46;
    background-color: #07030b;
    min-width: 300px;
}

section {
    padding-top: 15px;
}

section:not(:last-child) {
    border-bottom: 1.5px solid color-mix(in srgb, #fff6fb 15%, transparent);
    padding-bottom: 15px;
}

a {
    display: inline-block;
    text-decoration: none;
}

img {
    vertical-align: top;
}

h1 {
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

h2 {
    text-transform: capitalize;
    margin-bottom: 0.8rem;
}

button,
h1,
h2 {
    font-size: inherit;
}

p {
    margin-bottom: 1rem;
}

ol,
ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 25px;
    margin-bottom: 8px;
}

ul {
    list-style: square;
}

ol {
    list-style: decimal;
}

.aside__nav-list ul,
.header-nav-list ul,
aside ul,
footer ul,
header ul {
    display: block;
    flex-direction: initial;
    gap: 0;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.header-nav-list {
    list-style: none;
    margin-bottom: 0;
}

.aside__nav-list {
    margin-bottom: 0;
}

.aside__nav-list,
.games__list {
    display: block;
    list-style: none;
}

.footer__links,
.nav-list,
[role="menu"] {
    display: block;
    list-style: none;
    margin-bottom: 0;
}

.nav-list,
[role="menu"] {
    padding-left: 0;
}

button {
    font-family: inherit;
}

button {
    line-height: inherit;
}

a,
button {
    color: inherit;
}

a,
button {
    cursor: pointer;
}

button {
    background-color: transparent;
}

.header {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
    border-bottom: 1.5px solid color-mix(in srgb, #fff6fb 10%, transparent);
}

section>h1 {
    color: #fff6fb;
    font-weight: 600;
}

@media (min-width: 73.125em) {
    section>h1 {
        font-size: 2.125rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (font-size: clamp(1.75rem, 1.6088235294rem + 0.7058823529vw, 2.125rem)) {
        section>h1 {
            font-size: clamp(1.75rem, 1.6088235294rem + 0.7058823529vw, 2.125rem);
        }
    }

    @supports not (font-size: clamp(1.75rem, 1.6088235294rem + 0.7058823529vw, 2.125rem)) {
        section>h1 {
            font-size: calc(1.75rem + 0.375 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {
    section>h1 {
        font-size: 1.75rem;
    }
}

@media (min-width: 73.125em) {
    section>h1 {
        line-height: 2.125rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (line-height: clamp(1.75rem, 1.6088235294rem + 0.7058823529vw, 2.125rem)) {
        section>h1 {
            line-height: clamp(1.75rem, 1.6088235294rem + 0.7058823529vw, 2.125rem);
        }
    }

    @supports not (line-height: clamp(1.75rem, 1.6088235294rem + 0.7058823529vw, 2.125rem)) {
        section>h1 {
            line-height: calc(1.75rem + 0.375 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {
    section>h1 {
        line-height: 1.75rem;
    }
}

@media (min-width: 73.125em) {
    section>h2 {
        font-size: 1.875rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (font-size: clamp(1.625rem, 1.5308823529rem + 0.4705882353vw, 1.875rem)) {
        section>h2 {
            font-size: clamp(1.625rem, 1.5308823529rem + 0.4705882353vw, 1.875rem);
        }
    }

    @supports not (font-size: clamp(1.625rem, 1.5308823529rem + 0.4705882353vw, 1.875rem)) {
        section>h2 {
            font-size: calc(1.625rem + 0.25 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {
    section>h2 {
        font-size: 1.625rem;
    }
}

@media (min-width: 73.125em) {
    section>h2 {
        line-height: 1.875rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (line-height: clamp(1.625rem, 1.5308823529rem + 0.4705882353vw, 1.875rem)) {
        section>h2 {
            line-height: clamp(1.625rem, 1.5308823529rem + 0.4705882353vw, 1.875rem);
        }
    }

    @supports not (line-height: clamp(1.625rem, 1.5308823529rem + 0.4705882353vw, 1.875rem)) {
        section>h2 {
            line-height: calc(1.625rem + 0.25 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {
    section>h2 {
        line-height: 1.625rem;
    }
}

section>p,
section>section>div>p {
    font-weight: 400;
    word-spacing: 0.0625rem;
}

@media (min-width: 73.125em) {

    section>p,
    section>section>div>p {
        font-size: 0.96rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (font-size: clamp(0.875rem, 0.8279411765rem + 0.2352941176vw, 1rem)) {

        section>p,
        section>section>div>p {
            font-size: clamp(0.875rem, 0.8279411765rem + 0.2352941176vw, 1rem);
        }
    }

    @supports not (font-size: clamp(0.875rem, 0.8279411765rem + 0.2352941176vw, 1rem)) {

        section>p,
        section>section>div>p {
            font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {

    section>p,
    section>section>div>p {
        font-size: 0.875rem;
    }
}

@media (min-width: 73.125em) {

    section>p,
    section>section>div>p {
        line-height: 1.45rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (line-height: clamp(1.125rem, 1.0779411765rem + 0.2352941176vw, 1.25rem)) {

        section>p,
        section>section>div>p {
            line-height: clamp(1.125rem, 1.0779411765rem + 0.2352941176vw, 1.25rem);
        }
    }

    @supports not (line-height: clamp(1.125rem, 1.0779411765rem + 0.2352941176vw, 1.25rem)) {

        section>p,
        section>section>div>p {
            line-height: calc(1.125rem + 0.125 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {

    section>p,
    section>section>div>p {
        line-height: 1.125rem;
    }
}

.footer__div::after {
    content: "";
    width: 100%;
    border-radius: 0.0625rem;
}

.footer__container,
.main__container {
    max-width: 77.5rem;
    margin: 0 auto;
}

.main__container {
    padding-inline: 0.8rem;
}

.header__container {
    margin: 0 auto;
}

.header {
    background: #1b102b;
}

.header__container,
.header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 0.9375rem;
    -moz-column-gap: 0.9375rem;
    column-gap: 0.9375rem;
    row-gap: 0.3rem;
    max-width: 77.5rem;
    padding: 0.6375rem 1.4rem;
}

.header__top {
    position: relative;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 0.8rem;
}

@media (max-width: 47.99875em) {
    .header__container {
        padding-inline: 1rem;
    }

    .header__top {
        position: relative;
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

@media (min-width: 47.99875em) {
    .header__top a {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.header__top a img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    aspect-ratio: 9.375rem/3.75rem;
    max-height: 3rem;
}

@media (max-width: 47.99875em) {
    .header__top {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

#nav[data-open="true"] .nav-toggle .open-nav,
.header-nav-list {
    display: none;
}

@media (min-width: 1200px) {
    .header-nav-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1.1rem;
    }

    header ul li {
        position: relative;
    }

    .header-nav-list li a {
        position: relative;
        color: #fff6fb;
        font-size: 0.98rem;
        line-height: 1rem;
        font-weight: 500;
        width: 100%;
        border-radius: 0.375rem;
    }
}

ul[role="menu"] {
    gap: 0;
    margin: 0;
    padding: 0;
}

header .header__button-wrapper>[role="menu"] li a {
    display: block;
    padding: 10px 16px;
    color: #fff6fb;
}

header li:focus-within .header__button-wrapper>[role="menu"],
header li:hover .header__button-wrapper>[role="menu"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

header li:has(.header__button-wrapper > ul[role="menu"])::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 8px;
}

header .header__button-wrapper [role="menu"] a {
    background-color: transparent;
    border-radius: 0;
    color: #fff6fb;
    transition: background-color 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}

header .header__button-wrapper [role="menu"] a:hover {
    background-color: transparent;
    color: #fff6fb;
    opacity: 0.6;
}

.header__button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 10px;
}

header .header__button-wrapper>[role="menu"] {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1b102b;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    margin-top: 8px;
    border-radius: 5px;
}

header button[aria-haspopup="menu"] svg {
    display: flex;
    justify-content: center;
    align-items: center;
    fill: #fff6fb;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

header li:focus-within>.header__button-wrapper>button[aria-haspopup="menu"] svg,
header li:hover>.header__button-wrapper>button[aria-haspopup="menu"] svg {
    transform: rotate(0);
}

.aside__button-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

aside button[aria-haspopup="menu"] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #5b2f86;
    flex-shrink: 0;
    position: absolute;
    right: 10px;
    top: 8px;
}

aside button[aria-haspopup="menu"] span {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

aside button[aria-haspopup="menu"] svg {
    fill: #fff6fb;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

[role="menu"] {
    min-width: 180px;
    border: 1px solid color-mix(in srgb, #fff6fb 10%, transparent);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0s linear 0.2s;
    pointer-events: none;
}

aside [role="menu"] {
    border: 0;
    border-top: 1.5px solid color-mix(in srgb, #fff6fb 20%, transparent);
    background: color-mix(in srgb, #c00062 15%, transparent);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

aside li [role="menu"] {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    width: 100%;
    margin: 0;
    padding: 0;
}

aside [role="menu"] li:not(:last-child) {
    border-bottom: 1.5px solid color-mix(in srgb, #fff6fb 25%, transparent);
    margin: 0;
    border-radius: 0;
}

aside li[data-open="true"] .aside__button-wrapper>[role="menu"] {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    display: block;
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

aside li[data-open="true"] .aside__button-wrapper>button[aria-haspopup="menu"] svg {
    transform: rotate(0);
}

body[data-menu-open] {
    overflow: hidden;
}

.header__reg-wrapper {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1rem;
}

@media (max-width: 47.99875em) {
    .header__reg-wrapper {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
        column-gap: 0.5rem;
    }
}

.header__login,
.header__signup {
    position: relative;
    z-index: 1;
    display: block;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2rem;
    padding: 0.75rem 0.8rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    width: auto;
    min-width: 100px;
    height: 2.625rem;
    border-radius: 5px;
    color: #fff6fb;
    transition: box-shadow 0.3s ease;
}

#nav[data-open="true"] button,
.header__login {
    background-color: #5b2f86;
}

.header__signup {
    background-color: #c00062;
}

@media (max-width: 47.99875em) {

    .header__login,
    .header__signup {
        width: 100%;
        height: 2.3rem;
        line-height: 0.9rem;
        display: flex;
        justify-content: center;
    }
}

.header__login::after,
.header__signup::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 0 0 transparent;
}

.header__signup:hover {
    box-shadow: 0 0 8px #c00062;
}

.header__login:hover {
    box-shadow: 0 0 8px #5b2f86;
}

.header__login:hover::after,
.header__signup:hover::after {
    opacity: 1;
}

.header__login:hover::after {
    animation: pulse-login 1.8s ease-out infinite;
}

.header__signup:hover::after {
    animation: pulse-signup 1.8s ease-out infinite;
}

.burger-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header__burger-menu {
    position: absolute;
    left: 0;
}

@media screen and (min-width: 768px) {
    .header__burger-menu {
        position: static;
        display: flex;
    }
}

@media (min-width: 1200px) {
    .header__burger-menu {
        display: none;
    }
}

.burger-icon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 2.1rem;
    height: 1.25rem;
    border-radius: 40%;
}

@media screen and (min-width: 768px) {
    .header__burger-menu {
        width: 3rem;
        height: 1.3rem;
    }
}

.burger-icon span {
    height: 0.22rem;
    background-color: #fff6fb;
    border-radius: 0.125rem;
}

.header-nav-list li a {
    color: #fff6fb;
    font-size: 0.98rem;
    line-height: 1rem;
    font-weight: 500;
    width: 100%;
    border-radius: 0.375rem;
}

.aside {
    position: fixed;
    inset: 0;
    z-index: 52;
    pointer-events: none;
}

.aside__prewrapper {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.aside__wrapper {
    position: absolute;
    top: 0;
    left: -20rem;
    width: 20rem;
    height: 100%;
    background: #1b102b;
    transition: left 0.3s;
    padding: 0.625rem;
    z-index: 2;
}

body[data-menu-open="true"] .aside {
    pointer-events: auto;
}

body[data-menu-open="true"] .aside__prewrapper {
    opacity: 1;
}

body[data-menu-open="true"] .aside__wrapper {
    left: 0;
    box-shadow: 0.0625rem 0 0.3125rem #1b102b;
}

@media (min-width: 1200px) {
    .aside {
        display: none;
    }
}

.aside__prewrapper::-webkit-scrollbar {
    display: none;
}

.aside__logo {
    display: flex;
    justify-content: center;
}

.aside__logo {
    padding-block: 0.9375rem;
    padding-bottom: 0;
    margin-bottom: 0.8rem;
}

.aside__logo a {
    width: 100%;
    max-width: 8rem;
    max-height: 4rem;
}

.aside__logo a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    aspect-ratio: 9.375rem/3.75rem;
}

.aside__buttons-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.aside__buttons-wrapper {
    display: flex;
    padding-inline: 0.625rem;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.aside__nav-list>li {
    background: color-mix(in srgb, #c00062 20%, transparent);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.aside__nav-list li:not(:last-child) {
    margin-bottom: 0.5rem;
}

@media (max-width: 47.99875em) {
    .aside__nav-list li:not(:last-child) {
        margin-bottom: 0.5rem;
    }
}

.aside__nav-list li a {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 500;
    color: #fff6fb;
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    width: 100%;
    padding: 0.75rem 1rem;
}

.aside__nav-list li:focus-visible,
.aside__nav-list li:hover {
    background-color: color-mix(in srgb, #c00062 35%, transparent);
}

.close {
    position: absolute;
    top: 0.6rem;
    right: 0.6em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #c00062;
    width: 36px;
    height: 36px;
}

.close svg {
    flex-shrink: 0;
    fill: none;
    stroke: #fff6fb;
    stroke-width: 2;
}

@media (min-width: 68.75em) {
    .close {
        display: none;
    }
}

.oficcial-greeting__baner-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0 !important;
    margin-bottom: 1.25rem;
    cursor: pointer;
    order: -1;
}

.oficcial-greeting__baner-wrapper:hover .oficcial-greeting__img-wrapper img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
    filter: brightness(0.8);
}

@media (max-width: 47.99875em) {
    .oficcial-greeting__baner-wrapper:hover .oficcial-greeting__img-wrapper img {
        -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
        transform: scale(1.02);
        filter: brightness(0.8);
    }
}

.oficcial-greeting__img-wrapper {
    max-width: 74.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.oficcial-greeting__baner {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 74.375rem;
    aspect-ratio: 1200/400;
    width: 100%;
}

@media (min-width: 73.125em) {
    .oficcial-greeting__baner {
        height: 25rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (height: clamp(12.5rem, 7.7941176471rem + 23.5294117647vw, 25rem)) {
        .oficcial-greeting__baner {
            height: clamp(12.5rem, 7.7941176471rem + 23.5294117647vw, 25rem);
        }
    }

    @supports not (height: clamp(12.5rem, 7.7941176471rem + 23.5294117647vw, 25rem)) {
        .oficcial-greeting__baner {
            height: calc(12.5rem + 12.5 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {
    .oficcial-greeting__baner {
        height: 12.5rem;
    }
}

.oficcial-greeting__sub-text-wrapper,
.oficcial-greeting__text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.oficcial-greeting__text-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    height: 100%;
}

.oficcial-greeting__sub-text-wrapper {
    max-width: 42.5rem;
    padding: 1.1rem 0.95rem;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 55.625em) {
    .oficcial-greeting__sub-text-wrapper {
        margin-left: 0;
    }
}

.oficcial-greeting__slogan-p1 {
    color: var(--banner-color);
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 0.1875rem #1c1234;
    text-align: center;
    margin-bottom: 0.5rem;
}

@media (min-width: 73.125em) {
    .oficcial-greeting__slogan-p1 {
        font-size: 1.875rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (font-size: clamp(1.125rem, 0.8426470588rem + 1.4117647059vw, 1.875rem)) {
        .oficcial-greeting__slogan-p1 {
            font-size: clamp(1.125rem, 0.8426470588rem + 1.4117647059vw, 1.875rem);
        }
    }

    @supports not (font-size: clamp(1.125rem, 0.8426470588rem + 1.4117647059vw, 1.875rem)) {
        .oficcial-greeting__slogan-p1 {
            font-size: calc(1.125rem + 0.75 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {
    .oficcial-greeting__slogan-p1 {
        font-size: 1.125rem;
    }
}

@media (min-width: 73.125em) {
    .oficcial-greeting__slogan-p1 {
        line-height: 2rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (line-height: clamp(1.375rem, 1.1397058824rem + 1.1764705882vw, 2rem)) {
        .oficcial-greeting__slogan-p1 {
            line-height: clamp(1.375rem, 1.1397058824rem + 1.1764705882vw, 2rem);
        }
    }

    @supports not (line-height: clamp(1.375rem, 1.1397058824rem + 1.1764705882vw, 2rem)) {
        .oficcial-greeting__slogan-p1 {
            line-height: calc(1.375rem + 0.625 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {
    .oficcial-greeting__slogan-p1 {
        line-height: 1.375rem;
    }
}

.oficcial-greeting__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.oficcial-greeting__button {
    z-index: 0;
    overflow: hidden;
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1rem;
    text-transform: uppercase;
    padding: 0.75rem 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    width: 12.5rem;
    height: 2.625rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 5px;
    color: #fff6fb;
    background: #c00062;
    position: relative;
}

.content-nav .nav-toggle:hover {
    filter: brightness(1.2) saturate(1.3);
}

.oficcial-greeting__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 34%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
    transform: skewX(0);
    transition: left 0.5s;
    z-index: 1;
    pointer-events: none;
}

.oficcial-greeting__button:hover::before {
    left: 120%;
}

.page>main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.main,
.page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 73.125em) {
    .main {
        padding-left: 1.5625rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (padding-left: clamp(0.4375rem, 0.0139705882rem + 2.1176470588vw, 1.5625rem)) {
        .main {
            padding-left: clamp(0.4375rem, 0.0139705882rem + 2.1176470588vw, 1.5625rem);
        }
    }

    @supports not (padding-left: clamp(0.4375rem, 0.0139705882rem + 2.1176470588vw, 1.5625rem)) {
        .main {
            padding-left: calc(0.4375rem + 1.125 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {
    .main {
        padding-left: 0.4375rem;
    }
}

@media (min-width: 73.125em) {
    .main {
        padding-right: 1.5625rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (padding-right: clamp(0.4375rem, 0.0139705882rem + 2.1176470588vw, 1.5625rem)) {
        .main {
            padding-right: clamp(0.4375rem, 0.0139705882rem + 2.1176470588vw, 1.5625rem);
        }
    }

    @supports not (padding-right: clamp(0.4375rem, 0.0139705882rem + 2.1176470588vw, 1.5625rem)) {
        .main {
            padding-right: calc(0.4375rem + 1.125 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {
    .main {
        padding-right: 0.4375rem;
    }
}

.main__container {
    width: 100%;
}

@media (min-width: 73.125em) {
    .main__container {
        padding-left: 1.5625rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (padding-left: clamp(0.625rem, 0.2720588235rem + 1.7647058824vw, 1.5625rem)) {
        .main__container {
            padding-left: clamp(0.625rem, 0.2720588235rem + 1.7647058824vw, 1.5625rem);
        }
    }

    @supports not (padding-left: clamp(0.625rem, 0.2720588235rem + 1.7647058824vw, 1.5625rem)) {
        .main__container {
            padding-left: calc(0.625rem + 0.9375 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {
    .main__container {
        padding-left: 0.625rem;
    }
}

@media (min-width: 73.125em) {
    .main__container {
        padding-right: 1.5625rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (padding-right: clamp(0.625rem, 0.2720588235rem + 1.7647058824vw, 1.5625rem)) {
        .main__container {
            padding-right: clamp(0.625rem, 0.2720588235rem + 1.7647058824vw, 1.5625rem);
        }
    }

    @supports not (padding-right: clamp(0.625rem, 0.2720588235rem + 1.7647058824vw, 1.5625rem)) {
        .main__container {
            padding-right: calc(0.625rem + 0.9375 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {
    .main__container {
        padding-right: 0.625rem;
    }
}

.main__container> :first-child {
    margin-top: 0;
}

.footer {
    padding-bottom: 0.625rem;
    background: #050208;
    border-top: 1.5px solid color-mix(in srgb, #fff6fb 10%, transparent);
}

.footer__container {
    padding: 1.25rem 0.9375rem;
}

.footer__logos {
    padding-top: 0.9375rem;
    padding-bottom: 0.3125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer__logos svg path {
    fill: #fff6fb;
}

@media (min-width: 73.125em) {
    .footer__logos {
        gap: 1.25rem;
    }
}

@media (min-width: 20em) and (max-width: 73.125em) {
    @supports (gap: clamp(0.625rem, 0.3897058824rem + 1.1764705882vw, 1.25rem)) {
        .footer__logos {
            gap: clamp(0.625rem, 0.3897058824rem + 1.1764705882vw, 1.25rem);
        }
    }

    @supports not (gap: clamp(0.625rem, 0.3897058824rem + 1.1764705882vw, 1.25rem)) {
        .footer__logos {
            gap: calc(0.625rem + 0.625 * (100vw - 20rem) / 53.125);
        }
    }
}

@media (max-width: 20em) {
    .footer__logos {
        gap: 0.625rem;
    }
}

.footer__logo-wrap--adult {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.footer__adult-img,
.footer__links,
.footer__logo-wrap--adult {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__adult-img {
    gap: 2px;
    width: 3.125rem;
    height: 3.125rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff6fb;
    background: 0 0;
    border-radius: 50%;
    border: 4px solid color-mix(in srgb, #fff6fb 18%, transparent);
}

.footer__links {
    gap: 2.1875rem;
    row-gap: 0.3125rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 47.99875em) {
    .footer__links {
        row-gap: 0.3125rem;
    }
}

.footer__links a {
    position: relative;
    color: #fff6fb;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.125rem;
}

@media (max-width: 47.99875em) {
    .footer__links a {
        font-size: 0.98rem;
        line-height: 1rem;
    }
}

.footer__links li a::after,
.header-nav-list li .header__button-wrapper>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    z-index: 50;
    width: 100%;
    height: 1.5px;
    transition: transform 0.7s;
    transform-origin: right;
    transform: scaleX(0);
}

.header-nav-list li a::after {
    background-color: #fff6fb;
}

.footer__links li a::after {
    background-color: #fff6fb;
}

.footer__links a:focus-visible::after,
.footer__links a:hover::after,
.header-nav-list li a:focus-visible::after,
.header-nav-list li a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

.footer__copyright {
    margin-top: 0.875rem;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.7rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__div::after {
    height: 0.0625rem;
}

.footer p {
    color: #fff6fb;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1rem;
    text-align: center;
    opacity: 0.8;
    margin-bottom: 0;
}

.go-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    width: 2.5rem;
    height: 2.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

@media (min-width: 73.125em) {
    .go-top {
        bottom: 4rem;
        right: 4rem;
    }
}

#go-top-elem[data-shown="true"] {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.go-top__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(to left, color-mix(in srgb, #5b2f86 80%, white) 0%, #5b2f86 100%);
    box-shadow: 0 0 1px #fff6fb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.go-top__button svg {
    fill: #fff6fb;
    stroke: none;
}

.go-top__button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 6px #fff6fb;
}

@media (min-width: 73.125em) {
    .go-top__button {
        width: 3rem;
        height: 3rem;
    }

    .go-top__button svg {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 530px) {

    .footer__links,
    .footer__logos {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }

    .footer__links li {
        text-align: center;
    }

    .footer__div {
        display: none;
    }
}

.main__container>section,
section {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    scroll-margin: 70px 0 0;
}

.main__container:last-child {
    margin-bottom: 0;
}

h2::after,
section>h2::after {
    background: #fff6fb;
    opacity: 0.6;
}

h3,
section h3 {
    margin-bottom: 1.25rem;
    line-height: clamp(1.125rem, 1.0779411765rem + 0.2352941176vw, 1.25rem);
}

.aside__nav-list,
.content-nav .nav-list li,
.footer__links,
.header-nav-list {
    padding: 0;
    list-style-type: none;
}

.aside__nav-list li,
.footer__links li,
.header-nav-list li {
    list-style: none;
    margin-bottom: 0;
}

#nav[data-open="true"] .nav-inner {
    height: auto;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    margin-top: 0.5rem;
}

#nav[data-open="true"] .nav-toggle .close-nav {
    display: block;
}

.content-nav .nav-inner {
    overflow: hidden;
    height: 0;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.content-nav button {
    width: auto;
    height: auto;
}

.content-nav .nav-toggle,
h3,
section h3 {
    color: #fff6fb;
    font-size: 24px;
    font-weight: 700;
}

.content-nav .nav-toggle {
    background: 0 0;
    border: 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .content-nav .nav-toggle {
        font-size: 1.5rem;
    }
}

.content-nav .open-nav {
    display: block;
}

.content-nav .close-nav {
    display: none;
}

.content-nav .nav-list {
    border: 0;
    background: #4a2d72;
    border-radius: 5px;
    padding: 12px;
    -webkit-columns: 280px 2;
    -moz-columns: 280px 2;
    columns: 280px 2;
}

.content-nav .nav-list li {
    margin-bottom: 0.25rem;
}

.content-nav .nav-list a {
    color: #fff6fb;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    padding: 5px;
    font-size: 18px;
    line-height: 22px;
    -webkit-transition: color 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.content-nav .nav-list a:focus,
.content-nav .nav-list a:hover {
    opacity: 0.6;
}

.content-nav ul {
    padding: 0;
}

@media screen and (max-width: 768px) {

    .main__container>section,
    h2,
    section,
    section>h2 {
        scroll-margin: 110px 0 0;
    }
}

.games__list {
    list-style-type: none;
}

.game__wrapper span {
    color: #fff6fb;
    background: #4a2d72;
    width: 100%;
}

.games__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    padding: 0;
    margin: 0;
}

.games__item {
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border-radius: 5px;
}

.game__banner,
.game__wrapper {
    position: relative;
    height: 100%;
}

.game__wrapper:hover .game__overlay {
    opacity: 1;
    visibility: visible;
}

.game__banner .game__banner_img {
    height: 100%;
    position: relative;
    z-index: -1;
}

.game__banner .game__banner_img img {
    width: 100%;
    height: 100%;
    display: block;
}

.game__wrapper span {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    padding-block: 8px;
}

.game__overlay,
.game__overlay button {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.game__overlay {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.game__overlay {
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    padding-inline: 16px;
}

.game__overlay .game__overlay_demo,
.game__overlay .game__overlay_play {
    font-size: 18px;
    color: #fff6fb;
    padding: 10px 12px;
    width: 100%;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game__overlay .game__overlay_play {
    background-color: #c00062;
}

.game__overlay .game__overlay_demo {
    background-color: #5b2f86;
    margin-bottom: 30px;
}

.game__overlay .game__overlay_play:hover {
    box-shadow: 0 0 8px #c00062;
    transform: scale(1.05);
}

.game__overlay .game__overlay_demo:hover {
    box-shadow: 0 0 8px #5b2f86;
    transform: scale(1.05);
}

@media screen and (max-width: 992px) {
    .games__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .games__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

section p:last-child {
    margin-top: 12px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

td {
    border: 1.5px solid #fff6fb;
    padding: 8px;
    vertical-align: top;
    text-align: left;
    color: var(--table-color);
}

tr:first-child td {
    font-weight: 700;
}

tr:nth-child(odd) {
    background-color: #4a2d72;
}

tr:nth-child(even) {
    background-color: #714aa0;
}

@media (max-width: 768px) {

    table,
    tbody,
    td,
    tr {
        display: block;
        width: 100%;
    }

    tr:first-child {
        display: none;
    }

    tbody tr {
        position: relative;
        border-left: 1.5px solid #fff6fb;
        border-right: 1.5px solid #fff6fb;
        background-color: color-mix(in srgb, #1b102b 15%, transparent) !important;
        padding: 10px;
    }

    td:nth-child(odd) {
        background-color: #4a2d72;
    }

    td:nth-child(even) {
        background-color: #714aa0;
    }

    tr+tr {
        border-top: 1.5px solid #fff6fb;
    }

    tr:last-child {
        border-bottom: 1.5px solid #fff6fb;
    }

    tr:nth-of-type(2) {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    tr:last-child {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    td {
        border: 0;
        padding: 6px;
        font-size: 16px;
        font-weight: 600;
        text-align: left;
    }

    td::before {
        content: attr(data-label);
        display: block;
        font-size: 12px;
        font-weight: 400;
        color: var(--table-color);
        margin-bottom: 2px;
        opacity: 0.7;
    }
}

[data-item="faq-item"] {
    color: #fff6fb;
    margin-bottom: 16px;
}

[data-item="faq-item"] {
    padding: 16px 20px 26px;
    background: #4a2d72;
    border-radius: 5px;
}

[data-item="faq-item"] h3,
[data-item="faq-item"] p {
    color: #fff6fb;
    line-height: 1.4;
    margin: 0;
}

[data-item="faq-item"] h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 8px;
    background: #fff6fb;
    opacity: 0.4;
}

#nav button {
    border: 0;
    background-color: #c00062;
    color: #fff6fb;
    border-radius: 5px;
    padding: 6px 12px;
    font-weight: 500;
    font-size: 1.1rem;
}

#nav button span {
    position: relative;
    padding-left: 27px;
}

#nav button svg {
    position: absolute;
    left: 0;
    top: 0;
}

#nav button svg path {
    stroke: #fff6fb;
    stroke-width: 2;
    fill: none;
}

@media screen and (max-width: 460px) {
    .oficcial-greeting__text-wrapper {
        position: static;
        background: transparent;
    }

    .oficcial-greeting__sub-text-wrapper {
        max-width: none;
        width: 100%;
        height: 100%;
        background: transparent;
        padding: 0;
    }

    .oficcial-greeting__sub-text-wrapper p {
        background: rgba(0, 0, 0, 0.3);
        padding: 10px;
        border-radius: 0 0 5px 5px;
        position: absolute;
        bottom: 42px;
        width: 100%;
    }

    .oficcial-greeting__button {
        width: 100%;
    }
}

a[data-role="curlink"]::after {
    transform: scale(1) !important;
}

#aside__wrapper a[data-role="curlink"] {
    text-decoration: underline;
}

.info-section {
    position: relative;
    text-align: center;
    padding-block: 150px 100px;margin-inline: auto;margin-top: 120px;
    max-width: 800px;
}

.info-section::before {
    content: "404";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18rem;
    font-weight: 700;
    line-height: 1;
    color: var(--main-text);
    opacity: 0.09;
    z-index: -1;
    pointer-events: none;
}

.info-section p {
    font-size: 1rem;
    color: var(--main-text);
    margin-bottom: 0.2rem;
}

.info-section p > a {
    text-decoration: underline;
    color: var(--reg-btn);
    transition: color 0.3s ease;
}

.info-section p > a:hover {
    color: var(--login-btn);
}

.info-section a:last-child:not(:first-child) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-btns);
    background: linear-gradient( to left, color-mix(in srgb, var(--reg-btn) 70%, white) 0%, var(--reg-btn) 100% );
    border-radius: 5px;
    width: 9.5rem;
    margin: 0.8rem auto 0;
}

.info-section a svg {
    stroke: none;
    fill: var(--text-btns);
    transition: transform 0.3s ease;
}

.info-section a:hover svg {
    transform: translateX(7px);
}

@media (max-width: 499.98px) {
    .info-section {
        padding-top: 120px;
    }

    .info-section h1, .info-section p {
        font-size: 1.3rem;
        line-height: 1.3rem;
        margin-bottom: 0.2rem;
    }

    .info-section p {
        font-size: 0.9rem;
        line-height: 1rem;
    }

    .info-section::before {
        font-size: 11rem;
    }

    .info-section a:last-child:not(:first-child) {
        margin-top: 0.4rem;
        font-size: 0.92rem;
        padding-block: 0.5rem;width: 8.7rem;
    }
}
