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

html {
    scroll-behavior: smooth;
    background: #10151c;
    font-size: 16px
}

body.bdy-x4p1 {
    font-family: 'Roboto', sans-serif;
    background: #10151c;
    color: #e8eaf0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

a {
    color: #3deb51;
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #5fff6e
}

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

ul {
    list-style: none
}

.site-wrapper {
    display: grid;
    grid-template-rows:auto 1fr auto;
    min-height: 100vh
}

.hdr-container {
    background: #1c202b;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(61, 235, 81, .13);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.hdr-box {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.hdr-x9k2 {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    min-height: 68px
}

.hdr-logo-link {
    display: block;
    flex-shrink: 0
}

.hdr-logo-link img {
    height: 45px;
    width: auto;
    object-fit: contain
}

.hdr-nav-block {
}

.hdr-nav-list {
    display: flex;
    gap: 4px;
    align-items: center
}

.hdr-nav-item {
}

.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    color: #c8cdd8;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .01em;
    transition: background .2s, color .2s;
    white-space: nowrap
}

.hdr-nav-link:hover, .hdr-nav-link:focus-visible {
    background: rgba(61, 235, 81, .1);
    color: #3deb51
}

.nav-ico {
    flex-shrink: 0
}

.hdr-actions-block {
    display: flex;
    align-items: center;
    gap: 16px
}

.hdr-online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #8b9099;
    white-space: nowrap
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3deb51;
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .6;
        transform: scale(1.3)
    }
}

.online-num {
    color: #3deb51;
    font-weight: 600
}

.hdr-btns {
    display: flex;
    gap: 8px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s, filter .2s;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.1)
}

.btn:active {
    transform: translateY(0)
}

.btn-login {
    background: #052c18;
    color: #3deb51;
    border: 1px solid rgba(61, 235, 81, .25)
}

.btn-login:hover {
    background: #073820;
    color: #3deb51;
    border-color: rgba(61, 235, 81, .5)
}

.btn-signup {
    background: #3deb51;
    color: #052c18
}

.btn-signup:hover {
    box-shadow: 0 4px 20px rgba(61, 235, 81, .4)
}

.btn-primary {
    background: #3deb51;
    color: #052c18;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 10px
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(61, 235, 81, .45)
}

.btn-secondary {
    background: #052c18;
    color: #3deb51;
    border: 1px solid rgba(61, 235, 81, .3);
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 10px
}

.btn-secondary:hover {
    border-color: #3deb51;
    color: #3deb51
}

.btn-sm {
    padding: 7px 14px;
    font-size: .8rem;
    border-radius: 6px
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background .2s
}

.burger-btn:hover {
    background: rgba(61, 235, 81, .1)
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #e8eaf0;
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.burger-btn.is-open .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger-btn.is-open .burger-line:nth-child(2) {
    opacity: 0
}

.burger-btn.is-open .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
    display: none;
    background: #1c202b;
    border-bottom: 1px solid rgba(61, 235, 81, .1);
    padding: 0
}

.mobile-menu.is-open {
    display: block
}

.mobile-nav-list {
    display: grid;
    grid-template-columns:1fr 1fr;
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 20px;
    gap: 4px
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #c8cdd8;
    font-size: .9rem;
    font-weight: 500;
    transition: background .2s, color .2s
}

.mobile-nav-link:hover {
    background: rgba(61, 235, 81, .1);
    color: #3deb51
}

.main-content {
    width: 100%
}

.section-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #10151c
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/img/banner-lw.png') center/cover no-repeat;
    opacity: .35;
    z-index: 0
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 21, 28, .95) 0%, rgba(5, 44, 24, .6) 60%, rgba(16, 21, 28, .8) 100%);
    z-index: 1
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns:1fr auto;
    gap: 40px;
    align-items: center;
    width: 100%
}

.hero-text-col {
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(61, 235, 81, .12);
    border: 1px solid rgba(61, 235, 81, .25);
    color: #3deb51;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px
}

.hero-h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 12px
}

.hero-h1 span {
    color: #3deb51
}

.hero-sub {
    font-size: 1.05rem;
    color: #a8b0be;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 28px
}

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

.hero-bonus-card {
    background: linear-gradient(145deg, #1c202b, #0e1a10);
    border: 1px solid rgba(61, 235, 81, .3);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(61, 235, 81, .1)
}

.bonus-card-label {
    font-size: .8rem;
    color: #8b9099;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px
}

.bonus-card-amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: #3deb51;
    line-height: 1;
    margin-bottom: 4px
}

