@font-face {
    font-family: "Figtree";
    src: url("../fonts/Figtree-Medium.woff2") format("woff2");
    font-weight: 400 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Figtree";
    src: url("../fonts/Figtree-ExtraBold.woff2") format("woff2");
    font-weight: 700 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Figtree";
    src: url("../fonts/Figtree-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #08080b;
    --bg-soft: #0d0d12;
    --surface: #131319;
    --surface-2: #191921;
    --surface-3: #22222c;
    --line: rgba(255, 255, 255, .08);
    --line-strong: rgba(255, 255, 255, .16);

    --text: #f4f4f6;
    --muted: #b1b1bd;
    --dim: #7a7a86;

    --red: #e40539;
    --red-hi: #ff2d55;
    --red-soft: rgba(228, 5, 57, .13);
    --red-line: rgba(228, 5, 57, .45);
    --gold: #ffb400;

    --grad-red: linear-gradient(135deg, #ff2d55 0%, #e40539 55%, #b5002a 100%);
    --grad-card: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
    --glow: 0 10px 28px -10px rgba(228, 5, 57, .6);
    --glow-strong: 0 16px 40px -12px rgba(228, 5, 57, .75);
    --shadow: 0 24px 48px -24px rgba(0, 0, 0, .85);

    --r-lg: 18px;
    --r: 14px;
    --r-sm: 10px;

    --container: 1200px;
    --gutter: 20px;
    --header-h: 68px;

    --font: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

    --icon-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E");
    --icon-plus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
    --icon-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
    --icon-spark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2l2.6 6.6L21 11l-6.4 2.4L12 20l-2.6-6.6L3 11l6.4-2.4z'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    background-color: var(--bg);
    background-image:
        radial-gradient(900px 520px at 88% -140px, rgba(228, 5, 57, .24), transparent 70%),
        radial-gradient(700px 460px at -12% 10%, rgba(228, 5, 57, .10), transparent 70%);
    background-repeat: no-repeat;
    color: var(--text);
    font: 500 16px/1.65 var(--font);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

img {
    vertical-align: middle;
}

a {
    color: var(--red-hi);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: #fff;
}

button {
    font: inherit;
    cursor: pointer;
}

.get-image {
    margin: 0;
}

.aviator-container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.aviator-container .aviator-container {
    max-width: none;
    padding-inline: 0;
}

.page-main {
    display: block;
    padding-bottom: 24px;
}

.aviator-wrap {
    display: block;
    padding-block: clamp(20px, 2.5vw, 32px);
}

:where(.page-main) p {
    margin: 0 0 1em;
}

:where(.page-main) h1,
:where(.page-main) h2,
:where(.page-main) h3,
:where(.page-main) h4,
:where(.page-main) h5,
:where(.page-main) h6 {
    margin: 0 0 .6em;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.01em;
}

:where(.page-main) h1 {
    font-size: clamp(30px, 4.4vw, 54px);
    font-weight: 900;
    line-height: 1.06;
}

:where(.page-main) h2 {
    font-size: clamp(24px, 2.7vw, 34px);
}

:where(.page-main) h3 {
    font-size: clamp(18px, 1.7vw, 21px);
}

:where(.page-main) h4 {
    font-size: 18px;
}

:where(.aviator-wrap) h2:not([class]) {
    position: relative;
    margin-top: 1.2em;
    padding-top: 18px;
    text-align: center;
}

:where(.aviator-wrap) h2:not([class])::before {
    content: "";
    position: absolute;
    left: calc(50% - 22px);
    top: 0;
    width: 44px;
    height: 4px;
    border-radius: 4px;
    background: var(--grad-red);
    box-shadow: var(--glow);
}

:where(.aviator-wrap) h3:not([class]) {
    margin-top: 1.4em;
}

/*:where(.aviator-container, .text-image) > :is(h2, h3):not([class]):first-child {*/
/*    margin-top: 0;*/
/*}*/

:where(.aviator-wrap) :where(p, li, td) {
    color: var(--muted);
}

:where(.page-main) strong,
:where(.page-main) b {
    color: #fff;
    font-weight: 800;
}

:where(.aviator-wrap) :where(p, li) a {
    color: var(--red-hi);
    text-decoration: underline;
    text-decoration-color: var(--red-line);
    text-underline-offset: 3px;
}

:where(.aviator-wrap) :where(p, li) a:hover {
    color: #fff;
    text-decoration-color: #fff;
}

:where(.aviator-wrap) :where(p, li, td) img {
    border-radius: var(--r);
}

.btn,
.content-button__control,
.bonus__button,
.bookmaker__button,
.page-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    background: var(--grad-red);
    box-shadow: var(--glow);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: transform .15s, box-shadow .2s, filter .2s, border-color .2s, background-color .2s;
}

.btn:hover,
.content-button__control:hover,
.bonus__button:hover,
.bookmaker__button:hover,
.page-header__button:hover {
    transform: translateY(-1px);
    box-shadow: var(--glow-strong);
    filter: brightness(1.08);
}

.btn:focus-visible,
.content-button__control:focus-visible,
.bonus__button:focus-visible,
.bookmaker__button:focus-visible,
.page-header__button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.btn::after,
.content-button__control::after,
.bookmaker__button--get::after,
.page-header__button--first::after {
    content: "";
    width: 16px;
    height: 16px;
    background: var(--icon-arrow) center / contain no-repeat;
}

.page-header__button--second,
.bookmaker__button--read,
.bonus__button._ios {
    background: rgba(255, 255, 255, .04);
    border-color: var(--line-strong);
    box-shadow: none;
}

.page-header__button--second:hover,
.bookmaker__button--read:hover,
.bonus__button._ios:hover {
    border-color: var(--red-line);
    background: var(--red-soft);
    box-shadow: none;
}

.content-button {
    display: flex;
    margin: 24px 0;
}

.content-button.align-center {
    justify-content: center;
}

.content-button__control {
    min-height: 54px;
    padding: 0 32px;
    font-size: 16px;
}

.page-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 8, 11, .8);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line);
}

