*,
p,
h1,
h2 {
    margin: 0;
    padding: 0;
    margin-block-end: 0;
    margin-block-start: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    box-sizing: border-box;
}
body {
    background: var(--Black, #090A0A);
}
.container {
    max-width: 1280px;
    margin: 0 auto;
}
ul {
    list-style: none;
}
body.not-found {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

/* burger */
.hide-desktop {
    display: none;
}
.burger {
    cursor: pointer;
    width: 50px;
    padding: 6px 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    display: none;
}
.burger-item {
    height: 2px;
    align-self: stretch;
    border-radius: 2px;
    background: #fff;
}
.header .desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.header .mobile {
    display: none;
}
.form-answer {
    color: var(--Orange, #E47200);
    text-align: center;
    font-feature-settings: 'salt' on, 'liga' off, 'calt' off, 'rclt' off;
    font-family: "Clash Display", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
}
@media screen and (max-width: 768px) {
    .header .desktop {
        display: none;
    }
    .header .mobile {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
        position: relative;
        right: 0;
    }
    .header .header-nav_item {
        min-width: 80px;
        text-align: right;
    }
    .header .mobile .mobile-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .header .mobile {
        display: flex;
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        overflow: hidden;
        position: relative;
        right: 0px;
    }
    .header .mobile .header-nav {
        position: absolute;
        display: none;
    }
    .header .mobile.active .header-nav {
        position: relative;
        right: 0;
        display: flex;
        flex-direction: column;
    }
    .header .mobile.active {
        left: 0;
        overflow: visible;
    }
    .header .mobile.active .burger-item:nth-child(2) {
        display: none;
    }
    .header .mobile.active .burger-item:first-child {
        -webkit-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
        transform: rotate(225deg);
        position: relative;
        top: 8px;
    }
    .header .mobile.active .burger-item:last-child {
        -webkit-transform: rotate(-225deg);
        -ms-transform: rotate(225deg);
        transform: rotate(-225deg);
        position: relative;
        top: 0px;
    }
    .hide-desktop {
        display: block;
    }
    .burger {
        display: flex;
    }
}
/* burger */
/* cookie popup */
.age-popup,
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border-radius: 10px;
    background: var(--Back, #020005);
    max-width: 540px;
}
.age-popup.hide,
.cookie-popup.hide {
    left: -2000px;
}
.age-popup_description,
.cookie-popup_description {
    color: #FFF;
    text-align: center;
    font-family: Tomorrow, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
}
.age-popup_buttons,
.cookie-popup_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}
.age-popup_title,
.cookie-popup_title {
    color: #FFF;
    text-align: center;
    font-family: Tomorrow, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 30px */
    text-transform: uppercase;
}
.age-popup_buttons .accept,
.cookie-popup_buttons .accept {
    width: 100%;
    display: flex;
    padding: 10px 24px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid var(--Red, #E47200);
    text-align: center;
    font-family: Tomorrow, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
    text-transform: uppercase;
    background: var(--Red, linear-gradient(180deg, #E47200 0%, #F91D1D 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--Orange, #F80);
    cursor: pointer;
}
.age-popup_buttons .more,
.cookie-popup_buttons .more {
    text-decoration: none;
    width: 100%;
    display: flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: var(--Red, linear-gradient(180deg, #E47200 0%, #F91D1D 100%));
    color: #FFF;
    text-align: center;
    font-family: Tomorrow, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
    text-transform: uppercase;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .age-popup_buttons,
    .cookie-popup_buttons {
        flex-direction: column;
    }

}
/* cookie popup */

/* terms, cookie, policy, gambling */
.terms {
    padding: 20px;
    color: white;
    line-height: 1.5em;
    font-family: Tomorrow, sans-serif;
    font-size: 12px;
}
.terms h1 {
    font-size: 18px;
    margin: 10px 0;
}
.terms h2 {
    font-size: 16px;
    margin: 10px 0 ;
}
.terms ul {
    margin: 10px;
}
/* terms, cookie, policy, gambling */

.header {
    background: var(--Bluee, linear-gradient(180deg, #006FFF 0%, #0BF 100%));
}
.header .container {
    display: flex;
    padding: 14px 20px;
    justify-content: space-between;
    align-items: center;
}
.header-logo img {
    max-width: 25px;
}
.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.header-nav_item a{
    color: #FFF;
    font-feature-settings: 'salt' on, 'liga' off, 'calt' off, 'rclt' off;
    font-family: "Clash Display", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 14px */
    text-decoration: none;
}
.header-buttons a {
    color: #FFF;
    font-feature-settings: 'salt' on, 'liga' off, 'calt' off, 'rclt' off;
    font-family: "Clash Display", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 14px */
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid #FFF;
    text-decoration: none;
}
.hero {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%), url("/assets?p=%2F.%2Fassets%2Fhero-background.webp") lightgray 50% / cover no-repeat;
}
.hero .container {
    display: flex;
    padding: 40px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.hero-title {
    color: #FFF;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Clash Display", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 60px */
    text-transform: uppercase;
}
.hero-button {
    display: flex;
    max-width: 295px;
    padding: 14px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid #FFF;
    background: var(--Red, linear-gradient(180deg, #E47200 0%, #F91D1D 100%));
    color: #FFF;
    text-align: center;
    font-family: "Clash Display", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 20px;
}
.text {
    background: var(--Bluee, linear-gradient(180deg, #006FFF 0%, #0BF 100%));
}
.text .container {
    display: flex;
    padding: 30px 20px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.text-title {
    color: #FFF;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Clash Display", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 50px */
    text-transform: uppercase;
}
.game {

}
.game .container {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
}
.game-header {
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}
.game-header_img {
    max-width: 610px;
}

.game-header_text {
    display: flex;
    max-width: 610px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}
.game-header_text-title {
    color: var(--Orange, #E47200);
    font-family: "Clash Display", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 40px */
    text-transform: uppercase;
}
.game-header_text-description {
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 24px */
}
.game-list {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 40px 20px;
    align-self: stretch;
    flex-wrap: wrap;
}
.game-list_item {
    display: flex;
    max-width: 400px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.list_item-button {
    width: 100%;
    border-radius: 30px;
    border: 1px solid #FFF;
    background: var(--Bluee, linear-gradient(180deg, #006FFF 0%, #0BF 100%));
    display: flex;
    padding: 14px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: #FFF;
    text-align: center;
    font-family: "Clash Display", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
}
.game-list_item img {
    width: 100%;
}
.jackpot {
    margin-bottom: 80px;
}
.jackpot .container {
    border-radius: 30px;
    border: 1px solid #FFF;
    background: var(--Red, linear-gradient(180deg, #E47200 0%, #F91D1D 100%));
    display: flex;
    padding: 20px 40px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    margin-bottom: 20px;
}
.jackpot-img {
    max-width: 570px;
}
.jackpot-text {
    display: flex;
    max-width: 570px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}
.jackpot-text_title {
    color: #FFF;
    text-align: center;
    font-family: "Clash Display", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 40px */
    text-transform: uppercase;
}
.jackpot-text_description {
    color: #FFF;
    text-align: center;
    font-family: "Clash Display", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 24px */
}
.jackpot-text_link {
    border-radius: 30px;
    border: 1px solid #FFF;
    background: #020005;
    display: flex;
    padding: 14px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    width: 100%;
    text-align: center;
    font-family: "Clash Display", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
    text-transform: uppercase;
    text-decoration: none;
    color: #E47200;
}
.footer {
    background: var(--Bluee, linear-gradient(180deg, #006FFF 0%, #0BF 100%));
}
.footer .container {
    display: flex;
    max-width: 1440px;
    padding: 60px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.footer-img {
    max-width: 488px;
}
.footer-title {
    color: #FFF;
    text-align: center;
    font-family: "Clash Display", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 30px */
    text-transform: uppercase;
}
.footer-description {
    color: #FFF;
    text-align: center;
    font-family: "Clash Display", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
}
.footer-nav {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.footer-nav li a {
    color: #FFF;
    font-family: "Clash Display", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 19.2px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
}

.register .container {
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 610px;
    gap: 40px;
}
.register-title {
    color: var(--Orange, #E47200);
    text-align: center;
    font-feature-settings: 'salt' on, 'liga' off, 'calt' off, 'rclt' off;
    font-family: "Clash Display", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 40px */
    text-transform: uppercase;
}
.register-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}
.register-form textarea,
.register-form input {
    display: flex;
    border-radius: 4px;
    background: #FFF;
    padding: 14px 20px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: var(--Back, #020005);
    font-family: "Clash Display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 18px */
    width: 100%;
}
.register-form_button{
    display: flex;
    padding: 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 30px;
    border: 1px solid #FFF;
    background: var(--Bluee, linear-gradient(180deg, #006FFF 0%, #0BF 100%));
    color: #FFF;
    width: 100%;
    font-family: "Clash Display", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 24px */
    text-transform: uppercase;
    cursor: pointer;
}
.register-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.register.contact .container {
    max-width: 1280px;
}
.single-game {

}
.single-game .container {
    margin: 80px auto;
    display: flex;
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    align-self: stretch;
    border-radius: 10px;
    background: var(--Red, linear-gradient(180deg, #E47200 0%, #F91D1D 100%));
}
.single-game_title {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'salt' on, 'liga' off, 'calt' off, 'rclt' off;
    font-family: "Clash Display", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 40px */
    text-transform: uppercase;
}
.single-game_iframe {
    width: 100%;
    height: 600px;
    border: 0;
    overscroll-behavior: none;
}
@media screen and (max-width: 1280px) {
    .jackpot {
        margin: 0 20px;
    }
    .game-list_item {
        width: calc(33% - 10px);
    }
}
@media screen and (max-width: 1024px) {
    .register-wrapper {
        flex-direction: column;
    }
    .game-list_item {
        width: calc(50% - 10px);
        max-width: 100%;
    }
    .game-list_item a,
    .game-list_item img {
        max-width: 100%;
        width: 100%;
    }
    .game-header {
        flex-direction: column;
    }
    .game-header_text {
        max-width: 100%;
    }
    .hero .container {
        flex-direction: column;
    }
    .hero-text {
        order: 2;
    }
    .hero-img {
        order: 1;
        max-width: 400px;
    }
    .hero-button {
        margin: 20px auto 0 auto;
    }
    .hero-title {
        font-size: 45px;
        text-align: center;
    }

}
@media screen and (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }
    .hero-text {
        order: 2;
    }
    .hero-img {
        order: 1;
        max-width: 240px;
    }
    .hero-title {
        color: #FFF;
        text-align: center;
        font-variant-numeric: lining-nums proportional-nums;
        font-family: "Clash Display", sans-serif;
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 28px */
        text-transform: uppercase;
    }
    .hero-button {
        display: flex;
        padding: 12px 20px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
        border-radius: 30px;
        border: 1px solid #FFF;
        background: var(--Red, linear-gradient(180deg, #E47200 0%, #F91D1D 100%));
        color: #FFF;
        text-align: center;
        font-family: "Clash Display", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 14px */
        text-transform: uppercase;
    }
    .text .container {
        display: flex;
        padding: 30px 20px;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .text-title {
        color: #FFF;
        font-variant-numeric: lining-nums proportional-nums;
        font-family: "Clash Display", sans-serif;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 22px */
        text-transform: uppercase;
    }
    .game .container {
        padding: 30px 10px;
    }
    .game-header_text {
        gap: 10px;
    }
    .game-header_text-title {
        color: var(--Orange, #E47200);
        font-family: "Clash Display", sans-serif;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 22px */
        text-transform: uppercase;
    }
    .game-header_text-description {
        color: #FFF;
        font-family: "Clash Display", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%; /* 19.2px */
    }
    .game-header {
        flex-direction: column;
        gap: 10px;
    }
    .game-header_img {
        width: 100%;
    }
    .game-list {
        gap: 10px;
    }
    .game-list_item {
        max-width: calc(50% - 5px);
    }
    .game-list_item button {
        border-radius: 16px;
        border: 1px solid #FFF;
        background: var(--Bluee, linear-gradient(180deg, #006FFF 0%, #0BF 100%));
        display: flex;
        padding: 12px 10px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        align-self: stretch;
        color: #FFF;
        text-align: center;
        font-family: "Clash Display", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 14px */
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
        text-transform: uppercase;
    }
    .jackpot {
        margin: 0 10px 30px 10px;
    }
    .jackpot .container {
        padding: 20px 10px;
        flex-direction: column;
        gap: 20px;
    }
    .jackpot-img {
        width: 100%;
    }
    .jackpot-text_title {
        color: #FFF;
        text-align: center;
        font-family: "Clash Display", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 20px */
        text-transform: uppercase;
    }
    .jackpot-text {
        gap: 20px;
    }
    .jackpot-text_description {
        color: #FFF;
        text-align: center;
        font-family: "Clash Display", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%; /* 19.2px */
    }
    .jackpot-text_link {
        border-radius: 30px;
        border: 1px solid #FFF;
        background: #020005;
        display: flex;
        padding: 12px 20px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        align-self: stretch;
        text-align: center;
        font-family: "Clash Display", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 14px */
        text-transform: uppercase;
    }
    .footer .container {
        padding: 40px 20px;
    }
    .footer-title {
        color: #FFF;
        text-align: center;
        font-family: "Clash Display", sans-serif;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 22px */
        text-transform: uppercase;
    }
    .footer-description {
        color: #FFF;
        text-align: center;
        font-family: "Clash Display", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%; /* 16.8px */
    }
    .footer-img {
        width: 100%;
    }
    .footer-nav {
        gap: 20px;
    }
    .footer-nav li a {
        color: #FFF;
        font-family: "Clash Display", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%; /* 16.8px */
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
}