@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    background: #4b0a4e
}

body {
    font-family: 'Oswald', sans-serif;
    background: #4b0a4e;
    color: #f0e6f0;
    line-height: 1.6;
    overflow-x: hidden
}

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

a {
    color: #1795e3;
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #81de22
}

:root {
    --col-bg: #4b0a4e;
    --col-nav: #332d32;
    --col-btn-blue: #1795e3;
    --col-btn-green: #81de22;
    --col-text: #f0e6f0;
    --col-text-dark: #1a1a1a;
    --col-accent: #ffd700;
    --col-card: #3a0840;
    --col-border: #5c1560;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .5px;
    cursor: pointer;
    border: none;
    transition: transform .18s, box-shadow .18s, background .18s;
    text-decoration: none;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .4)
}

.btn--blue {
    background: var(--col-btn-blue);
    color: #fff
}

.btn--blue:hover {
    background: #1285cc;
    color: #fff
}

.btn--green {
    background: var(--col-btn-green);
    color: #1a1a1a
}

.btn--green:hover {
    background: #72c91e;
    color: #1a1a1a
}

.btn--sm {
    padding: 7px 14px;
    font-size: 13px
}

.btn--lg {
    padding: 13px 32px;
    font-size: 17px
}

.header {
    background: var(--col-nav);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5)
}

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    min-height: 64px
}

.header-logo img {
    height: 44px;
    width: auto;
    object-fit: contain
}

.header-logo {
    display: flex;
    align-items: center
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap
}

.header-nav a {
    color: #d8c8d8;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .2s, color .2s
}

.header-nav a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.header-nav svg {
    flex-shrink: 0
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap
}

.jackpot-badge {
    background: linear-gradient(135deg, #ffd700, #ff9800);
    color: #1a1a1a;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 215, 0, .4);
    animation: jpulse 2s infinite
}

@keyframes jpulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 215, 0, .4)
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, .8)
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    border-radius: 5px
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #d8c8d8;
    border-radius: 2px;
    transition: transform .25s, opacity .25s
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.active span:nth-child(2) {
    opacity: 0
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.breadcrumb {
    padding: 10px 0;
    font-size: 13px;
    color: #b09ab0
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center
}

.breadcrumb li + li::before {
    content: '›';
    margin-right: 4px;
    color: #7a6a7a
}

.breadcrumb a {
    color: #b09ab0;
    transition: color .2s
}

.breadcrumb a:hover {
    color: #81de22
}

.hero {
    padding: 48px 0 32px;
    background: linear-gradient(160deg, #3a0840 0%, #4b0a4e 50%, #2a0630 100%);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/b-buffalo.jpg') center/cover no-repeat;
    opacity: .22;
    pointer-events: none
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    align-items: center
}

.hero-title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
    margin-bottom: 12px
}

.hero-title span {
    color: var(--col-btn-green)
}

.hero-subtitle {
    font-size: 16px;
    color: #d8c8d8;
    margin-bottom: 24px;
    line-height: 1.7
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.hero-tiles {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 12px
}

.hero-tile {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--col-border);
    border-radius: var(--radius);
    padding: 14px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: transform .2s, border-color .2s
}

.hero-tile:hover {
    transform: translateY(-3px);
    border-color: var(--col-btn-green)
}

.hero-tile-icon {
    font-size: 24px;
    margin-bottom: 6px
}

.hero-tile-val {
    font-size: 18px;
    font-weight: 700;
    color: var(--col-btn-green)
}

.hero-tile-lbl {
    font-size: 12px;
    color: #b09ab0;
    text-transform: uppercase;
    letter-spacing: .5px
}

.hero-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--col-border)
}

.hero-img-wrap img {
    width: 100%;
    height: auto
}

.section {
    padding: 48px 0
}

.section-title {
    font-size: clamp(20px, 3.5vw, 32px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-align: center
}

.section-sub {
    text-align: center;
    color: #b09ab0;
    margin-bottom: 32px;
    font-size: 15px
}

.section-sep {
    width: 60px;
    height: 3px;
    background: var(--col-btn-green);
    border-radius: 2px;
    margin: 8px auto 24px
}

.game-layout {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
    align-items: start
}

.demo-wrap {
    border-radius: var(--radius);
    background: #1a0a1e;
    border: 2px solid var(--col-border);
    box-shadow: var(--shadow)
}

.demo-wrap iframe {
    width: 100%;
    height: 440px;
    border: none;
    display: block
}

.demo-cta {
    padding: 14px;
    background: var(--col-nav);
    display: flex;
    justify-content: center
}

.game-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px
}

.game-table tbody tr {
    border-bottom: 1px solid var(--col-border);
    transition: background .15s
}

.game-table tbody tr:hover {
    background: rgba(255, 255, 255, .04)
}

.game-table td {
    padding: 9px 10px;
    vertical-align: middle;
    color: #f0e6f0
}

.game-table td:first-child {
    color: #b09ab0;
    width: 48%;
    display: flex;
    align-items: center;
    gap: 7px
}

.game-table td:last-child {
    font-weight: 600;
    color: #fff
}

