@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap);
@font-face {
    font-family: "DIN Pro";
    font-display: swap;
    src:
        url(https://s47734.cdn.ngenix.net/cdn/leon-ou5hen-1/public/fonts/DINPro-Bold.woff2) format("woff2"),
        url(https://s47734.cdn.ngenix.net/cdn/leon-ou5hen-1/public/fonts/DINPro-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "DIN Pro";
    font-display: swap;
    src:
        url(https://s47734.cdn.ngenix.net/cdn/leon-ou5hen-1/public/fonts/DINPro-Medium.woff2) format("woff2"),
        url(https://s47734.cdn.ngenix.net/cdn/leon-ou5hen-1/public/fonts/DINPro-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "DIN Pro Condensed";
    font-display: swap;
    src:
        url(https://s47734.cdn.ngenix.net/cdn/leon-ou5hen-1/public/fonts/DINPro-Condensed-Black.woff2) format("woff2"),
        url(https://s47734.cdn.ngenix.net/cdn/leon-ou5hen-1/public/fonts/DINPro-Condensed-Black.woff) format("woff");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "DIN Pro Condensed";
    font-display: swap;
    src:
        url(https://s47734.cdn.ngenix.net/cdn/leon-ou5hen-1/public/fonts/DINPro-Condensed-Bold.woff2) format("woff2"),
        url(https://s47734.cdn.ngenix.net/cdn/leon-ou5hen-1/public/fonts/DINPro-Condensed-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "DIN Pro Condensed";
    font-display: swap;
    src:
        url(https://s47734.cdn.ngenix.net/cdn/leon-ou5hen-1/public/fonts/DINPro-Condensed-Medium.woff2) format("woff2"),
        url(https://s47734.cdn.ngenix.net/cdn/leon-ou5hen-1/public/fonts/DINPro-Condensed-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
}
:root {
    --font-family: "DIN Pro Condensed", sans-serif;
    --second-family: "Uni Sans", sans-serif;
    --third-family: "DIN Pro", sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,
html {
    height: 100%;
}
body {
    font-family: var(--font-family);
    font-style: normal;
    color: #fff;
    background: #000;
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    max-width: 1770px;
    padding: 0 30px;
    width: 100%;
    margin: 0 auto;
}
.main {
    display: flex;
    flex-direction: column;
    height: 100svh;
    position: relative;
    overflow: hidden;
    background: url(https://s47734.cdn.ngenix.net/cdn/leon-ou5hen-1/public/img/bg.jpg) no-repeat;
    background-position: left top;
    background-size: cover;
}
.button {
    max-width: 377px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 30;
    background: #ffba00;
    border-radius: 10px;
    padding: 17px;
    text-decoration: none;
    overflow: hidden;
    transition: 0.3s all;
}
.button span {
    position: relative;
    z-index: 10;
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    transition: 0.3s all;
}
.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 40px;
    height: 100%;
    background: rgba(255, 233, 173, 0.4941176471);
    transform: skewX(-20deg);
    animation: shine 6s linear infinite;
    z-index: 1;
    pointer-events: none;
}
.button:hover {
    background: #d62628;
}
.button:hover::before {
    background: rgba(225, 225, 225, 0.4941176471);
}
.button:hover span {
    color: #fff;
}
@media screen and (max-width: 500px) {
    .main {
        background: url(https://s47734.cdn.ngenix.net/cdn/leon-ou5hen-1/public/img/bg-mobile.jpg) no-repeat;
        background-position: top center;
        background-size: cover;
    }
    .button {
        max-width: calc(200px + 250 * (100vw - 320px) / 180);
        border-radius: 9px;
        padding: 2vh 5px;
    }
    .button span {
        font-size: 3vh;
        line-height: normal;
    }
}
@media screen and (max-width: 360px) {
    .button {
        border-radius: 5px;
    }
}
.moveElems1 {
    animation: 2.2s moveElems infinite alternate ease-in-out;
}
.moveElems2 {
    animation: 2.2s moveElems infinite 0.25s alternate ease-in-out;
}
.moveElems3 {
    animation: 2.2s moveElems infinite 0.5s alternate ease-in-out;
}
@keyframes shine {
    0% {
        left: -150%;
    }
    40% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}
@keyframes flash {
    from {
        opacity: 0;
    }
    80% {
        opacity: 0;
    }
    81% {
        opacity: 0.6;
    }
    82% {
        opacity: 0.2;
    }
    84% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes moveElems {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20px);
    }
}
.promo__container {
    padding-top: 10vh;
    padding-bottom: 35px;
}
.promo__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: calc(600px + (790 - 600) * ((100vw - 900px) / (1480 - 900)));
}
.promo__logo {
    position: relative;
    z-index: 5;
    margin-bottom: 10vh;
}
.promo__title {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 19px;
    margin-bottom: 7vh;
}
.promo__title h1 {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: calc(80px + (90 - 80) * ((100vw - 900px) / (1480 - 900)));
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}
.promo__freebet {
    width: calc(220px + (277 - 220) * ((100vw - 900px) / (1480 - 900)));
}
.promo__subtitle {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 19px;
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 64px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    margin-bottom: 26px;
}
.promo__button-wrapper {
    max-width: 377px;
    width: 100%;
}
.promo__grenade {
    display: none;
}
.promo__elem-d {
    position: absolute;
}
.promo__elem-d-1 {
    top: 490px;
    left: -120px;
}
.promo__elem-d-2 {
    left: 42%;
    top: calc(0px + 90 * (100vh - 768px) / 672);
}
.promo__elem-d-3 {
    bottom: calc(-200px + 400 * (100vh - 768px) / 672);
    right: calc(-100px + 160 * (100vw - 500px) / 2060);
}
.promo__elem-m {
    display: none;
}
.promo__freebet--mob {
    display: none;
}
.promo__mirwana--mob {
    display: none;
}
.promo__npc--mob {
    display: none;
}
@media screen and (min-width: 1480px) {
    .promo__content {
        max-width: 790px;
    }
    .promo__title h1 {
        font-size: 108px;
    }
    .promo__freebet {
        width: 277px;
    }
}
@media screen and (min-width: 1024px) and (max-height: 800px) {
    .promo__container {
        padding-top: 6vh;
    }
    .promo__logo {
        margin-bottom: 6vh;
    }
    .promo__title {
        margin-bottom: 10vh;
    }
}
@media screen and (max-width: 900px) {
    .promo__container {
        padding-top: 55px;
    }
    .promo__content {
        max-width: 500px;
        margin: 0 auto;
    }
    .promo__logo {
        margin-bottom: 50px;
    }
    .promo__title {
        flex-direction: column;
        align-self: center;
        gap: 0;
    }
    .promo__subtitle {
        font-size: 58px;
        text-align: center;
        flex-direction: column;
        align-self: center;
        margin-bottom: 0;
    }
    .promo__mirwana {
        width: 210px;
    }
}
@media screen and (max-width: 500px) {
    .promo {
        height: 100%;
    }
    .promo__container {
        height: 100%;
        padding-top: 2vh;
        padding-bottom: 3vh;
    }
    .promo__content {
        height: 100%;
        max-width: 270px;
        margin: 0 auto;
    }
    .promo__logo {
        max-width: 18.5vh;
        margin-bottom: 3vh;
    }
    .promo__title {
        margin-bottom: 5px;
    }
    .promo__title h1 {
        font-size: 7.4vh;
    }
    .promo__freebet {
        display: none;
    }
    .promo__freebet--mob {
        width: 30vh;
        height: auto;
        display: block;
    }
    .promo__subtitle {
        gap: 5px;
        font-size: 5vh;
    }
    .promo__button-wrapper {
        margin-top: auto;
        text-align: center;
    }
    .promo__mirwana {
        display: none;
    }
    .promo__mirwana--mob {
        max-width: 100%;
        width: 30vh;
        display: block;
    }
    .promo__elem-d {
        display: none;
    }
    .promo__elem-m {
        display: block;
        position: absolute;
    }
    .promo__elem-m-1 {
        width: 10vh;
        top: -40px;
        left: -13vw;
    }
    .promo__elem-m-2 {
        top: 47vh;
        right: 20px;
    }
    .promo__elem-m-3 {
        bottom: -150px;
        left: -60px;
    }
    .promo__npc--mob {
        width: 40svh;
        max-width: 40svh;
        height: auto;
        position: absolute;
        display: block;
        left: 50%;
        transform: translateX(-50%);
        top: 20vh;
    }
}
.footer {
    margin-top: auto;
    padding-bottom: 70px;
}
.footer__container {
    max-width: 410px;
    width: 100%;
    margin: 0 auto;
}
.footer__content {
    display: flex;
    justify-content: center;
}
.footer__link {
    height: 41px;
    display: flex;
    align-items: center;
    position: relative;
    border: 2px solid #fff;
    border-radius: 21px;
    padding: 11px 20px 11px 50px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 19px;
    text-align: center;
    color: #fff;
    text-decoration: none;
}
.footer__link img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -4px;
}
@media screen and (max-width: 500px) {
    .footer {
        padding-bottom: 2vh;
    }
    .footer__container {
        max-width: 370px;
    }
    .footer__link {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        height: 32px;
        padding: 0 14px 0 39px;
        font-size: 18px;
    }
    .footer__link img {
        width: 32px;
        height: 32px;
        left: -4px;
    }
}
