:root {
    --bg: #0b1425;
    --bg2: #121d33;
    --bg3: #182640;
    --card: #192742;
    --card2: #202f50;
    --border: #344a76;
    --blue: #0d70d8;
    --orange: #ff794d;
    --text: #edf4ff;
    --muted: #aeb9cb;
    --purple: #563de2;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Lato, Inter, Arial, sans-serif;
    min-width: 320px;
}

a {
    text-decoration: none;
    color: inherit
}

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

.page {
    max-width: 1225px;
    margin: 0 auto;
    padding: 48px 20px 24px
}

.site-header {
    height: 64px;
    background: #111b2e;
    position: sticky;
    top: 0;
    z-index: 80;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .32);
    display: flex;
    align-items: center;
    justify-content: center
}

.burger {
    position: absolute;
    left: 18px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    padding: 0;
    display: grid;
    place-items: center;
    cursor: pointer
}

.burger img {
    width: 34px
}

.logo img {
    width: 86px
}

.auth {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 12px;
    top: 10px
}

.auth a,
.side-btn {
    height: 40px;
    min-width: 148px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 900;
    letter-spacing: .04em;
    font-size: 14px
}

.auth .login,
.side-btn.blue {
    background: #1767ad
}

.auth .register,
.side-btn.orange {
    background: var(--orange);
}

.top-menu {
    height: 63px;
    background: #17233a;
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    align-items: center;
    padding: 0 32px;
    gap: 16px
}

.promo-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b9c3d5;
    font-weight: 700;
    font-size: 13px
}

.promo-toggle span {
    width: 36px;
    height: 20px;
    border-radius: 20px;
    background: #0e1627;
    border: 2px solid #293753;
    position: relative
}

.promo-toggle span:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2a3653;
    left: 3px;
    top: 2px
}

.top-tabs {
    display: flex;
    justify-content: center;
    gap: 16px
}

.top-tabs a {
    height: 45px;
    min-width: 182px;
    padding: 0 22px;
    border-radius: 9px;
    background: #1a2553;
    box-shadow: 0 3px 0 rgba(0, 0, 0, .18), inset 0 0 0 1px rgba(102, 95, 218, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    font-family: Impact, Arial Black, sans-serif;
    letter-spacing: .08em;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .4);
    font-size: 17px
}

.top-tabs img {
    width: 34px;
    height: 34px;
    object-fit: contain
}

.hero {
    height: 344px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #0c1424;
    margin-bottom: 28px
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .45s ease
}

.hero-slide.active {
    opacity: 1;
    z-index: 1
}

.hero-slide>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 8, 16, .62) 0%, rgba(4, 8, 16, .25) 38%, rgba(4, 8, 16, 0) 72%);
    z-index: 2;
    pointer-events: none
}

.hero-copy {
    position: absolute;
    z-index: 3;
    left: 74px;
    top: 118px;
    max-width: 420px
}

.hero-copy h1 {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1;
    font-family: Impact, Arial Black, sans-serif;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-shadow: 2px 3px 0 rgba(0, 0, 0, .45)
}

.hero-copy p {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35
}

.hero-copy a {
    display: inline-grid;
    place-items: center;
    height: 40px;
    min-width: 132px;
    border-radius: 6px;
    background: var(--orange);
    font-weight: 900
}

.hero-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 13px;
    transform: translateX(-50%);
    display: flex;
    gap: 13px
}

.dot {
    width: 32px;
    height: 4px;
    border: 0;
    border-radius: 4px;
    background: #46556f;
    cursor: pointer
}

.dot.active {
    background: #ff7a36
}

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    translate: 0 -50%;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(26, 39, 66, .86);
    color: white;
    font-size: 36px;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    transition: .2s
}

.hero:hover .hero-arrow {
    opacity: 1
}

.hero-arrow.prev {
    left: 18px
}

.hero-arrow.next {
    right: 18px
}

.search-card {
    background: #0e1727;
    border-radius: 18px;
    padding: 18px 16px 16px;
    margin: 0 0 30px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12)
}

.search-line {
    height: 54px;
    border: 2px solid #263b60;
    border-radius: 28px;
    background: #060b13;
    display: flex;
    align-items: center;
    padding: 0 28px;
    gap: 16px;
    color: #fff;
    font-weight: 900
}

.search-line img {
    width: 25px
}