.page-header__container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1560px;
    min-height: var(--header-h);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.page-header__logo {
    flex-shrink: 0;
}

.page-header__logo img {
    display: block;
    width: auto;
    height: 30px;
    border-radius: 0;
}

.main-nav {
    flex: 1;
    min-width: 0;
}

.main-nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav__item {
    position: relative;
    display: flex;
    align-items: center;
}

.main-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 9px;
    border-radius: 8px;
    color: #d4d4dc;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: color .2s, background-color .2s;
}

.main-nav__link:hover,
.main-nav__item:hover > .main-nav__link {
    color: #fff;
    background: rgba(255, 255, 255, .05);
}

.main-nav__link svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

.sub-menu__arrow {
    display: flex;
    align-items: center;
    margin-left: -6px;
    padding: 6px 4px;
    color: #fff;
}

.sub-menu__arrow svg {
    width: 10px;
    height: auto;
    transition: transform .2s;
}

.sub-menu__arrow svg path {
    fill: currentColor;
    stroke: none;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    min-width: 220px;
    margin: 6px 0 0;
    padding: 8px;
    list-style: none;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s, transform .2s, visibility .2s;
}

.main-nav__item:nth-last-child(-n + 3) > .sub-menu {
    left: auto;
    right: 0;
}

.sub-menu:has(> li:nth-child(8)) {
    display: grid;
    grid-template-columns: repeat(2, minmax(170px, 1fr));
}

.sub-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

.main-nav__item--has-children:hover > .sub-menu,
.main-nav__item--has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.main-nav__item--has-children:hover .sub-menu__arrow svg {
    transform: rotate(180deg);
}

.sub-menu__item {
    margin: 0;
}

.sub-menu__link {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    color: #d4d4dc;
    font-size: 14px;
    white-space: nowrap;
}

.sub-menu__link:hover {
    background: var(--red-soft);
    color: #fff;
}

.sub-menu__link--current {
    color: var(--red-hi);
}

.page-header__buttons {
    display: flex;
    flex-shrink: 0;
    gap: 8px;
}