.bonus-card-type {
    font-size: .85rem;
    color: #c8cdd8;
    margin-bottom: 16px
}

.bonus-card-detail {
    font-size: .78rem;
    color: #6b7280;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 12px;
    margin-top: 4px
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce-down 2s infinite
}

@keyframes bounce-down {
    0%, 100% {
        transform: translateX(-50%) translateY(0)
    }
    50% {
        transform: translateX(-50%) translateY(6px)
    }
}

.hero-scroll-indicator svg {
    opacity: .4
}

.page-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px
}

.section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.section-subtitle {
    font-size: .95rem;
    color: #8b9099;
    margin-bottom: 32px;
    line-height: 1.6
}

.section-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #3deb51, #052c18);
    border-radius: 2px;
    margin-bottom: 24px
}

.info-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: #13181f;
    min-width: 520px
}

.info-table th {
    background: #1c202b;
    color: #3deb51;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid rgba(61, 235, 81, .15)
}

.info-table td {
    padding: 13px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .9rem;
    color: #c8cdd8;
    vertical-align: middle
}

.info-table tr:last-child td {
    border-bottom: none
}

.info-table tr:hover td {
    background: rgba(61, 235, 81, .04)
}

.info-table .td-param {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8b9099;
    font-weight: 500;
    white-space: nowrap
}

.info-table .td-param svg {
    flex-shrink: 0;
    color: #3deb51;
    opacity: .8
}

.info-table .td-val {
    font-weight: 500;
    color: #e8eaf0
}

.info-table .td-val .highlight {
    color: #3deb51;
    font-weight: 700
}

.video-block {
    background: #13181f;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .07);
    overflow: hidden
}

.video-inner {
    padding: 28px
}

.video-frame-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #0a0e13
}

.video-frame-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px
}

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

.game-card {
    background: #13181f;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    display: flex;
    flex-direction: column
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(61, 235, 81, .3);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .4)
}

.game-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #0a0e13
}

.game-card-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1
}

.game-card-name {
    font-weight: 700;
    color: #e8eaf0;
    font-size: .95rem
}

.game-card-provider {
    font-size: .78rem;
    color: #6b7280
}

.game-card .btn {
    margin-top: auto
}

.mobile-games-slider {
    display: none;
    overflow: hidden
}

.games-slider-track {
    display: flex;
    gap: 16px;
    transition: transform .4s cubic-bezier(.25, .46, .45, .94)
}

.games-slider-track .game-card {
    min-width: 260px;
    flex-shrink: 0
}

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

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0
}

.slider-dot.is-active {
    background: #3deb51;
    transform: scale(1.3)
}

.demo-block {
    background: linear-gradient(145deg, #13181f, #0e1a10);
    border: 1px solid rgba(61, 235, 81, .15);
    border-radius: 16px;
}

.demo-inner {
    display: grid;
    grid-template-columns:1fr auto;
    gap: 0;
    align-items: stretch
}

.demo-frame-col {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    min-height: 360px
}

.demo-frame-col iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

.demo-cta-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 16px;
    background: rgba(5, 44, 24, .4);
    border-left: 1px solid rgba(61, 235, 81, .1);
    min-width: 240px;
    max-width: 280px
}

.demo-cta-label {
    font-size: .78rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .07em
}

.demo-cta-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3
}

.demo-cta-sub {
    font-size: .88rem;
    color: #8b9099;
    line-height: 1.6
}

.review-content-block {
    background: #13181f;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 36px 40px
}

.review-author-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(28, 32, 43, .7);
    border-radius: 10px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3deb51, #052c18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.author-info-block {
}

.author-name {
    font-weight: 700;
    color: #e8eaf0;
    font-size: 1rem
}

.author-title {
    font-size: .82rem;
    color: #3deb51;
    margin-bottom: 4px
}

.author-bio {
    font-size: .82rem;
    color: #8b9099;
    line-height: 1.5
}

.author-links {
    display: flex;
    gap: 10px;
    margin-top: 8px
}

.author-link {
    font-size: .78rem;
    color: #3deb51;
    opacity: .8;
    transition: opacity .2s
}

.author-link:hover {
    opacity: 1
}

.review-text-body {
    font-size: .95rem;
    line-height: 1.75;
    color: #c8cdd8
}

.review-text-body h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px
}

.review-text-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e8eaf0;
    margin: 22px 0 10px
}

.review-text-body p {
    margin-bottom: 16px
}

.review-text-body a {
    color: #3deb51
}