.chips {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 17px 0 0;
    scrollbar-width: none
}

.chips::-webkit-scrollbar {
    display: none
}

.chip {
    flex: 0 0 auto;
    min-width: 113px;
    height: 58px;
    border-radius: 9px;
    background: #182641;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    font-weight: 900;
    line-height: 1.08;
    box-shadow: 0 7px 12px rgba(0, 0, 0, .16)
}

.chip img {
    width: 32px;
    height: 32px;
    object-fit: contain
}

.section {
    margin: 36px 0 54px
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px
}

.section-title img {
    width: 32px;
    height: 32px;
    object-fit: contain
}

.section-title h2 {
    margin: 0;
    text-transform: uppercase;
    font-family: Impact, Arial Black, sans-serif;
    letter-spacing: .08em;
    font-size: 25px;
    text-shadow: 2px 3px 0 rgba(0, 0, 0, .5)
}

.section-nav {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #aeb9cb;
    font-weight: 800
}

.section-nav a {
    margin-right: 4px
}

.section-nav button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #263a5f;
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0
}

.section-nav button img {
    width: 14px;
    filter: brightness(4)
}

.section-nav button:first-of-type img {
    transform: rotate(180deg)
}

.game-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px
}

.game-card {
    position: relative;
    text-align: center;
    min-width: 0
}

.thumb {
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #111b2f;
    box-shadow: 0 8px 12px rgba(0, 0, 0, .22)
}

.thumb>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease, filter .25s ease
}

.game-title {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-top: 9px;
    line-height: 1.25;
    min-height: 38px
}

.play {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 12, .56);
    display: grid;
    place-items: center;
    opacity: 0;
    transition: .2s
}

.play img {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 0 18px rgba(255, 119, 60, .5))
}

.exclusive {
    position: absolute;
    right: 6px;
    top: 4px;
    z-index: 2;
    width: 21px;
    opacity: .96
}

.game-card:hover .play {
    opacity: 1
}

.game-card:hover .thumb>img {
    transform: scale(1.08);
    filter: brightness(.62)
}

.game-card:hover .game-title {
    color: #ffdfc8
}

.winners {
    margin: 0 0 32px
}

.winners-title {
    margin-bottom: 14px
}

.winner-row {
    display: flex;
    gap: 11px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none
}

.winner-row::-webkit-scrollbar {
    display: none
}

.winner-card {
    height: 96px;
    min-width: 222px;
    background: #201b49;
    border: 1px solid #5a55a7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px
}

.winner-card img {
    width: 78px;
    height: 78px;
    border-radius: 6px;
    object-fit: cover
}

.winner-card strong {
    display: block;
    color: #dbe3f5;
    font-weight: 900;
    margin-bottom: 3px
}

.winner-card span {
    display: block;
    font-size: 12px;
    color: #bac5d8;
    margin-bottom: 5px
}

.winner-card b {
    font-size: 22px;
    color: #fff
}

.mission-section {
    margin-top: 28px
}

.mission-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.mission-card {
    background: #17233a;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 12px rgba(0, 0, 0, .18)
}

.mission-card>img {
    width: 100%;
    height: 156px;
    object-fit: cover
}

.status {
    position: absolute;
    top: 10px;
    left: 16px;
    background: #333a54;
    border-radius: 22px;
    padding: 7px 18px;
    color: white;
    font-weight: 900
}

.status span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e1a0b, #d79a42);
    margin-right: 7px;
    vertical-align: -2px
}

.mission-info {
    padding: 18px
}

.mission-info h3 {
    margin: 0 0 26px;
    font-size: 20px
}

.mission-info p {
    color: #c4ccdb;
    margin: 8px 0
}

.mission-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px
}

.mission-actions a {
    height: 34px;
    border-radius: 7px;
    border: 1px solid #3a50d6;
    display: grid;
    place-items: center;
    flex: 1;
    font-weight: 900
}

.mission-actions .orange {
    background: var(--orange);
    border-color: var(--orange)
}

.offer-section {
    background: #192843;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 32px max(20px, calc((100vw - 1225px)/2)) 38px
}

.offer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.offer-card {
    height: 124px;
    border-radius: 9px;
    background-size: cover;
    background-position: center;
    border: 2px solid #4d41df;
    padding: 48px 16px 16px;
    position: relative;
    overflow: hidden
}