.gt-icon {
    flex-shrink: 0;
    color: var(--col-btn-blue)
}

.bonuses {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.bonus-card {
    background: var(--col-card);
    border: 1px solid var(--col-border);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--col-btn-blue), var(--col-btn-green))
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5)
}

.bonus-casino {
    font-size: 12px;
    color: #b09ab0;
    text-transform: uppercase;
    letter-spacing: .5px
}

.bonus-val {
    font-size: 26px;
    font-weight: 700;
    color: var(--col-btn-green)
}

.bonus-desc {
    font-size: 13px;
    color: #d8c8d8;
    line-height: 1.5;
    flex: 1
}

.bonus-code {
    background: rgba(23, 149, 227, .15);
    border: 1px dashed var(--col-btn-blue);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    color: var(--col-btn-blue);
    font-weight: 600;
    display: inline-block
}

.bonus-terms {
    font-size: 11px;
    color: #7a6a7a
}

.strategies {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.strat-card {
    background: var(--col-card);
    border: 1px solid var(--col-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s
}

.strat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.strat-img {
    height: 140px;
    object-fit: cover;
    width: 100%
}

.strat-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.strat-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff
}

.strat-desc {
    font-size: 13px;
    color: #b09ab0;
    line-height: 1.5;
    flex: 1
}

.content-block {
    background: var(--col-card);
    border: 1px solid var(--col-border);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow)
}

.content-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 10px
}

.content-block h2:first-child {
    margin-top: 0
}

.content-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #d8c8d8;
    margin: 20px 0 8px
}

.content-block h4 {
    font-size: 16px;
    font-weight: 600;
    color: #c0b0c0;
    margin: 16px 0 6px
}

.content-block p {
    color: #d8c8d8;
    line-height: 1.75;
    margin-bottom: 14px
}

.content-block ul, .content-block ol {
    padding-left: 22px;
    margin-bottom: 14px;
    color: #d8c8d8;
    line-height: 1.75
}

.content-block li {
    margin-bottom: 6px
}

.content-block strong {
    color: #fff;
    font-weight: 600
}

.content-block em {
    color: #b09ab0;
    font-style: italic
}

.content-block a {
    color: var(--col-btn-blue)
}

.content-block a:hover {
    color: var(--col-btn-green)
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px
}

.content-block table th {
    background: var(--col-nav);
    color: #fff;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--col-border)
}

.content-block table td {
    padding: 9px 12px;
    text-align: left;
    border: 1px solid var(--col-border);
    color: #d8c8d8
}

.content-block table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03)
}

.content-block blockquote {
    border-left: 4px solid var(--col-btn-blue);
    padding: 10px 16px;
    margin: 16px 0;
    background: rgba(23, 149, 227, .08);
    color: #d8c8d8;
    border-radius: 0 var(--radius) var(--radius) 0
}

.content-block img {
    border-radius: 8px;
    margin: 12px 0
}

.author-block {
    background: var(--col-nav);
    border-radius: var(--radius);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    border: 1px solid var(--col-border)
}

.author-ava {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--col-btn-blue), var(--col-btn-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    flex-shrink: 0
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.author-title {
    font-size: 12px;
    color: #b09ab0
}

.author-bio {
    font-size: 13px;
    color: #d8c8d8;
    margin-top: 4px;
    line-height: 1.5
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.faq-item {
    background: var(--col-card);
    border: 1px solid var(--col-border);
    border-radius: var(--radius);
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: background .2s
}

.faq-q:hover {
    background: rgba(255, 255, 255, .05)
}

.faq-q.open {
    color: var(--col-btn-green)
}

.faq-q svg {
    flex-shrink: 0;
    transition: transform .25s;
    color: #b09ab0
}

.faq-q.open svg {
    transform: rotate(180deg);
    color: var(--col-btn-green)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s
}

.faq-a.open {
    max-height: 600px
}

.faq-a-inner {
    padding: 0 20px 16px;
    font-size: 14px;
    color: #d8c8d8;
    line-height: 1.7
}

.footer {
    background: var(--col-nav);
    padding: 40px 0 0;
    margin-top: auto
}

.footer-inner {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px
}

.footer-logo img {
    height: 40px;
    margin-bottom: 14px
}

.footer-desc {
    font-size: 13px;
    color: #9a8a9a;
    line-height: 1.6;
    margin-bottom: 16px
}

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.footer-links a {
    font-size: 13px;
    color: #9a8a9a;
    transition: color .2s
}

.footer-links a:hover {
    color: #81de22
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px
}

.footer-pay-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--col-border);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 11px;
    color: #9a8a9a;
    font-weight: 600
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.footer-social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--col-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a8a9a;
    transition: background .2s, color .2s
}

.footer-social:hover {
    background: var(--col-btn-blue);
    color: #fff;
    border-color: var(--col-btn-blue)
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--col-border);
    border-bottom: 1px solid var(--col-border);
    margin-top: 16px
}

.trust-badge {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--col-border);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 11px;
    color: #9a8a9a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px
}

.trust-badge svg {
    color: var(--col-btn-green)
}