.review-text-body a:hover {
    text-decoration: underline
}

.review-text-body ul, .review-text-body ol {
    padding-left: 20px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.review-text-body li {
    line-height: 1.7
}

.review-text-body ul li {
    list-style: disc
}

.review-text-body ol li {
    list-style: decimal
}

.review-text-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .07)
}

.review-text-body table th {
    background: #1c202b;
    color: #3deb51;
    padding: 12px 16px;
    text-align: left;
    font-size: .85rem
}

.review-text-body table td {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .88rem;
    color: #c8cdd8
}

.review-text-body blockquote {
    border-left: 3px solid #3deb51;
    padding: 12px 20px;
    background: rgba(61, 235, 81, .06);
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    font-style: italic;
    color: #a8b0be
}

.review-text-body strong {
    color: #e8eaf0;
    font-weight: 700
}

.review-text-body em {
    color: #b8bfc8;
    font-style: italic
}

.review-text-body img {
    border-radius: 8px;
    margin: 16px 0
}

.review-text-body code {
    background: #0a0e13;
    padding: 2px 7px;
    border-radius: 4px;
    font-family: monospace;
    font-size: .85em;
    color: #3deb51
}

.reg-steps-wrap {
    overflow-x: auto
}

.reg-steps-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px
}

.reg-steps-table td, .reg-steps-table th {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    text-align: left;
    vertical-align: top
}

.reg-steps-table th {
    background: #1c202b;
    color: #3deb51;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700
}

.reg-steps-table tr:last-child td {
    border-bottom: none
}

.reg-steps-table tr:hover td {
    background: rgba(61, 235, 81, .03)
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3deb51, #22a535);
    color: #052c18;
    font-weight: 800;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.step-num-cell {
    width: 60px
}

.step-title-cell {
    font-weight: 700;
    color: #e8eaf0;
    width: 200px
}

.step-desc-cell {
    color: #8b9099;
    font-size: .88rem;
    line-height: 1.6
}

.security-table-wrap {
    overflow-x: auto
}

.security-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px
}

.security-table th {
    background: #1c202b;
    color: #3deb51;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid rgba(61, 235, 81, .15)
}

.security-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .88rem;
    color: #c8cdd8;
    vertical-align: middle
}

.security-table tr:last-child td {
    border-bottom: none
}

.security-table tr:hover td {
    background: rgba(61, 235, 81, .03)
}

.security-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600
}

.status-ok {
    background: rgba(61, 235, 81, .15);
    color: #3deb51
}

.status-info {
    background: rgba(59, 130, 246, .15);
    color: #60a5fa
}

.faq-block {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    background: #13181f;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s
}

.faq-item.is-open {
    border-color: rgba(61, 235, 81, .25)
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #e8eaf0;
    font-size: .95rem;
    font-weight: 600;
    text-align: left;
    font-family: inherit
}

.faq-q:hover {
    background: rgba(61, 235, 81, .04)
}

.faq-icon {
    flex-shrink: 0;
    color: #3deb51;
    transition: transform .3s
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg)
}

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

.faq-item.is-open .faq-ans {
    max-height: 400px
}

.faq-ans-inner {
    padding: 0 20px 18px;
    font-size: .9rem;
    color: #8b9099;
    line-height: 1.7
}

.ftr-container {
    background: #1c202b;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.ftr-x7m3 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 20px 28px
}

.ftr-top-row {
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 40px;
    margin-bottom: 36px
}

.ftr-logo-link img {
    height: 40px;
    width: auto;
    margin-bottom: 12px
}

.ftr-country-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px
}

.ftr-flag {
    display: flex;
    align-items: center
}

.ftr-country-lbl {
    font-size: .85rem;
    color: #8b9099;
    font-weight: 500
}

.ftr-social-links {
    display: flex;
    gap: 8px;
    margin-bottom: 12px
}

.ftr-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: #8b9099;
    transition: background .2s, color .2s
}

.ftr-social-link:hover {
    background: rgba(61, 235, 81, .15);
    color: #3deb51
}

.ftr-email-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .83rem;
    color: #8b9099;
    transition: color .2s
}

.ftr-email-link:hover {
    color: #3deb51
}