.offer-card strong {
    font-size: 18px;
    font-weight: 900;
    display: block;
    max-width: 190px
}

.offer-card span {
    position: absolute;
    left: 16px;
    bottom: 14px;
    width: 122px;
    height: 30px;
    border: 1px solid #604cff;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-weight: 900
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.provider-grid article {
    height: 104px;
    border-radius: 10px;
    background: #111b2f;
    border: 1px solid #273957;
    display: grid;
    place-items: center;
    padding: 18px
}

.provider-grid img {
    max-width: 160px;
    max-height: 56px;
    filter: grayscale(1) brightness(2.5);
    opacity: .9
}

.provider-grid span {
    display: none
}

.seo-card {
    background: #17233a;
    border-radius: 10px;
    padding: 26px 32px;
    text-align: left;
    color: #c8d2e3;
    max-height: 260px;
    overflow: hidden
}

.seo-card h2 {
    margin: 0 0 10px;
    color: white
}

.seo-card p {
    line-height: 1.65
}

.seo-card button {
    display: flex;
    margin: 24px auto 0;
    height: 48px;
    min-width: 178px;
    border: 0;
    border-radius: 8px;
    background: #27365d;
    color: #dce5f8;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 900;
    cursor: pointer
}

.footer {
    background: #0a1221;
    padding: 64px max(20px, calc((100vw - 1225px)/2)) 50px;
    color: #c3ccdb
}

.footer-nav {
    border-bottom: 1px solid #314468;
    padding-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.footer-nav a,
.lang {
    background: #1c2b48;
    border-radius: 7px;
    min-height: 47px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    min-width: 90px
}

.lang {
    min-width: 240px;
    justify-content: space-between;
    font-size: 16px
}

.lang img {
    width: 31px
}

.payments h3 {
    margin: 52px 0 18px;
    color: white;
    font-size: 16px
}

.payments div {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 34px;
    align-items: center;
    justify-content: center
}

.payments img {
    max-height: 25px;
    max-width: 150px;
    filter: grayscale(1) brightness(2.3);
    opacity: .72
}

.license {
    text-align: center;
    max-width: 980px;
    margin: 42px auto 28px;
    font-size: 12px;
    line-height: 1.6
}

.licence-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap
}

.licence-logos img {
    max-height: 36px;
    width: auto
}

.licence-logos img:first-child {
    height: 38px
}

.licence-logos span {
    font-size: 12px
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(1, 5, 13, .72);
    z-index: 95;
    opacity: 0;
    pointer-events: none;
    transition: .25s
}

.overlay.open {
    opacity: 1;
    pointer-events: auto
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 350px;
    max-width: calc(100vw - 40px);
    height: 100vh;
    background: #111b2e;
    z-index: 100;
    transform: translateX(-105%);
    transition: .3s ease;
    padding: 24px 15px;
    overflow-y: auto;
    box-shadow: 20px 0 50px rgba(0, 0, 0, .45)
}

.sidebar.open {
    transform: translateX(0)
}

.close {
    position: absolute;
    left: 16px;
    top: 25px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #263858;
    color: white;
    font-size: 36px;
    line-height: 1;
    cursor: pointer
}

.side-logo {
    width: 82px;
    margin: 6px auto 36px
}

.side-btn {
    width: 100%;
    margin-bottom: 18px
}

.side-search {
    height: 56px;
    border: 2px solid #2d4169;
    border-radius: 28px;
    background: #070c15;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 25px;
    font-weight: 900;
    font-size: 14px;
    margin: 30px 0 16px
}

.side-search img {
    width: 24px
}

.side-group {
    background: #192742;
    border-radius: 10px;
    margin: 0 0 16px;
    padding: 14px 16px
}

.side-group a {
    height: 56px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 900
}

.side-group img {
    width: 34px;
    height: 34px;
    object-fit: contain
}

.side-group .emoji {
    font-size: 30px;
    width: 34px;
    text-align: center
}

.side-group a:nth-child(3):has(.emoji) {
    background: #fff4a3;
    color: #13213b;
    border-radius: 8px;
    padding-left: 10px;
    margin: 8px -2px
}

.side-lang {
    margin-top: 24px;
    background: #293553;
    border-radius: 8px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    color: #cfd8e9
}

.side-lang img {
    width: 31px
}

.no-scroll {
    overflow: hidden
}

@media(max-width:1050px) {
    .top-menu {
        grid-template-columns: 1fr;
        padding: 8px 14px;
        height: auto
    }

    .promo-toggle,
    .top-menu .spacer {
        display: none
    }

    .top-tabs {
        justify-content: flex-start;
        overflow-x: auto
    }

    .page {
        padding-top: 28px
    }

    .game-row {
        grid-template-columns: repeat(4, 1fr)
    }

    .mission-row,
    .offer-row {
        grid-template-columns: 1fr
    }

    .provider-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:760px) {
    .auth a {
        min-width: auto;
        width: 110px;
        font-size: 12px
    }

    .auth {
        right: 8px;
        gap: 6px
    }

    .logo img {
        width: 72px
    }

    .site-header {
        height: 58px
    }

    .page {
        padding: 22px 12px
    }

    .hero {
        height: 230px;
        border-radius: 8px
    }

    .hero-copy {
        left: 22px;
        top: 70px;
        max-width: 290px
    }

    .hero-copy h1 {
        font-size: 21px
    }

    .hero-copy p {
        font-size: 13px
    }

    .top-tabs a {
        min-width: 150px;
        font-size: 14px
    }

    .search-card {
        padding: 12px
    }

    .chips {
        gap: 10px
    }

    .chip {
        min-width: 100px
    }

    .game-row {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        scroll-snap-type: x mandatory
    }

    .game-card {
        flex: 0 0 158px;
        scroll-snap-align: start
    }

    .thumb {
        height: 118px
    }

    .section-title h2 {
        font-size: 21px
    }

    .section-nav a {
        display: none
    }

    .winner-card {
        min-width: 210px
    }

    .footer {
        padding-top: 40px
    }

    .footer-nav {
        padding-bottom: 28px
    }

    .lang {
        width: 100%;
        min-width: 0
    }

    .payments div {
        justify-content: flex-start
    }

    .provider-grid {
        grid-template-columns: 1fr 1fr
    }

    .sidebar {
        width: 350px
    }

    .offer-section {
        padding-left: 12px;
        padding-right: 12px
    }
}

@media(max-width:520px) {
    .auth {
        display: none
    }

    .game-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .section {
        margin-bottom: 38px
    }

    .mission-card>img {
        height: 130px
    }

    .provider-grid {
        grid-template-columns: 1fr
    }

    .winner-row,
    .chips {
        padding-bottom: 8px
    }

    .hero-dots .dot {
        width: 22px
    }

    .footer-nav a {
        flex: 1 1 45%
    }

    .side-group a {
        height: 52px
    }

    .side-logo {
        margin-bottom: 28px
    }
}

* {
    box-sizing: border-box
}

html,
body {
    max-width: 100%;
    overflow-x: hidden
}

.page {
    max-width: 1225px;
    width: 100%;
}

.section-title img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex: 0 0 36px
}

