@font-face {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    src: url('/fonts-d9c3a7e1/Roboto-Regular-d9c3a7e1.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-weight: 500;
    font-style: normal;
    src: url('/fonts-d9c3a7e1/Roboto-Medium-d9c3a7e1.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-weight: 700;
    font-style: normal;
    src: url('/fonts-d9c3a7e1/Roboto-Bold-d9c3a7e1.woff2') format('woff2');
    font-display: swap;
}

:root {
    --font-roboto: 'Roboto';
    --primary-color: #ffffff;
    --yellow: #C1940E;
    --blue: #0E9AC1;
    --aqua: #0EBEC1;
    --body-bg: #161414;
    --body-bg1: #282323;
    --border-color: #534444;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

h1,
h2,
h3,
p,
ul[class],
ol[class],
button,
body {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

img {
    display: inline-block;
    max-width: 100%;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

input,
textarea,
button {
    background: none;
    border: none;
    outline: none;
}

a,
button,
div[class],
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: none;
}

body {
    background-color: var(--body-bg);
    color: var(--primary-color);
    font-family: var(--font-roboto);
    font-size: 15px;
    font-weight: 400;
}

/* Utils________________________________ */
.container-d9c3a7e1 {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-d9c3a7e1 {
    padding: 70px 0;
}

@media screen and (max-width: 600px) {
    .section-d9c3a7e1 {
        padding: 20px 0;
    }
}

.h-32-d9c3a7e1 {
    font-size: 32px;
    font-weight: 700;
}

.h-color-d9c3a7e1 {
    background: linear-gradient(180deg, #FFF 17.55%, #F2CBC6 89.36%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Popup______________ */
#popup {
    display: flex;
}

.overlay-d9c3a7e1 {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    z-index: 11000;
}

.popup-d9c3a7e1 {
    background-color: #282323;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.popup-d9c3a7e1>h2 {
    font-size: 24px;
    font-weight: 700;
}

.popup-d9c3a7e1>p {
    font-size: 14px;
    margin: 15px 0;
}

.popup__buttons-d9c3a7e1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.popup__buttons-d9c3a7e1>button {
    width: 100%;
    max-width: 230px;
    color: #ffffff;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    border-radius: 100px;
    padding: 10px 40px;
    cursor: pointer;
}

#accept {
    background-color: #F14548;
}

#more-info {
    border: 2px solid #F14548;
}


@media screen and (max-width: 600px) {
    .popup-d9c3a7e1 {
        max-width: 360px;
        padding: 10px 16px;
    }

    .popup-d9c3a7e1>h2 {
        font-size: 16px;
        margin: 5px 0;
    }

    .popup-d9c3a7e1>p {
        font-size: 12px;
    }

    .popup__buttons-d9c3a7e1>button {
        max-width: 100%;
    }
}

/* Home section______________ */
.home-d9c3a7e1 {
    background: linear-gradient(rgba(21, 21, 21, 0.8), rgba(21, 21, 21, 0.8)),
        url('/pictures-d9c3a7e1/home_main-bg-d9c3a7e1.webp') no-repeat;
    background-size: cover;
    padding: 20px 0;
}

.home__date-of-update-d9c3a7e1 {
    max-width: 267px;
    margin: 0 auto 20px;
    border-radius: 100px;
    background-color: #ffffff;
    padding: 5px;
    color: #161414;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.home__date-of-update-d9c3a7e1>span,
.home__date-of-update-d9c3a7e1>svg {
    vertical-align: middle;
}

.home__date-of-update-d9c3a7e1>svg {
    margin-right: 10px;
}

.home__head-d9c3a7e1 {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.home__head-flag-1-d9c3a7e1,
.home__head-flag-2-d9c3a7e1 {
    position: absolute;
    top: 0;
    z-index: -1;
}

.home__head-flag-1-d9c3a7e1 {
    left: 0;
}

.home__head-flag-2-d9c3a7e1 {
    right: 0;
}

.home__head-content-d9c3a7e1 {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.home__head-content-d9c3a7e1>h1 {
    font-size: clamp(15px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
}

.home__head-content-d9c3a7e1>p {
    text-align: center;
    margin: 20px 0;
}

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

    .home__head-flag-1-d9c3a7e1,
    .home__head-flag-2-d9c3a7e1 {
        width: 90px;
        height: 180px;
    }

    .home__head-flag-1-d9c3a7e1 {
        left: -10px;
    }

    .home__head-flag-2-d9c3a7e1 {
        right: -10px;
    }
}

@media screen and (max-width: 600px) {
    .home__date-of-update-d9c3a7e1 {
        color: #ffffff;
        background-color: transparent;
    }

    .home__date-of-update-d9c3a7e1>svg>path {
        stroke: #ffffff;
    }

    .home__head-content-d9c3a7e1>h1 {
        margin: 14px 0 10px;
    }

    .home__head-content-d9c3a7e1>p {
        display: none;
    }

    .home__head-flag-1-d9c3a7e1,
    .home__head-flag-2-d9c3a7e1 {
        width: 31px;
        height: 62px;
        top: 15px;
    }

    .home__date-of-update-d9c3a7e1 {
        font-size: 12px;
    }

    .home__date-of-update-d9c3a7e1>svg {
        margin-right: 0;
    }
}

.game-features-d9c3a7e1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 100;
}

.game-features__item-d9c3a7e1 {
    border-radius: 100px;
    border: 1px solid #534444;
    background: #282323;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 30px;
}

@media screen and (max-width: 600px) {
    .game-features-d9c3a7e1 {
        gap: 5px;
    }

    .game-features__item-d9c3a7e1 {
        font-size: 8px;
        padding: 5px;
    }

    .game-features__item-d9c3a7e1>img {
        width: 10px;
        height: 11px;
    }
}

/* Casino______________ */
.casino-item-d9c3a7e1 {
    border-radius: 5px;
    border: 1px solid #534444;
    background: radial-gradient(47.65% 47.65% at 86.21% 50%, #632418 0%, #282323 100%);
    max-width: 660px;
    margin: 0 auto 15px;
    padding: 22px 20px;
    position: relative;
}

.casino-item-d9c3a7e1:last-of-type {
    margin-bottom: 0;
}

.casino-item-label-d9c3a7e1 {
    border-radius: 100px;
    padding: 5px 10px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    max-width: 109px;
    position: absolute;
    top: -10px;
}

.label-blue-d9c3a7e1 {
    background-color: var(--blue);
}

.label-yellow-d9c3a7e1 {
    background-color: var(--yellow);
}

.label-aqua-d9c3a7e1 {
    background-color: var(--aqua);
}

.casino-item-wrapper-d9c3a7e1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.casino-logo-d9c3a7e1 {
    display: block;
    flex-shrink: 0;
}

.casino-stars-d9c3a7e1 {
    margin-top: 11px;
    display: flex;
    justify-content: center;
}

.casino-bonus-d9c3a7e1 {
    display: block;
    text-align: center;
    max-width: 130px;
}

.casino-bonus-d9c3a7e1>div:first-child {
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 5px;
}

.casino-bonus-d9c3a7e1>div:last-child {
    font-size: 20px;
    font-weight: 700;
}

.casino-rating-d9c3a7e1 {
    text-align: center;
}

.casino-rating-d9c3a7e1>div:first-child {
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 10px;
}

.casino-rating-d9c3a7e1>div:last-child {
    font-size: 24px;
    font-weight: 700;
}

.casino-button-d9c3a7e1 {
    border-radius: 100px;
    border: 3px solid #FF8183;
    background: radial-gradient(49.47% 49.54% at 50.53% 48.65%, #F14548 0%, #9A2426 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 36px;
    width: 188px;
    padding: 10px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.button__glare-d9c3a7e1 {
    opacity: 0.8;
    position: absolute;
    top: -100px;
    left: -100px;
    display: block;
    background: #ffffff;
    width: 40px;
    height: 300px;
    transition: all 0.1s;
    transform: rotate(45deg);
    animation-delay: 0.05s;
    animation-timing-function: ease-in-out;
    animation-name: slide;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0) rotate(45deg);
    }

    30%,
    100% {
        transform: translateX(350px) rotate(45deg);
    }
}

@media screen and (max-width: 644px) {
    .casino-item-wrapper-d9c3a7e1 {
        justify-content: center;
    }
}

/* Terms section______________ */
.terms-d9c3a7e1 h2 {
    font-size: 20px;
    font-weight: 700;
}

.terms-d9c3a7e1 p,
.terms-d9c3a7e1 ul>li {
    font-size: 15px;
    font-weight: 400;
    list-style: disc;
}

.terms-d9c3a7e1 p>a {
    font-weight: 700;
}

.terms__back-button {
    display: block;
}

.terms__back-button-d9c3a7e1 {
    display: block;
    width: 24px;
}

.terms__back-button-d9c3a7e1,
.terms-d9c3a7e1 h1,
.terms-d9c3a7e1 h2,
.terms-d9c3a7e1 p,
.terms-d9c3a7e1 ul {
    margin-bottom: 20px;
}

.terms-d9c3a7e1 p:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 375px) {
    .terms-d9c3a7e1 ul {
        padding-left: 20px;
    }
}

/* Questions section______________ */
.questions-d9c3a7e1 h2 {
    text-align: center;
    margin-bottom: 20px;
}

.questions__item-d9c3a7e1 {
    border-radius: 0 20px 20px 0;
    border-left: 1px solid #A32426;
    background: #282323;
    padding: 20px;
    margin-bottom: 20px;
}

.questions__item-d9c3a7e1>h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Reviews section______________ */
.reviews-d9c3a7e1 h2 {
    text-align: center;
    margin-bottom: 20px;
}

.reviews__list-d9c3a7e1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews__item-d9c3a7e1 {
    border-radius: 20px;
    background: #282323;
    width: 400px;
    padding: 20px;
}

.reviews__item-d9c3a7e1 p,
.reviews__author-name-d9c3a7e1 {
    margin-bottom: 20px;
}

.reviews__item-d9c3a7e1 p>span,
.reviews__author-name-d9c3a7e1 {
    font-weight: 700;
}

/* Contact section______________ */
.contact-d9c3a7e1 h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-container-d9c3a7e1 {
    border-radius: 20px;
    border: 1px solid #534444;
    background-color: #282323;
    max-width: 752px;
    margin: 0 auto;
    padding: 20px;
}

.form-d9c3a7e1 {
    max-width: 484px;
    margin: 0 auto 23px;
}

.form-d9c3a7e1>input,
.form-d9c3a7e1>textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #554C4C;
    background-color: #554C4C;
    height: 46px;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-d9c3a7e1>input::placeholder,
.form-d9c3a7e1>textarea::placeholder {
    color: rgba(255, 255, 255, 0.50);
}

.form-d9c3a7e1>textarea {
    height: 72px;
    resize: none;
}

.form-d9c3a7e1>button {
    width: 100%;
    border-radius: 100px;
    border: 2px solid #F14548;
    box-shadow: 0px 0px 11.6px 0px rgba(255, 85, 87, 0.3);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 20px;
    cursor: pointer;
}

.form-d9c3a7e1>button:hover,
.form-d9c3a7e1>button:active {
    background-color: #F14548;
}

.form-message-d9c3a7e1 {
    display: none;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.form-message-d9c3a7e1.active {
    display: block;
}

.form-message-d9c3a7e1>svg {
    margin-right: 10px;
    vertical-align: middle;
}

.form-message-d9c3a7e1>span {
    vertical-align: middle;
}

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

    .form-d9c3a7e1>input,
    .form-d9c3a7e1>textarea {
        margin-bottom: 15px;
    }

    .form-d9c3a7e1>button {
        font-size: 18px;
    }

    .form-message-d9c3a7e1 {
        font-size: 15px;
    }
}

/* Footer______________ */
.footer-d9c3a7e1 {
    padding: 100px 0;
}

.footer__info-d9c3a7e1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 20px;
}

.footer__info-item-d9c3a7e1 {
    max-width: 600px;
}

.footer__info-item-d9c3a7e1>h3 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.footer__nav-d9c3a7e1 {
    margin: 40px 0;
}

.footer__nav-list-d9c3a7e1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__nav-list-d9c3a7e1 li {
    text-align: center;
}

.footer__nav-list-d9c3a7e1 a {
    font-weight: 400;
    font-size: 15px;
    text-decoration: underline;
}

.footer__logos-list-d9c3a7e1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

@media screen and (max-width: 600px) {
    .footer__info-d9c3a7e1 {
        gap: 20px;
    }
}