.footer-bottom {
    text-align: center;
    padding: 16px 0;
    font-size: 12px;
    color: #7a6a7a;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.footer-bottom a {
    color: #7a6a7a;
    text-decoration: underline
}

.footer-bottom a:hover {
    color: #9a8a9a
}

.footer-flag {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 4px
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.footer-provider img {
    height: 28px;
    opacity: .7;
    filter: brightness(1.2)
}

.footer-age {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--col-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #9a8a9a;
    flex-shrink: 0
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background: linear-gradient(90deg, #1a0a1e, #332d32);
    border-top: 2px solid var(--col-btn-green);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .6);
    transform: translateY(0);
    transition: transform .3s
}

.sticky-widget.hidden {
    transform: translateY(100%)
}

.widget-text {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    flex: 1
}

.widget-text span {
    color: var(--col-btn-green)
}

.widget-close {
    background: none;
    border: none;
    color: #9a8a9a;
    cursor: pointer;
    padding: 4px;
    font-size: 18px;
    line-height: 1;
    transition: color .2s;
    flex-shrink: 0
}

.widget-close:hover {
    color: #fff
}

.slider-wrap {
    position: relative;
    overflow: hidden
}

.slider-track {
    display: flex;
    transition: transform .4s ease;
    gap: 20px
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--col-border);
    cursor: pointer;
    transition: background .2s;
    border: none
}

.slider-dot.active {
    background: var(--col-btn-green)
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 4px
}

.slider-btn {
    background: rgba(50, 45, 50, .85);
    border: 1px solid var(--col-border);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: background .2s
}

.slider-btn:hover {
    background: var(--col-btn-blue)
}

.info-page {
    padding: 48px 0
}

.info-page h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px
}

.info-page h2 {
    font-size: 22px;
    font-weight: 700;
    color: #d8c8d8;
    margin: 24px 0 10px
}

.info-page p {
    color: #d8c8d8;
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 15px
}

.info-page ul {
    padding-left: 22px;
    color: #d8c8d8;
    margin-bottom: 14px;
    line-height: 1.75
}

.info-page li {
    margin-bottom: 6px;
    font-size: 15px
}

.info-page a {
    color: var(--col-btn-blue)
}

.scroll-top {
    position: fixed;
    bottom: 72px;
    right: 20px;
    z-index: 9000;
    background: var(--col-btn-blue);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all
}

.scroll-top:hover {
    transform: translateY(-3px)
}

.xr7k2p9 {
    display: none
}

.wc_add_to_cart_button {
    display: none
}

.woocommerce-loop-product__title {
    display: none
}

.wp-block-separator {
    display: none
}

.entry-meta {
    display: none
}

.section-dark {
    background: rgba(0, 0, 0, .25)
}

.section-alt {
    background: linear-gradient(180deg, #3a0840, #4b0a4e)
}

.box-inset {
    background: var(--col-card);
    border: 1px solid var(--col-border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow)
}

.tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

.tag--green {
    background: rgba(129, 222, 34, .15);
    color: #81de22;
    border: 1px solid rgba(129, 222, 34, .3)
}

.tag--blue {
    background: rgba(23, 149, 227, .15);
    color: #1795e3;
    border: 1px solid rgba(23, 149, 227, .3)
}

.tag--gold {
    background: rgba(255, 215, 0, .15);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, .3)
}

.tag--red {
    background: rgba(220, 50, 50, .15);
    color: #e05050;
    border: 1px solid rgba(220, 50, 50, .3)
}

.gap-md {
    gap: 20px
}

.mt-1 {
    margin-top: 8px
}

.mt-2 {
    margin-top: 16px
}

.mt-3 {
    margin-top: 24px
}

.mb-2 {
    margin-bottom: 16px
}

.text-center {
    text-align: center
}

.mobile-only {
    display: none
}

@media (max-width: 900px) {
    .header-inner {
        grid-template-columns:auto auto auto
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--col-nav);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px;
        gap: 4px;
        border-top: 1px solid var(--col-border);
        z-index: 999
    }

    .header-nav.open {
        display: flex
    }

    .header-nav a {
        padding: 10px 12px;
        font-size: 15px
    }

    .burger {
        display: flex
    }

    .hero-inner {
        grid-template-columns:1fr
    }

    .hero-img-wrap {
        display: none
    }

    .game-layout {
        grid-template-columns:1fr
    }

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

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

    .footer-inner {
        grid-template-columns:1fr 1fr
    }

    .jackpot-badge {
        font-size: 11px;
        padding: 3px 9px
    }
}

@media (max-width: 600px) {
    .hero-tiles {
        grid-template-columns:repeat(2, 1fr)
    }

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

    .footer-inner {
        grid-template-columns:1fr
    }

    .bonus-card {
        min-width: calc(100vw - 48px)
    }

    .slider-track {
        gap: 0
    }

    .bonuses {
        display: block
    }

    .bonuses.slider-wrap .slider-track {
        display: flex
    }

    .sticky-widget {
        flex-direction: column;
        gap: 6px;
        padding: 8px 16px;
        text-align: center
    }

    .widget-text {
        font-size: 13px
    }
}