.page-header__button {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
}

.page-header__button--first::after {
    width: 14px;
    height: 14px;
}

.page-header__burger {
    display: none;
}

@media (min-width: 1600px) {
    .main-nav__link {
        padding: 8px 8px;
        font-size: 13.5px;
    }
}

@media (min-width: 1181px) and (max-width: 1599px) {
    :root {
        --header-h: 108px;
    }

    .page-header__container {
        flex-wrap: wrap;
        row-gap: 0;
        min-height: 0;
        padding-top: 10px;
    }

    .page-header__logo {
        margin-right: auto;
    }

    .main-nav {
        order: 3;
        flex: 1 0 100%;
        margin-top: 10px;
        border-top: 1px solid var(--line);
    }

    .main-nav__list {
        flex-wrap: nowrap;
        padding: 4px 0;
    }

    .main-nav__link {
        padding: 8px 7px;
        font-size: 13.5px;
    }
}

@media (max-width: 1180px) {
    :root {
        --header-h: 64px;
    }

    .page-header__container {
        gap: 10px;
    }

    .page-header__logo {
        margin-right: auto;
    }

    .page-header__burger {
        order: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        padding: 0 11px;
        border: 1px solid var(--line);
        border-radius: var(--r-sm);
        background: rgba(255, 255, 255, .05);
        cursor: pointer;
    }

    .page-header__burger span {
        display: block;
        height: 2px;
        border-radius: 2px;
        background: #fff;
        transition: transform .25s, opacity .25s;
    }

    .page-header__burger.active span:nth-of-type(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .page-header__burger.active span:nth-of-type(2) {
        opacity: 0;
    }

    .page-header__burger.active span:nth-of-type(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        background: var(--bg-soft);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 30px 60px rgba(0, 0, 0, .6);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .2s, transform .2s, visibility .2s;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .main-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 6px var(--gutter) 16px;
    }

    .main-nav__item {
        flex-wrap: wrap;
        border-bottom: 1px solid var(--line);
    }

    .main-nav__link,
    .main-nav__link:hover,
    .main-nav__item:hover > .main-nav__link {
        flex: 1;
        gap: 10px;
        padding: 14px 2px;
        background: none;
        font-size: 16px;
    }

    .main-nav__link svg {
        flex-basis: 22px;
        width: 22px;
        height: 22px;
    }

    .sub-menu__arrow {
        margin: 0;
        padding: 14px 8px 14px 24px;
    }

    .main-nav__item--has-children:hover .sub-menu__arrow svg {
        transform: none;
    }

    .main-nav__item--has-children.active .sub-menu__arrow svg {
        transform: rotate(180deg);
    }

    .sub-menu,
    .sub-menu:has(> li:nth-child(8)),
    .main-nav__item--has-children:hover > .sub-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0 0 12px 10px;
        background: none;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .main-nav__item--has-children.active > .sub-menu {
        display: grid;
        grid-template-columns: 1fr;
    }

    .main-nav__item--has-children.active > .sub-menu:has(> li:nth-child(8)) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sub-menu::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .page-header__container {
        flex-wrap: wrap;
        padding-block: 10px;
        row-gap: 10px;
    }

    .page-header__buttons {
        order: 4;
        width: 100%;
    }

    .page-header__button {
        flex: 1;
    }
}

.text-image {
    isolation: isolate;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto repeat(20, auto) 1fr;
    align-items: start;
    column-gap: clamp(24px, 3.5vw, 48px);
    margin-bottom: 1.2em;
}

.text-image:not(:has(.get-image)) {
    display: block;
}

.text-image > * {
    grid-column: 1;
}

.text-image > :is(h2, h3, h4):first-child {
    grid-column: 1 / -1;
    text-align: center;
}

.text-image > .get-image {
    position: relative;
    grid-column: 2;
    grid-row: 2 / -1;
}

.text-image:not(:has(> :is(h1, h2, h3, h4):first-child)) > .get-image,
.text-image._h1-block > .get-image {
    grid-row: 1 / -1;
}

.text-image.reversed > * {
    grid-column: 2;
}

.text-image.reversed > :is(h2, h3, h4):first-child {
    grid-column: 1 / -1;
}

.text-image.reversed > .get-image {
    grid-column: 1;
}

.text-image > .get-image img {
    display: block;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
}

.text-image._h1-block {
    padding-top: clamp(8px, 2vw, 24px);
}

._h1-block > h1 {
    margin-bottom: .45em;
}

._h1-block > p {
    color: #c9c9d3;
    font-size: 17px;
}

._h1-block > .get-image::before {
    content: "";
    position: absolute;
    inset: 6% 4%;
    z-index: -1;
    background: radial-gradient(closest-side, rgba(228, 5, 57, .6), transparent);
    filter: blur(42px);
}

._h1-block > .content-button {
    justify-content: flex-start;
    margin: 8px 0 0;
}

@media (max-width: 1024px) {
    .text-image,
    .text-image.reversed {
        display: flex;
        flex-direction: column;
    }

    .text-image > :where(h1, h2, h3, h4):first-child {
        order: -2;
    }

    .text-image > .get-image {
        order: -1;
        margin: 0 0 18px;
    }

    ._h1-block > .content-button {
        justify-content: stretch;
    }

    ._h1-block > .content-button .content-button__control {
        width: 100%;
    }
}

.toc {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
}

.toc__title {
    margin: 0 0 12px;
    color: var(--red-hi);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: default;
}

.toc__list,
.toc.active .toc__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 10px;
    max-height: none;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible;
}