.section-title h2 {
    line-height: 1.05;
    overflow-wrap: anywhere
}

.section-nav button {
    transition: transform .18s ease, background .18s ease
}

.section-nav button:hover {
    background: #324a78;
    transform: translateY(-1px)
}

.section-nav button:active {
    transform: scale(.96)
}

.game-row {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 0 2px 6px;
    margin: 0 -2px
}

.game-row::-webkit-scrollbar {
    display: none
}

.game-card {
    flex: 0 0 calc((100% - 80px)/6);
    min-width: 170px;
    max-width: 210px;
    scroll-snap-align: start
}

.game-title {
    font-size: 16px;
    line-height: 1.22;
    overflow-wrap: anywhere;
    hyphens: auto;
    min-height: 40px;
    padding: 0 4px
}

.thumb {
    aspect-ratio: 194/133;
    height: auto;
    min-height: 118px
}

.thumb>img {
    display: block
}

.mission-row,
.offer-row {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding-bottom: 8px
}

.mission-row::-webkit-scrollbar,
.offer-row::-webkit-scrollbar {
    display: none
}

.mission-card {
    flex: 0 0 calc((100% - 32px)/3);
    min-width: 315px;
    scroll-snap-align: start
}

.offer-card {
    flex: 0 0 calc((100% - 36px)/3);
    min-width: 315px;
    scroll-snap-align: start
}

.offer-card strong {
    max-width: 240px;
    line-height: 1.12
}

.mission-info h3 {
    line-height: 1.18;
    min-height: 48px
}