.ftr-nav-col {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

.ftr-nav-group {
}

.ftr-nav-title {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6b7280;
    font-weight: 700;
    margin-bottom: 12px
}

.ftr-nav-list {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.ftr-nav-link {
    font-size: .875rem;
    color: #8b9099;
    transition: color .2s
}

.ftr-nav-link:hover {
    color: #3deb51
}

.ftr-trust-col {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.ftr-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.ftr-license-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: .65rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em
}

.ftr-trust-badge {
    padding: 5px 10px;
    background: rgba(255, 255, 255, .06);
    border-radius: 6px;
    font-size: .72rem;
    color: #8b9099;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: border-color .2s, color .2s
}

.ftr-trust-link:hover .ftr-trust-badge {
    border-color: rgba(61, 235, 81, .3);
    color: #c8cdd8
}

.ftr-age-badge {
    background: rgba(239, 68, 68, .1);
    color: #f87171;
    border-color: rgba(239, 68, 68, .2);
    font-size: .82rem;
    padding: 5px 12px
}

.ftr-providers-row {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 24px;
    margin-bottom: 20px
}

.ftr-providers-row .ftr-nav-title {
    margin-bottom: 12px
}

.ftr-providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.ftr-provider-chip {
    padding: 5px 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 6px;
    font-size: .8rem;
    color: #8b9099;
    font-weight: 500
}

.ftr-payments-row {
    margin-bottom: 24px
}

.ftr-payments-row .ftr-nav-title {
    margin-bottom: 12px
}

.ftr-pay-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.ftr-pay-chip {
    border-radius: 5px;
    overflow: hidden;
    opacity: .7;
    transition: opacity .2s
}

.ftr-pay-chip:hover {
    opacity: 1
}

.ftr-legal-row {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ftr-disclaimer {
    font-size: .77rem;
    color: #4b5563;
    line-height: 1.6
}

.ftr-copyright {
    font-size: .78rem;
    color: #4b5563
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(135deg, #1c202b, #0a1a0d);
    border-top: 1px solid rgba(61, 235, 81, .3);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94)
}

.sticky-widget.is-visible {
    transform: translateY(0)
}

.sw-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center
}

.sw-bonus-text {
    display: flex;
    align-items: center;
    gap: 12px
}

.sw-tag {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #6b7280;
    font-weight: 600
}

.sw-amount {
    font-size: 1.1rem;
    font-weight: 900;
    color: #3deb51
}

.sw-cta-btn {
    padding: 10px 24px;
    font-size: .9rem
}

.sw-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 6px;
    border-radius: 4px;
    transition: color .2s;
    display: flex;
    align-items: center;
    margin-left: 8px
}

.sw-close-btn:hover {
    color: #e8eaf0
}

.info-page-content {
    padding: 40px 0
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px
}

.info-breadcrumb {
    font-size: .83rem;
    color: #6b7280;
    margin-bottom: 24px;
    display: flex;
    gap: 6px;
    align-items: center
}

.info-breadcrumb a {
    color: #3deb51
}

.info-content-box {
    background: #13181f;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 40px
}

.info-h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.info-text-body {
    font-size: .95rem;
    line-height: 1.8;
    color: #c8cdd8
}

.info-text-body h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 10px
}

.info-text-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e8eaf0;
    margin: 18px 0 8px
}

.info-text-body p {
    margin-bottom: 14px
}

.info-text-body a {
    color: #3deb51
}

.info-text-body a:hover {
    text-decoration: underline
}

.info-text-body ul, .info-text-body ol {
    padding-left: 20px;
    margin-bottom: 14px
}

.info-text-body li {
    margin-bottom: 6px;
    line-height: 1.7
}

.info-text-body ul li {
    list-style: disc
}

.info-text-body ol li {
    list-style: decimal
}

.pulsate-anim {
    animation: pulsate 3s ease-in-out infinite
}