.toc__item {
    margin: 0;
}

.toc__link {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    min-height: 54px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--grad-card);
    color: #e4e4ea;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    transition: border-color .2s, transform .2s, box-shadow .2s, color .2s;
}

.toc__link::before {
    content: "";
    flex: 0 0 28px;
    height: 28px;
    border: 1px solid var(--red-line);
    border-radius: 8px;
    background: var(--red-soft) var(--icon-spark) center / 12px no-repeat;
}

.toc__link:hover {
    border-color: var(--red-line);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

@media (max-width: 767px) {
    .toc__list,
    .toc.active .toc__list {
        grid-auto-flow: column;
        grid-template-columns: none;
        grid-template-rows: repeat(2, auto);
        grid-auto-columns: minmax(210px, 74%);
        margin-inline: calc(var(--gutter) * -1);
        padding: 2px var(--gutter) 8px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

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

    .toc__item {
        scroll-snap-align: start;
    }
}

.bookmakers {
    margin-top: 8px;
}

.bookmakers__table,
.bookmakers__table > tbody,
.bookmakers__table-row,
.bookmakers__table-row > td {
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
}

.bookmakers__table > tbody {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.bookmakers__table-row > td {
    height: 100%;
}

.bookmaker {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--grad-card);
    transition: border-color .2s, transform .2s, box-shadow .2s;
}

.bookmaker:hover {
    border-color: var(--red-line);
    box-shadow: 0 22px 44px -22px rgba(228, 5, 57, .55);
    transform: translateY(-3px);
}

.bookmaker__image img {
    display: block;
    width: 100%;
    height: 112px;
    border-radius: 12px;
    background: #0b0b0f;
    object-fit: contain;
}

.bookmaker__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.bookmaker__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 10px;
}

.bookmaker__name {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.rating {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.rating__counter {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.rating__counter_filled {
    font-size: 15px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--gold) calc(var(--star-rating, 0) / 5 * 100%), rgba(255, 255, 255, .22) 0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rating__counter_empty {
    color: var(--dim);
}

.bookmaker__ad {
    padding: 10px 12px;
    border: 1px solid rgba(228, 5, 57, .28);
    border-radius: 12px;
    background: var(--red-soft);
}

.bookmaker__ad-title {
    margin: 0 0 2px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.bookmaker__ad-text {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.bookmaker__info-list {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bookmaker__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
}

.bookmaker__item svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

.bookmaker__item svg path {
    fill: var(--red-hi);
}

.bookmaker__item svg path:first-child {
    fill: rgba(228, 5, 57, .35);
}

.bookmaker__buttons {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.bookmaker__button {
    width: 100%;
    min-height: 44px;
}

@media (max-width: 520px) {
    .bookmakers__table > tbody {
        grid-template-columns: 1fr;
    }

    .bookmaker__image img {
        height: 96px;
    }
}

:where(.aviator-wrap) :where(ul, ol):not([class]) {
    display: grid;
    gap: 10px;
    margin: 0 0 1.3em;
    padding: 0;
    list-style: none;
}

:where(.aviator-wrap) ul:not([class]) > li {
    position: relative;
    padding-left: 32px;
}

:where(.aviator-wrap) ul:not([class]) > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .2em;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--grad-red);
    box-shadow: var(--glow);
}

:where(.aviator-wrap) ul:not([class]) > li::after {
    content: "";
    position: absolute;
    left: 0;
    top: .2em;
    width: 20px;
    height: 20px;
    background: var(--icon-check) center / 12px no-repeat;
}

:where(.aviator-wrap) ol:not([class]) {
    counter-reset: step;
}

:where(.aviator-wrap) ol:not([class]) > li {
    position: relative;
    min-height: 44px;
    padding: 11px 16px 11px 58px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--grad-card);
    counter-increment: step;
}

:where(.aviator-wrap) ol:not([class]) > li::before {
    content: counter(step);
    position: absolute;
    left: 12px;
    top: 10px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grad-red);
    box-shadow: var(--glow);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

:where(.aviator-wrap) li > :where(ul, ol) {
    margin: 10px 0 0;
}

:where(.aviator-wrap) div:has(> table:not([class])) {
    margin: 0 0 1.5em;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--surface);
}

:where(.aviator-wrap) table:not([class]) {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.45;
}

:where(.aviator-wrap) table:not([class]) :where(th, td) {
    padding: 13px 18px;
    text-align: left;
    vertical-align: top;
}

:where(.aviator-wrap) table:not([class]) th {
    background: linear-gradient(180deg, rgba(228, 5, 57, .24), rgba(228, 5, 57, .08));
    color: #fff;
    font-weight: 800;
}

:where(.aviator-wrap) table:not([class]) tr + tr > td,
:where(.aviator-wrap) table:not([class]) thead + tbody > tr > td {
    border-top: 1px solid var(--line);
}

:where(.aviator-wrap) table:not([class]) tbody > tr:nth-child(even) > td {
    background: rgba(255, 255, 255, .018);
}

:where(.aviator-wrap) table:not([class]) td:first-child {
    color: #fff;
    font-weight: 700;
}

:where(.aviator-wrap) table:not([class]) :where(p, ul, ol) {
    margin: 0;
}

@media (max-width: 767px) {
    :where(.aviator-wrap) table:not([class]) {
        font-size: 14px;
    }

    :where(.aviator-wrap) table:not([class]) :where(th, td) {
        padding: 11px 14px;
    }

    :where(.aviator-wrap) table:not([class]):has(tr > :nth-child(3)) {
        min-width: 560px;
    }
}

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 0 0 1.5em;
    padding: 0;
    list-style: none;
}

.advantages__item {
    padding: 22px 20px 20px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--grad-card);
    transition: border-color .2s, transform .2s;
}

.advantages__item:hover {
    border-color: var(--red-line);
    transform: translateY(-2px);
}

.advantages__item::before {
    content: "";
    display: block;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: var(--icon-spark) center / 20px no-repeat, var(--grad-red);
    box-shadow: var(--glow);
}

.advantages__title {
    margin: 0 0 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.advantages__text {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.info-block-v2 {
    margin: 0 0 1.5em;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--surface);
}

.info-block-v2__list {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 15px;
}

.info-block-v2__head-cell {
    padding: 14px 18px;
    background: linear-gradient(180deg, rgba(228, 5, 57, .26), rgba(228, 5, 57, .08));
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-align: left;
    text-transform: uppercase;
}

.info-block-v2__item > td {
    padding: 12px 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    vertical-align: middle;
}

.info-block-v2__item:hover > td {
    background: rgba(255, 255, 255, .025);
}

.info-block-v2__item-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    color: #fff;
    font-weight: 800;
}

.info-block-v2__item-wrapper img {
    width: auto;
    height: 44px;
    border-radius: 10px;
    object-fit: contain;
}

.info-block-v2 p {
    margin: 0;
}

.promotions {
    margin: 0 0 1.5em;
}

.promotions__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.promotions__item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--grad-card);
    transition: border-color .2s;
}