.winner-row {
    gap: 12px;
    padding-bottom: 8px
}

.winner-card {
    flex: 0 0 236px;
    min-width: 236px;
    max-width: 236px;
    overflow: hidden
}

.winner-card div {
    min-width: 0;
    flex: 1
}

.winner-card strong {
    font-size: 15px;
    line-height: 1.16;
    white-space: normal;
    overflow-wrap: anywhere
}

.winner-card b {
    font-size: 20px;
    line-height: 1.08;
    white-space: normal
}

.winner-card img {
    flex: 0 0 78px
}

.chips {
    gap: 12px
}

.chip {
    min-width: 132px;
    justify-content: flex-start
}

.chip span {
    min-width: 0;
    line-height: 1.05;
    overflow-wrap: anywhere
}

.chip img {
    flex: 0 0 34px
}

.search-line span,
.side-search span {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.sidebar {
    padding: 24px 12px 28px
}

.side-group {
    padding: 10px 12px
}

.side-group a {
    height: 56px;
    border-radius: 8px;
    padding: 0 10px;
    gap: 16px;
    transition: background .18s ease, transform .18s ease
}

.side-group a:hover {
    background: #263456;
    transform: translateX(2px)
}

.side-group img {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    object-fit: contain;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .25))
}

.side-group b {
    font-size: 14px;
    line-height: 1.1;
    white-space: normal;
    overflow-wrap: anywhere
}

.side-group a.vip {
    background: linear-gradient(90deg, #fff6b4, #f1d66d);
    color: #13213b;
    border-radius: 8px;
    margin: 8px 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4)
}

.side-group a.vip:hover {
    background: linear-gradient(90deg, #fff8c9, #f6df79)
}

.side-group .emoji {
    display: none
}

.side-lang,
.lang {
    position: relative;
    gap: 12px
}

.side-lang span,
.lang span {
    flex: 1;
    text-align: left
}

.chevron {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    border-right: 3px solid #9fb0ce;
    border-bottom: 3px solid #9fb0ce;
    transform: rotate(45deg) translateY(-3px);
    border-radius: 2px
}

.lang .chevron {
    margin-left: auto
}

@media(max-width:1050px) {
    .game-card {
        flex-basis: calc((100% - 48px)/4);
        min-width: 165px
    }

    .mission-card,
    .offer-card {
        flex-basis: calc((100% - 16px)/2);
        min-width: 300px
    }

    .section-head {
        gap: 14px
    }

    .section-title {
        min-width: 0
    }

    .section-nav {
        flex: 0 0 auto
    }
}

@media(max-width:760px) {
    .site-header {
        position: sticky;
        top: 0
    }

    .page {
        padding-left: 12px;
        padding-right: 12px
    }

    .search-card {
        border-radius: 14px;
        padding: 12px
    }

    .chips {
        display: flex;
        overflow-x: auto
    }

    .chip {
        min-width: 150px;
        height: 58px;
        padding: 8px 12px;
        font-size: 14px
    }

    .section {
        margin: 32px 0 42px
    }

    .section-head {
        align-items: center;
        margin-bottom: 14px
    }

    .section-title {
        gap: 8px;
        min-width: 0
    }

    .section-title img {
        width: 34px;
        height: 34px;
        flex-basis: 34px
    }

    .section-title h2 {
        font-size: 20px;
        letter-spacing: .055em;
        max-width: calc(100vw - 145px)
    }

    .section-nav {
        gap: 8px
    }

    .section-nav button {
        width: 40px;
        height: 40px
    }

    .section-nav button img {
        width: 15px
    }

    .game-row {
        gap: 14px;
        margin-right: -12px;
        padding-right: 12px
    }

    .game-card {
        flex: 0 0 158px;
        min-width: 158px;
        max-width: 158px
    }

    .thumb {
        height: 108px;
        min-height: 108px
    }

    .game-title {
        font-size: 15px;
        min-height: 38px
    }

    .winner-card {
        flex-basis: 218px;
        min-width: 218px;
        max-width: 218px;
        height: 94px;
        gap: 10px
    }

    .winner-card img {
        width: 70px;
        height: 70px;
        flex-basis: 70px
    }

    .winner-card strong {
        font-size: 14px
    }

    .winner-card b {
        font-size: 19px
    }

    .mission-card,
    .offer-card {
        flex: 0 0 86vw;
        min-width: 280px
    }

    .mission-card>img {
        height: 138px
    }

    .offer-card {
        height: 116px
    }

    .side-logo {
        width: 82px
    }

    .side-btn {
        height: 46px
    }

    .side-search {
        height: 56px;
        padding: 0 22px
    }

    .side-group a {
        height: 56px
    }

    .side-group b {
        font-size: 14px
    }

    .side-lang {
        height: 49px
    }

    .footer-nav .lang {
        justify-content: flex-start
    }

    .footer-nav .lang span {
        text-align: left
    }
}

@media(max-width:430px) {
    .sidebar {
        width: 100vw;
        max-width: 100vw;
        padding-left: 12px;
        padding-right: 12px
    }

    .close {
        left: 12px;
        top: 12px
    }

    .side-logo {
        margin-top: 2px;
        margin-bottom: 30px
    }

    .section-title h2 {
        font-size: 19px;
        max-width: calc(100vw - 136px)
    }

    .section-nav button {
        width: 38px;
        height: 38px
    }

    .section-nav a {
        display: none
    }

    .chip {
        min-width: 148px
    }

    .game-card {
        flex-basis: 152px;
        min-width: 152px;
        max-width: 152px
    }

    .thumb {
        height: 104px;
        min-height: 104px
    }

    .winner-card {
        flex-basis: 210px;
        min-width: 210px;
        max-width: 210px
    }

    .winner-card b {
        font-size: 18px
    }

    .mission-card,
    .offer-card {
        flex-basis: 88vw;
        min-width: 270px
    }

    .lang {
        width: 100%;
        min-width: 0
    }
}

.provider-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    padding-bottom: 8px
}

