@font-face {
    font-family: 'Segoe';
    src: url('../fonts/SegoeUI-BoldItalic.eot');
    src: local('Segoe UI Bold Italic'), local('SegoeUI-BoldItalic'),
        url('../fonts/SegoeUI-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SegoeUI-BoldItalic.woff2') format('woff2'),
        url('../fonts/SegoeUI-BoldItalic.woff') format('woff'),
        url('../fonts/SegoeUI-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Segoe';
    src: url('../fonts/SegoeUI.eot');
    src: local('Segoe UI'), local('SegoeUI'),
        url('../fonts/SegoeUI.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SegoeUI.woff2') format('woff2'),
        url('../fonts/SegoeUI.woff') format('woff'),
        url('../fonts/SegoeUI.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe';
    src: url('../fonts/SegoeUI-SemiBold.eot');
    src: local('Segoe UI Semibold'), local('SegoeUI-SemiBold'),
        url('../fonts/SegoeUI-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SegoeUI-SemiBold.woff2') format('woff2'),
        url('../fonts/SegoeUI-SemiBold.woff') format('woff'),
        url('../fonts/SegoeUI-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe';
    src: url('../fonts/SegoeUI-Light.eot');
    src: local('Segoe UI Light'), local('SegoeUI-Light'),
        url('../fonts/SegoeUI-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SegoeUI-Light.woff2') format('woff2'),
        url('../fonts/SegoeUI-Light.woff') format('woff'),
        url('../fonts/SegoeUI-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe';
    src: url('../fonts/SegoeUI-Bold.eot');
    src: local('Segoe UI Bold'), local('SegoeUI-Bold'),
        url('../fonts/SegoeUI-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SegoeUI-Bold.woff2') format('woff2'),
        url('../fonts/SegoeUI-Bold.woff') format('woff'),
        url('../fonts/SegoeUI-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe';
    src: url('../fonts/SegoeUI-Italic.eot');
    src: local('Segoe UI Italic'), local('SegoeUI-Italic'),
        url('../fonts/SegoeUI-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SegoeUI-Italic.woff2') format('woff2'),
        url('../fonts/SegoeUI-Italic.woff') format('woff'),
        url('../fonts/SegoeUI-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}



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

body {
    background-color: #0a1f0a;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-family: 'Segoe';
}

a {
    color: inherit
}

input,textarea {
    outline: unset
}

.reflink {
    cursor: pointer
}

* {
    scrollbar-width: auto;
    scrollbar-color: #7b7297 1;
}

*::-webkit-scrollbar {
    width: 5px;
    height: 8px
}

*::-webkit-scrollbar-track {
    background: 1;
    border-radius: 5px
}

*::-webkit-scrollbar-thumb {
    background-color: #7b7297;
    border-radius: 14px;
    border: 3px solid 1
}

.container {
    width: 100%;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
}

.header {
    height: 88px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.fixed-header {
    background-color: #0c190c;
    z-index: 10;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__left {
    display: flex;
    align-items: center;
}

.header__burger {
    position: relative;
    margin-right: 16px;
    display: flex;
    cursor: pointer;
}

.header-burger__icon {
    display: flex;
}

.header-menu-close {
    display: none;
}

.header__burger.active .burger-icon-open {
    display: none;
}

.header__burger.active .header-menu-close {
    display: block;
}

.header__burger svg {
    height: 24px;
    width: 24px;
}

.header__menu {
    position: absolute;
    top: 40px;
    padding: 8px 0;
    background-color: #050202;
    border-radius: 8px;
    width: 300px;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}

.header__burger.active .header__menu {
    opacity: 1;
    pointer-events: all;
    transition: all .3s;
}

.header-menu__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-menu__link {
    display: flex;
    height: 40px;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    text-decoration: none;
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
}

.header-menu__link:hover {
    background-color: #512dbd80;
}

.menu-link__icon {
    display: flex;
}

.menu-link__icon svg {
    fill: #fff;
    stroke: #fff;
    width: 16px;
}

.menu-link-active {
    color: #eec546;
}

.menu-link-active svg {
    stroke: #eec546;
}

.header__logo {
    display: flex;
}

.header__logo>* {
    height: 26px;
}

.logo-mob {
    display: none;
}

.header-vip__btn {
    width: 236px;
    height: 40px;
    background-image: url(../img/bonus__btn.webp);
    background-size: 100% 100%;
    padding-left: 76px;
    margin-left: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header__right {
    display: flex;
}

.header__lang {
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 25px 8px 16px;
}

.header-lang__arrow {
    display: flex;
}

.header-lang__arrow svg {
    width: 16px;
    height: 16px;
    fill: #6d3dff;
}

.header__action {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn {
    border: 2px solid rgba(255, 255, 255, 0.34);
    text-decoration: none;
    min-height: 40px;
    min-width: 40px;
    padding: 0 32px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.btn-fill {
    background-image: linear-gradient(to right, #1b490f, #512DBD);
    border: 0;
}

.offer__wrapper {
    position: relative;
    height: 483px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer__wrapper::before {
    content: "";
    width: 398px;
    filter: blur(90px);
    height: 398px;
    background-color: #512dbd;
    position: absolute;
    right: 9rem;
    z-index: -1;
    opacity: .4;
}

.offer__text {
    margin-left: 100px;
}

.offer-text__title {
    color: #eec546;
    font-weight: 700;
    font-size: 32px;
    line-height: 45px;
    margin: 0;
}

.offer-text__subtitle {
    line-height: 21px;
    margin: 24px 0 20px;
}

.offer-text__subtitle span {
    color: #eec546;
}

.offer__btn {
    text-transform: uppercase;
    display: inline-flex;
}

.offer__image {
    margin-right: 50px;
}

.offer__dots {
    display: flex;
    align-items: center;
    gap: 34px;
}

.offer-dots__wrapper {
    display: flex;
    gap: 8px;
    margin-left: 100px;
    align-items: center;
}

.offer-dots__item {
    width: 8px;
    height: 8px;
    background-color: #ffffff80;
    border-radius: 100%;
    cursor: pointer;
}

.offer-dots__item:first-child {
    width: 32px;
    background-color: #51cdcb;
    border-radius: 9999px;
}

.offer-dots__arrows {
    display: flex;
    gap: 8px;
    align-items: center;
}

.offer-dots__arrows>div {
    height: 16px;
    display: flex;
}

.offer-dots__arrows svg {
    width: 16px;
    height: 16px;
}

.offer-arrow__left svg {
    transform: rotate(180deg);
}

.filters__header {
    display: none;
}

.filters__row {
    display: flex;
    gap: 10px;
    width: 64%;
}

.filters-arrow {
    background-color: #2e1a6b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    width: 32px;
    justify-content: center;
    cursor: pointer;
}

.filters-arrow svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.filters {
    padding: 50px 0;
}

.filters__wrapper {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.filters__item {
    width: 78px;
    height: 78px;
    font-size: 12px;
    line-height: 18px;
    padding: 0 8px;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background-color: #231452;
    border-radius: 8px;
}

.filters__item.active {
    background-color: #512dbd;
}

.filters-item__icon {
    display: flex;
    justify-content: center;
}

.filters-item__icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: #fff;
}

.filters-item__text {
    margin-top: 8px;
}

.filters__action {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 24px;
}

.filters__select,
.filters__search {
    display: flex;
    padding-left: 14px;
    padding-right: 14px;
    height: 40px;
    font-size: 14px;
    line-height: 20px;
    gap: 26px;
    align-items: center;
    border: 2px solid #6d3dff;
    border-radius: 8px;
    color: #7b7297;
    width: 180px;
}

.filters-select__icon {
    height: 16px;
}

.filters-select__icon svg {
    fill: #512dbd;
    width: 16px;
    height: 16px;
}

.filters__wrap  {
    width: 100%;
}

.filters__search {
    padding-left: 0;
}

.filters__search input {
    padding-left: 14px;
    color: #fff;
}

.filters-search__input {
    border: 0;
    background: unset;
    height: 100%;
    width: 100%;
}

.filters-search__btn {
    background: unset;
    border: 0;
    display: flex;
    padding: 0;
    cursor: pointer;
}

.filters-search__btn svg {
    width: 16px;
    height: 16px;
    stroke: #512dbd;
}

.slot-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #23145299;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transform: all .3s;
}

.slot__item:hover .slot-item__overlay {
    opacity: 1;
    pointer-events: all;
    transform: all .3s;
}

.slot-overlay__play svg {
    width: 44px;
    height: 44px;
}

.slots__wrapper {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    display: grid;
    gap: 24px;
    grid-auto-rows: minmax(0, 1fr);
    margin-bottom: 40px;
}

.slot__item {
    grid-row: span 1 / span 1;
    grid-column: span 1 / span 1;
    text-decoration: none;
}

.slot__item:nth-child(1),
.slot__item:nth-child(14),
.slot__item:nth-child(19),
.slot__item:nth-child(32) {
    grid-row: span 2 / span 2;
    grid-column: span 2 / span 2;
}

.slot-item__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background-color: #231452;
}

.slot-item__img {
    position: relative;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.slot-item__img img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.slot-item__footer {
    padding: 10px 16px;
}

.slot-item__title {
    font-size: 14px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slit-item__provider {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #7b7297;
    font-size: 12px;
    line-height: 18px;
}

.slot-btn__wrapper  {
    display: flex;
    justify-content: center;
}

.slots__btn {
    min-height: 40px;
    min-width: 40px;
    padding-left: 32px;
    padding-right: 32px;
    line-height: 36px;
    background-color: #512dbd;
    display: inline-flex;
}

.footer {
    padding: 40px 0;
    background-color: #0c190c;
    margin-top: 40px;
}

.footer__main {
    display: flex;
    gap: 54px;
    justify-content: space-between;
}

.footer-main__info {
    max-width: 485px;
}

.footer-info__header {
    display: flex;
    margin-bottom: 40px;
}

.footer__logo {
    display: flex;
    padding-right: 33px;
    border-right: 1px solid #512dbd;
}

.footer__logo svg {
    height: 37px;
}

.footer__contacts{
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    padding-left: 32px;
}

.footer-contacts__icon {
    display: flex;
}

.footer-contacts__icon svg {
    width: 24px;
    height: 24px;
}

.footer-contacts__name {
    color: #006ed5;
    font-size: 14px;
    line-height: 20px;
}

.footer__info {
    font-size: 14px;
    line-height: 20px;
}

.footer-main__nav {
    display: flex;
    gap: 2.6vw;
}

.footer-nav__list {
    padding: 0;
    list-style: none;
    margin: 0;
    max-width: 130px;
}

.footer-nav__title {
    margin: 0;
    color: #1fc81f;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 24px;
}

.footer-nav__item {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 20px;
}

.footer-nav__link {
    text-decoration: none;
}

.footer__other {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.footer-other__icons {
    display: flex;
    gap: 60px;
    align-items: center;
}

.footer-other__item:nth-child(1) svg {
    height: 40px;
}

.footer-other__item:nth-child(2) svg {
    height: 34px;
}

.footer-other__item:nth-child(3) svg {
    height: 36px;
}

.footer-other__apps {
    display: flex;
    gap: 8px;
}

.footer-apps__item {
    display: flex;
    align-items: center;
}

.footer-apps__item svg {
    height: 32px;
}

.footer__description {
    color: #ffffff4d;
    font-size: 14px;
    line-height: 20px;
}

.mobile-menu {
    display: none;
}

.chat__widget {
    width: 48px;
    height: 48px;
    bottom: 25px;
    right: 25px;
    position: fixed;
    border-radius: 50%;
    background: #00081c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat__widget img {
    width: 24px;
    height: 24px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    .header__burger {
        display: none;
    }

    .logo-pc {
        display: none;
    }
    .logo-mob {
        display: block;
        width: 88px;
        height: 44px;
    }
    .header-vip__btn {
        display: none;
    }
    .header__action {
        gap: 16px;
    }
    .header__lang {
        display: none;
    }
    .header__action .btn:nth-child(2) {
        order: -1;
        color: #6d3dff;
        font-size: 16px;
        padding: 0;
        height: auto;
        min-height: unset;
        border: 0;
    }
    .offer__wrapper {
        flex-direction: column-reverse;
        margin-top: 40px;
        justify-content: flex-end;
        gap: 24px;
    }
    .offer__wrapper::before {
        top: 0;
        right: 0;
    }
    .offer__text {
        margin: 0;
    }
    .offer__image {
        margin: 0;
    }
    .offer__image img {
        width: 100%;
        margin-left: -30px;
    }
    .offer__dots {
        margin-top: 80px;
    }
    .offer-dots__wrapper {
        margin-left: 0;
    }
    .filters__wrapper {
        position: relative;
        flex-direction: column;
    }
    .filters__header {
        display: block;
    }
    .filters__row {
        width: 100%;
    }
    .filters__action {
        flex-direction: column;
    }
    .filters__select, .filters__search {
        width: 100%;
        justify-content: space-between;
    }
    .filters__search {
        order: -1;
    }
    .filters-arrow {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        flex-shrink: 0;
        position: absolute;
        top: 0;
        background: unset;
        border: 2px solid #2e1a6b;
    }
    .filters-arrow-left {
        right: 38px;
    }
    .filters-arrow-right {
        right: 0;
    }
    .slots__wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 24px;
    }
    .slot__item:nth-child(1), .slot__item:nth-child(6), .slot__item:nth-child(11), .slot__item:nth-child(16), .slot__item:nth-child(21), .slot__item:nth-child(26), .slot__item:nth-child(31), .slot__item:nth-child(36) {
        grid-row: span 2 / span 2;
        grid-column: span 2 / span 2;
    }
    .slot__item:nth-child(14),.slot__item:nth-child(19),.slot__item:nth-child(32) {
        grid-row: span 1 / span 1;
        grid-column: span 1 / span 1;
    }
    .footer {
        padding: 32px 0;
    }
    .footer__main {
        flex-direction: column;
        gap: 0;
    }
    .footer-info__header {
        flex-direction: column;
        align-items: center;
        margin-bottom: 64px;
        gap: 24px;
    }
    .footer__logo {
        padding: 0;
        justify-content: center;
        border: 0;
    }
    .footer__logo svg {
        width: 170px;
        height: auto;
    }
    .footer__contacts {
        padding: 0;
    }
    .footer__info {
        display: none;
    }
    .footer-main__nav {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .footer-nav__list {
        text-align: center;
        max-width: 100%;
    }
    .footer__other {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .footer-other__icons {
        gap: 20px;
    }
    .footer-other__item svg {
        max-height: 30px;
    }
    .footer-other__apps {
        order: -1;
    }
    .mobile-menu {
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #231452;
        height: 66px;
        padding: 8px 0;
        z-index: 2;
        display: block;
    }
    .mobile-menu__wrapper {
        display: flex;
        justify-content: space-between;
    }
    .mobile-menu__item {
        text-decoration: none;
        min-width: 57px;
        height: 48px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 4px;
        justify-content: center;
    }
    .menu-item-active {
        background-color: #402394;
    }
    .mobile-menu__icon {
        display: flex;
    }
    .mobile-menu__title {
        font-size: 12px;
        line-height: 18px;
        margin-top: 4px;
    }
    .menu-item-dep .mobile-menu__icon {
        background-image: linear-gradient(to right, #5eead4, #6366f1, #5b21b6);
        box-shadow: 0 0 #0000, 0 0 #0000, 0px 10px 32px 0px rgba(109, 61, 255, .5);
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        flex-shrink: 0;
        margin-top: -25px;
    }
    .menu-item-dep svg {
        width: 16px;
        height: 16px;
    }
    .chat__widget {
        bottom: 80px;
    }
}