.promotions__item:hover {
    border-color: var(--red-line);
}

.promotions__item > .get-image img {
    display: block;
    border-radius: var(--r);
    object-fit: cover;
  	width: 100%;
}

.promotions__item > .get-image {
  width: 100%;
}

.promotions__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
}

.promotions__title {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.promotions__description {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.promocode {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border: 1px dashed var(--red-line);
    border-radius: 12px;
    background: rgba(228, 5, 57, .06);
}

.promocode-field {
    display: flex;
    flex: 1;
    align-items: center;
    min-width: 0;
    padding: 10px 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    overflow-wrap: anywhere;
}

.copy-btn {
    flex-shrink: 0;
    padding: 0 14px;
    border: 0;
    border-left: 1px dashed var(--red-line);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: background-color .2s;
    display: flex;
    align-items: center;
}

.copy-btn:hover {
    background: var(--red);
}

.promotions__content .bonus__button {
    width: 100%;
    margin-top: auto;
}

.faq {
    padding-top: 4px;
}

.faq__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 12px;
}

.faq__item {
    margin: 0;
}

.faq__details {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--grad-card);
    transition: border-color .2s;
}

.faq__details[open] {
    border-color: var(--red-line);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    list-style: none;
    cursor: pointer;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: "";
    flex: 0 0 30px;
    height: 30px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .06) var(--icon-plus) center / 13px no-repeat;
    transition: transform .2s, background-color .2s;
}