.provider-grid::-webkit-scrollbar {
    display: none
}

.provider-grid article {
    flex: 0 0 calc((100% - 48px)/4);
    min-width: 230px;
    scroll-snap-align: start
}

@media(max-width:760px) {
    .provider-grid article {
        flex: 0 0 210px;
        min-width: 210px
    }
}

.chips {
    gap: 12px;
    align-items: flex-start;
}

.chip {
    min-width: 132px;
    max-width: 152px;
    height: 58px;
    justify-content: flex-start;
    gap: 10px;
    padding: 8px 14px;
}

.chip img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: contain;
}

.chip span {
    display: block;
    font-size: 13px;
    line-height: 1.05;
    font-weight: 900;
    white-space: normal;
    overflow: hidden;
    text-overflow: clip;
}

.side-lang span:not(.chevron),
.lang span:not(.chevron) {
    flex: 1 1 auto;
    text-align: left;
    min-width: 0;
}

.side-lang .chevron,
.lang .chevron {
    display: block !important;
    flex: 0 0 11px !important;
    width: 11px !important;
    height: 11px !important;
    min-width: 11px !important;
    max-width: 11px !important;
    border-right: 2px solid #9fb0ce !important;
    border-bottom: 2px solid #9fb0ce !important;
    border-left: 0 !important;
    border-top: 0 !important;
    transform: rotate(45deg) !important;
    margin: 0 4px 4px auto !important;
    border-radius: 1px !important;
}

.side-lang {
    overflow: hidden;
}

.side-group img {
    object-fit: contain;
}

.game-row,
.mission-row,
.offer-row,
.provider-grid {
    cursor: grab;
}

.game-row.dragging,
.mission-row.dragging,
.offer-row.dragging,
.provider-grid.dragging {
    cursor: grabbing;
}

.game-title {
    word-break: normal;
    overflow-wrap: break-word;
}

@media(max-width:760px) {
    .chip {
        min-width: 142px;
        max-width: 156px
    }

    .chip span {
        font-size: 12px
    }

    .side-lang .chevron {
        margin-right: 6px !important
    }

    .section-nav {
        margin-left: auto
    }

    .section-title h2 {
        text-transform: uppercase
    }
}

.content-panel {
    background: #17233a;
    border-radius: 14px;
    padding: 26px 32px;
    margin: 26px 0 34px;
    color: #c9d4e7;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .12)
}

.intro-seo {
    margin-top: 0
}

.intro-seo h1 {
    margin: 0 0 14px;
    color: #fff;
    font-family: Impact, Arial Black, sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 34px;
    line-height: 1.08;
    text-shadow: 2px 3px 0 rgba(0, 0, 0, .45)
}

.intro-seo p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #d3dded
}