@keyframes pulsate {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(61, 235, 81, 0)
    }
    50% {
        box-shadow: 0 0 0 8px rgba(61, 235, 81, .15)
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.d-none {
    display: none !important
}

.text-green {
    color: #3deb51
}

.text-muted {
    color: #6b7280
}

.mb-0 {
    margin-bottom: 0
}

.mt-auto {
    margin-top: auto
}

.wp-block-unused {
    display: none
}

@media (max-width: 1024px) {
    .hdr-x9k2 {
        grid-template-columns:auto 1fr auto
    }

    .hdr-nav-block {
        display: none
    }

    .burger-btn {
        display: flex
    }

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

    .hero-bonus-card {
        display: none
    }

    .ftr-top-row {
        grid-template-columns:1fr 1fr;
        row-gap: 32px
    }

    .ftr-trust-col {
        grid-column: 1/-1
    }

    .demo-inner {
        grid-template-columns:1fr;
        min-height: auto
    }

    .demo-frame-col {
        padding-bottom: 56.25%;
        min-height: 0
    }

    .demo-cta-col {
        max-width: 100%;
        border-left: none;
        border-top: 1px solid rgba(61, 235, 81, .1);
        padding: 24px
    }
}

@media (max-width: 768px) {
    .hdr-x9k2 {
        grid-template-columns:auto 1fr auto auto
    }

    .games-grid {
        display: none
    }

    .mobile-games-slider {
        display: block
    }

    .info-table th:first-child, .info-table td:first-child {
        min-width: 150px
    }

    .ftr-top-row {
        grid-template-columns:1fr
    }

    .ftr-nav-col {
        grid-template-columns:1fr 1fr
    }

    .review-content-block {
        padding: 24px 20px
    }

    .sw-inner {
        flex-wrap: wrap;
        padding: 12px 16px;
        gap: 10px
    }

    .page-section {
        padding: 40px 16px
    }

    .section-hero {
        min-height: auto
    }

    .hero-inner {
        padding: 40px 16px
    }
}

@media (max-width: 480px) {
    .hdr-x9k2 {
        gap: 8px
    }

    .hdr-btns .btn {
        padding: 8px 12px;
        font-size: .78rem
    }

    .btn-primary, .btn-secondary {
        padding: 12px 22px;
        font-size: .9rem
    }

    .mobile-nav-list {
        grid-template-columns:1fr
    }

    .ftr-nav-col {
        grid-template-columns:1fr
    }

    .info-content-box {
        padding: 24px 16px
    }

    .sw-bonus-text {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start
    }
}

@media (max-width: 1024px) {
    .hdr-box,
    .hero-inner,
    .page-section,
    .ftr-x7m3,
    .info-container {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hdr-x9k2 {
        grid-template-columns: auto 1fr auto;
        gap: 14px;
    }

    .hdr-nav-block {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .hero-text-col {
        width: 100%;
        min-width: 0;
    }

    .hero-bonus-card {
        display: none;
    }

    .games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .demo-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .demo-frame-col {
        width: 100%;
        min-height: 0;
        padding-bottom: 56.25%;
    }

    .demo-cta-col {
        width: 100%;
        max-width: none;
        min-width: 0;
        border-left: 0;
        border-top: 1px solid rgba(61, 235, 81, .1);
    }

    .ftr-top-row {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .ftr-trust-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body.bdy-x4p1 {
        font-size: 15px;
    }

    .site-wrapper,
    .main-content,
    .section-hero,
    .page-section,
    .hero-inner,
    .video-block,
    .demo-block,
    .review-content-block,
    .faq-block,
    .info-page-content,
    .info-container,
    .info-content-box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hdr-container {
        width: 100%;
    }

    .hdr-box {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hdr-x9k2 {
        display: flex;
        align-items: center;
        min-height: 58px;
        gap: 8px;
    }

    .hdr-logo-link {
        flex: 0 1 auto;
        min-width: 0;
        margin-right: auto;
    }

    .hdr-logo-link img {
        width: auto;
        max-width: 125px;
        height: 38px;
    }

    .hdr-nav-block {
        display: none;
    }

    .hdr-actions-block {
        display: flex;
        align-items: center;
        gap: 7px;
        flex-shrink: 0;
    }

    .hdr-online-count {
        display: none;
    }

    .hdr-btns {
        display: flex;
        gap: 6px;
    }

    .hdr-btns .btn {
        padding: 8px 11px;
        font-size: .75rem;
        border-radius: 7px;
    }

    .burger-btn {
        display: flex;
        flex-shrink: 0;
        padding: 7px;
    }

    .burger-line {
        width: 21px;
    }

    .mobile-menu {
        width: 100%;
    }

    .mobile-nav-list {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 10px 14px 14px;
        gap: 3px;
    }

    .mobile-nav-link {
        width: 100%;
        padding: 11px 12px;
        font-size: .88rem;
    }

    .section-hero {
        min-height: auto;
        align-items: flex-start;
    }

    .hero-bg {
        background-position: center;
    }

    .hero-inner {
        display: block;
        padding: 42px 16px 46px;
    }

    .hero-text-col {
        width: 100%;
        max-width: none;
    }

    .hero-eyebrow {
        max-width: 100%;
        margin-bottom: 16px;
        padding: 5px 11px;
        font-size: .68rem;
        line-height: 1.4;
        white-space: normal;
    }

    .hero-h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.12;
        margin-bottom: 14px;
        overflow-wrap: anywhere;
    }

    .hero-h1 br {
        display: none;
    }

    .hero-sub {
        width: 100%;
        max-width: none;
        font-size: .95rem;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .hero-btns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 10px;
    }

    .hero-btns .btn {
        width: 100%;
        min-width: 0;
        padding: 13px 10px;
        font-size: .88rem;
        text-align: center;
    }

    .hero-bonus-card {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .page-section {
        padding: 38px 16px !important;
    }

    .page-section[style*="padding-top:0"] {
        padding-top: 0 !important;
    }

    .section-title {
        font-size: 1.4rem;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .section-subtitle {
        font-size: .9rem;
        line-height: 1.55;
        margin-bottom: 22px;
    }

    .section-divider {
        margin-bottom: 18px;
    }

    .info-table-wrap,
    .reg-steps-wrap,
    .security-table-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        border-radius: 10px;
    }

    .info-table {
        min-width: 0;
        width: 100%;
        table-layout: fixed;
    }

    .info-table th,
    .info-table td {
        padding: 11px 10px;
        font-size: .8rem;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .info-table th:first-child,
    .info-table td:first-child {
        width: 43%;
        min-width: 0;
    }

    .info-table th:last-child,
    .info-table td:last-child {
        width: 57%;
    }

    .info-table .td-param {
        white-space: normal;
        align-items: flex-start;
        gap: 7px;
        line-height: 1.4;
    }

    .info-table .td-param svg {
        width: 14px;
        height: 14px;
        margin-top: 2px;
    }

    .info-table .td-val {
        line-height: 1.45;
        overflow-wrap: anywhere;
    }

    .video-block {
        border-radius: 12px;
    }

    .video-inner {
        padding: 10px;
    }

    .video-frame-wrap {
        width: 100%;
        border-radius: 8px;
    }

    .video-frame-wrap iframe {
        border-radius: 8px;
    }

    .games-grid {
        display: none;
    }

    .mobile-games-slider {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .games-slider-track {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        transform: none !important;
        transition: none !important;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .games-slider-track::-webkit-scrollbar {
        display: none;
    }

    .games-slider-track .game-card {
        flex: 0 0 82%;
        width: 82%;
        min-width: 82%;
        max-width: 82%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .game-card:hover {
        transform: none;
    }

    .game-card-img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .game-card-body {
        padding: 13px;
        gap: 8px;
    }

    .game-card-name {
        font-size: .9rem;
    }

    .game-card .btn {
        width: 100%;
    }

    .slider-nav {
        margin-top: 12px;
    }

    .demo-block {
        border-radius: 12px;
    }

    .demo-inner {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .demo-frame-col {
        width: 100%;
        height: auto;
        min-height: 0;
        padding-bottom: 56.25%;
    }

    .demo-frame-col iframe {
        width: 100%;
        height: 100%;
    }

    .demo-cta-col {
        width: 100%;
        max-width: none;
        min-width: 0;
        padding: 20px 16px;
        gap: 12px;
        border-left: 0;
        border-top: 1px solid rgba(61, 235, 81, .1);
    }

    .demo-cta-title {
        font-size: 1.2rem;
    }

    .demo-cta-sub {
        font-size: .84rem;
    }

    .demo-cta-col .btn {
        width: 100% !important;
    }

    .review-content-block {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .review-author-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 16px;
        gap: 12px;
        margin-bottom: 22px;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .author-info-block {
        width: 100%;
        min-width: 0;
    }

    .author-name {
        font-size: .95rem;
    }

    .author-title {
        font-size: .78rem;
        overflow-wrap: anywhere;
    }

    .author-bio {
        font-size: .8rem;
        line-height: 1.55;
    }

    .author-links {
        flex-wrap: wrap;
    }

    .review-text-body {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        font-size: .9rem;
        line-height: 1.7;
        overflow-wrap: anywhere;
    }

    .review-text-body h2 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin: 24px 0 10px;
    }

    .review-text-body h3 {
        font-size: 1.05rem;
        line-height: 1.35;
    }

    .review-text-body p,
    .review-text-body li,
    .review-text-body a {
        overflow-wrap: anywhere;
    }

    .review-text-body ul,
    .review-text-body ol {
        padding-left: 18px;
    }

    .review-text-body img,
    .review-text-body video,
    .review-text-body iframe {
        max-width: 100%;
    }

    .review-text-body table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .review-text-body table th,
    .review-text-body table td {
        padding: 10px 12px;
        font-size: .8rem;
    }

    .review-text-body blockquote {
        margin: 16px 0;
        padding: 11px 14px;
    }

    .reg-steps-wrap {
        border: 1px solid rgba(255, 255, 255, .07);
        border-radius: 10px;
    }

    .reg-steps-table {
        min-width: 0;
        width: 100%;
        table-layout: fixed;
    }

    .reg-steps-table thead {
        display: none;
    }

    .reg-steps-table tbody,
    .reg-steps-table tr,
    .reg-steps-table td {
        display: block;
        width: 100%;
    }

    .reg-steps-table tr {
        position: relative;
        padding: 16px 14px 16px 58px;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .reg-steps-table tr:last-child {
        border-bottom: 0;
    }

    .reg-steps-table td {
        padding: 0;
        border: 0;
    }

    .reg-steps-table td:first-child {
        position: absolute;
        top: 16px;
        left: 14px;
        width: 32px;
    }

    .reg-steps-table .step-title-cell {
        width: 100%;
        margin-bottom: 5px;
        font-size: .9rem;
    }

    .reg-steps-table .step-desc-cell {
        font-size: .82rem;
        line-height: 1.55;
    }

    .step-num {
        width: 32px;
        height: 32px;
    }

    .security-table-wrap {
        border: 1px solid rgba(255, 255, 255, .07);
        border-radius: 10px;
    }

    .security-table {
        min-width: 0;
        width: 100%;
    }

    .security-table thead {
        display: none;
    }

    .security-table tbody,
    .security-table tr,
    .security-table td {
        display: block;
        width: 100%;
    }

    .security-table tr {
        padding: 15px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .security-table tr:last-child {
        border-bottom: 0;
    }

    .security-table td {
        padding: 0;
        border: 0;
        font-size: .83rem;
        line-height: 1.5;
    }

    .security-table td:first-child {
        color: #fff;
        font-weight: 700;
        font-size: .9rem;
        margin-bottom: 5px;
    }

    .security-table td:nth-child(2) {
        color: #8b9099;
        margin-bottom: 10px;
    }

    .security-table td:nth-child(3) {
        margin-top: 4px;
    }

    .security-status {
        padding: 4px 9px;
        font-size: .72rem;
    }

    .faq-block {
        gap: 8px;
    }

    .faq-item {
        width: 100%;
        border-radius: 9px;
    }

    .faq-q {
        width: 100%;
        padding: 14px;
        gap: 10px;
        font-size: .88rem;
        line-height: 1.4;
    }

    .faq-icon {
        width: 17px;
        height: 17px;
    }

    .faq-ans-inner {
        padding: 0 14px 15px;
        font-size: .84rem;
        line-height: 1.65;
    }

    .ftr-x7m3 {
        padding: 36px 16px 24px;
    }

    .ftr-top-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 28px;
    }

    .ftr-logo-link img {
        max-width: 150px;
    }

    .ftr-nav-col {
        grid-template-columns: 1fr 1fr;
        gap: 22px 16px;
    }

    .ftr-trust-col {
        grid-column: auto;
        width: 100%;
    }

    .ftr-badges-row,
    .ftr-providers-list,
    .ftr-pay-list {
        gap: 7px;
    }

    .ftr-provider-chip,
    .ftr-trust-badge {
        font-size: .7rem;
        padding: 5px 9px;
    }

    .ftr-disclaimer,
    .ftr-copyright {
        font-size: .72rem;
    }

    .sticky-widget {
        width: 100%;
    }

    .sw-inner {
        width: 100%;
        padding: 10px 12px;
        gap: 8px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .sw-bonus-text {
        min-width: 0;
        flex: 1;
        gap: 4px;
        flex-direction: column;
        align-items: flex-start;
    }

    .sw-tag {
        font-size: .62rem;
    }

    .sw-amount {
        font-size: .85rem;
        line-height: 1.2;
    }

    .sw-cta-btn {
        flex-shrink: 0;
        padding: 9px 12px;
        font-size: .75rem;
    }

    .sw-close-btn {
        flex-shrink: 0;
        margin-left: 0;
        padding: 4px;
    }

    .info-page-content {
        padding: 28px 0;
    }

    .info-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .info-breadcrumb {
        width: 100%;
        flex-wrap: wrap;
        margin-bottom: 18px;
        font-size: .78rem;
    }

    .info-content-box {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .info-h1 {
        font-size: 1.45rem;
        line-height: 1.3;
        margin-bottom: 22px;
        padding-bottom: 16px;
    }

    .info-text-body {
        width: 100%;
        max-width: 100%;
        font-size: .9rem;
        line-height: 1.7;
        overflow-wrap: anywhere;
    }

    .info-text-body h2 {
        font-size: 1.15rem;
        line-height: 1.35;
    }

    .info-text-body h3 {
        font-size: 1rem;
    }

    .info-text-body img,
    .info-text-body iframe,
    .info-text-body video {
        max-width: 100%;
        height: auto;
    }

    .info-text-body table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .hdr-box {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hdr-x9k2 {
        min-height: 56px;
        gap: 5px;
    }

    .hdr-logo-link img {
        max-width: 105px;
        height: 34px;
    }

    .hdr-actions-block {
        gap: 5px;
    }

    .hdr-btns {
        gap: 4px;
    }

    .hdr-btns .btn {
        padding: 7px 8px;
        font-size: .68rem;
    }

    .burger-btn {
        padding: 6px;
    }

    .burger-line {
        width: 19px;
    }

    .hero-inner {
        padding: 34px 14px 38px;
    }

    .hero-eyebrow {
        font-size: .62rem;
        padding: 5px 9px;
    }

    .hero-h1 {
        font-size: 1.75rem;
    }

    .hero-sub {
        font-size: .88rem;
        line-height: 1.6;
    }

    .hero-btns {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-btns .btn {
        min-height: 44px;
    }

    .page-section {
        padding-left: 14px !important;
        padding-right: 14px !important;
        padding-bottom: 32px !important;
    }

    .section-title {
        font-size: 1.28rem;
    }

    .section-subtitle {
        font-size: .84rem;
        margin-bottom: 18px;
    }

    .info-table th,
    .info-table td {
        padding: 9px 7px;
        font-size: .72rem;
    }

    .info-table th:first-child,
    .info-table td:first-child {
        width: 42%;
    }

    .info-table th:last-child,
    .info-table td:last-child {
        width: 58%;
    }

    .info-table .td-param {
        gap: 5px;
        font-size: .71rem;
    }

    .info-table .td-param svg {
        display: none;
    }

    .video-inner {
        padding: 6px;
    }

    .games-slider-track {
        gap: 10px;
    }

    .games-slider-track .game-card {
        flex: 0 0 calc(100% - 26px);
        width: calc(100% - 26px);
        min-width: calc(100% - 26px);
        max-width: calc(100% - 26px);
    }

    .game-card-body {
        padding: 12px;
    }

    .demo-cta-col {
        padding: 18px 14px;
    }

    .review-content-block {
        padding: 16px 13px;
    }

    .review-author-card {
        padding: 14px;
    }

    .review-text-body {
        font-size: .86rem;
    }

    .review-text-body h2 {
        font-size: 1.12rem;
    }

    .review-text-body h3 {
        font-size: 1rem;
    }

    .review-text-body table {
        font-size: .75rem;
    }

    .reg-steps-table tr {
        padding: 14px 12px 14px 54px;
    }

    .reg-steps-table td:first-child {
        top: 14px;
        left: 12px;
    }

    .security-table tr {
        padding: 14px 12px;
    }

    .faq-q {
        padding: 13px 12px;
        font-size: .84rem;
    }

    .faq-ans-inner {
        padding: 0 12px 14px;
        font-size: .8rem;
    }

    .ftr-x7m3 {
        padding: 30px 14px 22px;
    }

    .ftr-nav-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ftr-email-link {
        overflow-wrap: anywhere;
    }

    .sw-inner {
        padding: 8px 10px;
    }

    .sw-tag {
        display: none;
    }

    .sw-amount {
        font-size: .78rem;
    }

    .sw-cta-btn {
        padding: 8px 9px;
        font-size: .68rem;
    }

    .info-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .info-content-box {
        padding: 20px 14px;
    }

    .info-h1 {
        font-size: 1.3rem;
    }
}

@media (max-width: 360px) {
    .hdr-logo-link img {
        max-width: 90px;
    }

    .hdr-btns .btn-login {
        display: none;
    }

    .hdr-btns .btn {
        padding: 7px 8px;
    }

    .hero-h1 {
        font-size: 1.55rem;
    }

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

    .info-table th,
    .info-table td {
        font-size: .68rem;
        padding: 8px 6px;
    }

    .games-slider-track .game-card {
        flex-basis: calc(100% - 18px);
        width: calc(100% - 18px);
        min-width: calc(100% - 18px);
        max-width: calc(100% - 18px);
    }

    .review-content-block {
        padding: 14px 11px;
    }

    .ftr-x7m3 {
        padding-left: 12px;
        padding-right: 12px;
    }
}