.faq__details[open] .faq__question::after {
    background-color: var(--red);
    transform: rotate(45deg);
}

.faq__question-title {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.faq__answer {
    padding: 0 18px 16px;
    color: var(--muted);
    font-size: 15px;
}

.faq__answer > :last-child {
    margin-bottom: 0;
}

@media (max-width: 860px) {
    .faq__container {
        grid-template-columns: 1fr;
    }
}

.author-block {
    display: block;
    margin-top: 8px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, rgba(228, 5, 57, .16), var(--surface) 48%);
    color: inherit;
    transition: border-color .2s;
}

.author-block:hover {
    border-color: var(--red-line);
    color: inherit;
}

.author-block__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 18px;
}

.author-block__inner > img {
    grid-row: 1 / span 2;
    width: 84px;
    height: 84px;
    border: 2px solid var(--red);
    border-radius: 50%;
    object-fit: cover;
}

.author-block__name {
    margin: 0 0 4px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.author-block__content {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

@media (max-width: 600px) {
    .author-block__inner {
        grid-template-columns: 1fr;
    }

    .author-block__inner > img {
        grid-row: auto;
        margin-bottom: 12px;
    }
}

.breadcrumbs {
    display: block;
    padding-top: 18px;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-block: 0;
    list-style: none;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dim);
    font-size: 13px;
}

.breadcrumbs__item + .breadcrumbs__item::before {
    content: "/";
    color: var(--dim);
}

.breadcrumbs__link {
    color: var(--muted);
}

.breadcrumbs__link:hover {
    color: #fff;
}

.breadcrumbs__link--no-active {
    color: #fff;
    pointer-events: none;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 1.5em;
}

.app-buttons .bonus__button {
    min-width: 200px;
}

.page-footer {
    margin-top: 32px;
    padding: 40px 0 28px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(228, 5, 57, .06), transparent 45%), var(--bg-soft);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 1fr;
    align-items: start;
    gap: 32px;
}

.footer__logo .get-image img {
    display: block;
    width: auto;
    height: 32px;
    border-radius: 0;
    object-fit: contain;
}

.page-footer__copyright {
    margin: 14px 0 12px;
    color: var(--dim);
    font-size: 13px;
}