.article-panel {
    overflow-x: auto
}

.article-content {
    max-width: 100%;
    overflow-x: auto
}

.article-content h2,
.faq h2,
.faq-review-panel>section h2 {
    margin: 0 0 18px;
    color: #fff;
    font-family: Impact, Arial Black, sans-serif;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 28px;
    text-shadow: 2px 3px 0 rgba(0, 0, 0, .45)
}

.article-content h3,
.faq-item-title,
.faq-review-panel h3 {
    color: #fff;
    margin: 20px 0 10px;
    font-size: 21px;
    line-height: 1.25
}

.article-content p,
.article-content li,
.faq-item-content-visible,
.faq-review-panel p {
    color: #c9d4e7;
    line-height: 1.7;
    font-size: 16px
}

.article-content a,
.faq-review-panel a {
    color: #8fc1ff;
    text-decoration: underline
}

.article-content ul,
.article-content ol {
    padding-left: 22px;
    margin: 14px 0 18px
}

.article-content table {
    width: 100%;
    min-width: 640px;
    border-collapse: separate;
    border-spacing: 0;
    margin: 18px 0;
    border: 1px solid #30466d;
    border-radius: 10px;
    overflow: hidden;
    display: table
}

.article-content th,
.article-content td {
    padding: 13px 15px;
    border-bottom: 1px solid #30466d;
    text-align: left;
    vertical-align: top
}

.article-content th {
    background: #213253;
    color: #fff
}

.article-content tr:last-child td {
    border-bottom: 0
}

.article-content blockquote {
    margin: 18px 0;
    padding: 16px 20px;
    border-left: 4px solid #ff794d;
    background: #111b2e;
    border-radius: 8px
}

.faq {
    margin: 0
}

.faq-content {
    display: grid;
    gap: 12px
}

.faq-item,
.faq-review-panel [itemtype="https://schema.org/Review"] {
    background: #111b2e;
    border: 1px solid #2b4068;
    border-radius: 10px;
    padding: 18px 20px
}

.faq-item-title {
    font-size: 18px;
    margin: 0 0 10px
}

.faq-item-content-visible p {
    margin: 0
}

.faq-review-panel>section {
    margin-top: 28px
}

.faq-review-panel [itemtype="https://schema.org/Review"] {
    margin: 0 0 12px
}

.faq-review-panel [itemtype="https://schema.org/Review"] h3 {
    margin-top: 0
}

.side-group a.vip img {
    background: transparent !important;
    mix-blend-mode: multiply;
    width: 25px;
    height: 25px;
    object-fit: contain
}

.side-group a.vip {
    overflow: hidden
}

@media(max-width:760px) {
    .content-panel {
        padding: 20px 16px;
        margin: 22px 0 28px
    }

    .intro-seo h1 {
        font-size: 26px
    }

    .article-content h2,
    .faq h2,
    .faq-review-panel>section h2 {
        font-size: 24px
    }

    .article-content p,
    .article-content li,
    .faq-item-content-visible,
    .faq-review-panel p {
        font-size: 15px
    }

    .article-content table {
        display: block;
        overflow-x: auto;
        min-width: 620px
    }

    .faq-item,
    .faq-review-panel [itemtype="https://schema.org/Review"] {
        padding: 15px
    }
}

/* clickable link/card fixes */
.provider-grid .provider-card{
    height:104px;
    border-radius:10px;
    background:#111b2f;
    border:1px solid #273957;
    display:grid;
    place-items:center;
    padding:18px;
    flex:0 0 calc((100% - 48px)/4);
    min-width:230px;
    scroll-snap-align:start;
    text-decoration:none;
    color:inherit;
    cursor:pointer;
    transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.provider-grid .provider-card:hover{
    transform:translateY(-2px);
    border-color:#5b6fb0;
    background:#162542;
}
.provider-grid .provider-card img{
    max-width:160px;
    max-height:56px;
    filter:grayscale(1) brightness(2.5);
    opacity:.9;
}
.provider-grid .provider-card span{display:none;}
.hero-slide{cursor:pointer;}
.hero-copy a{position:relative;z-index:4;}
.game-card,.chip,.top-tabs a,.side-group a,.side-btn,.provider-grid .provider-card,.section-nav a{cursor:pointer;}
@media(max-width:760px){.provider-grid .provider-card{flex:0 0 210px;min-width:210px;}}