.page-footer__dmca img {
    max-width: 120px;
    border-radius: 0;
}

.footer-nav__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-nav__item {
    margin: 0;
}

.footer-nav__link {
    color: var(--muted);
    font-size: 14px;
}

.footer-nav__link:hover {
    color: #fff;
}

.footer-nav__list .sub-menu {
    position: static;
    margin: 4px 0 0;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.page-footer__widget p {
    margin: 0 0 10px;
    color: var(--dim);
    font-size: 13px;
    line-height: 1.55;
}

.page-footer__widget img {
    max-width: 180px;
    border-radius: 0;
}

@media (max-width: 860px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .page-footer {
        padding-bottom: 104px;
    }
}

.mobile-button {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px 10px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: rgba(19, 19, 25, .92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .6);
    color: #fff;
    text-align: left;
}

.mobile-button_content {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.mobile-button_text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.mobile-button .get-image img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
}

.mobile-button__title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.mobile-button__bonus {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.25;
}

.mobile-button__btn {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    min-height: 42px;
    margin: 0;
    padding: 0 16px;
    border-radius: var(--r-sm);
    background: var(--grad-red);
    box-shadow: var(--glow);
    font-size: 14px;
    font-weight: 800;
}

@media (min-width: 768px) {
    .mobile-button {
        display: none;
    }
}

.scroll-top {
    position: fixed;
    right: 16px;
    bottom: 24px;
    z-index: 800;
}

.scroll-top__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: var(--grad-red);
    box-shadow: var(--glow);
    transition: transform .2s;
}

.scroll-top__button svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    pointer-events: none;
}

.scroll-top__button:hover {
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .scroll-top {
        right: 14px;
        bottom: 94px;
    }

    .scroll-top__button {
        width: 42px;
        height: 42px;
    }
}

.content-button + p {
    margin-top: 1rem;
}

.author-block__social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.author-block__social img {
    height: 32px;
    width: 32px;
    object-fit: cover;
}

.how-to__list {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.how-to__item {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--grad-card);
    color: #e4e4ea;
    flex-direction: column;
    gap: 10px;
}

.how-to__counter {
    font: 500 16px / 1.65 var(--font);
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.01em;
}

.how-to__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .how-to__content {
        grid-template-columns: 1fr;
    }
}

.table-image__image {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros-and-cons__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pros-and-cons-block {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--grad-card);
}

.pros-and-cons__pros-block {
    background: #00800054;
    border: 1px solid #026c02;
}

.pros-and-cons__cons-block {
    background: #e0030329;
    border: 1px solid #e00303;
}

@media (max-width: 1024px) {
    .pros-and-cons__body {
        grid-template-columns: 1fr;
    }
}

.screenshot-gallery__list {
    display: flex;
    gap: 10px;
    overflow: auto;
    margin: 0;
    padding: 0;
}

@media (max-width: 1024px) {
    .screenshot-gallery__item {
        max-width: 250px;
        width: 100%;
        flex-shrink: 0;
    }
}


.payment-method {
    margin: 0 0 1.5em;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--surface);
}

.payment-method__table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 15px;
}

.payment-method__head th {
    padding: 14px 18px;
    background: linear-gradient(180deg, rgba(228, 5, 57, .26), rgba(228, 5, 57, .08));
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-align: left;
    text-transform: uppercase;
}

.payment-method__body td {
    padding: 12px 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    vertical-align: middle;
}

/* Game block */
.game{
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 80vh;
    overflow: hidden;
}



@media (max-width: 767px) {
    .game._active{
        aspect-ratio: unset;
        height: 80vh;
    }
}

.game:not(:last-of-type){
    margin-bottom: 24px;
}

.game .game__preview,
.game .game__content,
.game .game__preview:after{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.game .game__preview{
    z-index: 0;
}

.game .game__preview:after{
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.59), rgba(0, 0, 0, 0.59));
}

.game .game__preview .get-image{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.game .game__preview .get-image img{
    max-height: 100%;
    object-fit: contain;
}

.game .game__content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    z-index: 1;
}

.game iframe{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    border: none;
}