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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Rubik', sans-serif;
    background: #000a12;
    color: #e8eaf0;
    line-height: 1.7;
    overflow-x: hidden
}

a {
    color: #F9C23C;
    text-decoration: none;
    transition: color .25s
}

a:hover {
    color: #ffd76e
}

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

ul {
    list-style: none
}

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

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

.x9k4-container--wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 18px;
    width: 100%
}

/* ===== HEADER ===== */
.x9k4-header {
    background: #262A34;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #F9C23C22
}

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

.x9k4-logo img {
    height: 48px;
    width: auto;
    object-fit: contain
}

.x9k4-logo:hover img {
    opacity: .85;
    transition: opacity .2s
}

.x9k4-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center
}

.x9k4-nav__link {
    color: #c8ccd8;
    font-size: .88rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color .2s, background .2s;
    white-space: nowrap
}

.x9k4-nav__link:hover {
    color: #F9C23C;
    background: #ffffff0d
}

.x9k4-online {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    color: #9ba3b8;
    white-space: nowrap
}

.x9k4-online__dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    display: inline-block;
    animation: dotBlink 1.5s ease-in-out infinite
}

.x9k4-online__count {
    color: #e8eaf0;
    font-weight: 600
}

.x9k4-header-btns {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s, background .18s, opacity .18s;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px);
    opacity: .93
}

.btn:active {
    transform: scale(.97)
}

.btn--primary {
    background: #F9C23C;
    color: #0d0f14;
    padding: 10px 20px;
    font-size: .9rem;
    box-shadow: 0 4px 14px #F9C23C44
}

.btn--primary:hover {
    background: #ffd76e;
    color: #0d0f14;
    box-shadow: 0 6px 20px #F9C23C66
}

.btn--secondary {
    background: #3C3C3C;
    color: #e8eaf0;
    padding: 10px 20px;
    font-size: .9rem;
    border: 1px solid #555
}

.btn--secondary:hover {
    background: #4a4a4a
}

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

.btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: 10px
}

.btn--xl {
    padding: 16px 40px;
    font-size: 1.15rem;
    border-radius: 12px
}

.btn--full {
    width: 100%
}

.btn--glow {
    animation: glowBtn 2s ease-in-out infinite
}

/* ===== BURGER ===== */
.x9k4-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    align-self: center
}

.x9k4-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8eaf0;
    border-radius: 2px;
    transition: all .3s
}

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

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

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

.x9k4-mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #262A34;
    z-index: 999;
    padding: 18px;
    border-bottom: 2px solid #F9C23C33;
    flex-direction: column;
    gap: 8px
}

.x9k4-mobile-nav.is-open {
    display: flex
}

.x9k4-mobile-nav .x9k4-nav__link {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 1rem
}

/* ===== HERO SLIDER ===== */
.x9k4-hero {
    position: relative;
    overflow: hidden;
    background: #000a12
}

.x9k4-slider {
    position: relative;
    width: 100%;
    height: 500px
}

.x9k4-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
    pointer-events: none
}

.x9k4-slide.is-active {
    opacity: 1;
    pointer-events: auto
}

.x9k4-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroKen 8s ease-in-out alternate infinite
}

.x9k4-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000a12ee 40%, #000a1200 100%)
}

.x9k4-slide__content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 520px
}

.x9k4-slide__tag {
    background: #F9C23C;
    color: #0d0f14;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 14px
}

.x9k4-slide__title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px #000a12cc
}

.x9k4-slide__sub {
    font-size: 1.05rem;
    color: #c8ccd8;
    margin-bottom: 22px
}

.x9k4-slider__dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2
}

.x9k4-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff44;
    border: none;
    cursor: pointer;
    transition: background .3s, transform .3s;
    padding: 0
}

.x9k4-dot.is-active {
    background: #F9C23C;
    transform: scale(1.25)
}

.x9k4-slider__prev, .x9k4-slider__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #262A34cc;
    border: 1px solid #F9C23C44;
    color: #F9C23C;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    font-size: 1.2rem;
    transition: background .2s;
    backdrop-filter: blur(4px)
}

.x9k4-slider__prev {
    left: 16px
}

.x9k4-slider__next {
    right: 16px
}

.x9k4-slider__prev:hover, .x9k4-slider__next:hover {
    background: #F9C23C;
    color: #0d0f14
}

/* ===== SECTION BASE ===== */
.x9k4-section {
    padding: 56px 0
}

.x9k4-section--alt {
    background: #06111c
}

.x9k4-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    display: inline-block
}

.x9k4-section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #F9C23C;
    border-radius: 2px;
    margin-top: 6px
}

.x9k4-section-sub {
    color: #9ba3b8;
    font-size: .95rem;
    margin-bottom: 32px;
    margin-top: 10px
}

.x9k4-section-header {
    margin-bottom: 36px
}

.x9k4-winners {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.x9k4-winners table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    min-width: 420px
}

.x9k4-winners th {
    background: #1a2030;
    color: #F9C23C;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid #F9C23C44;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .6px
}

.x9k4-winners td {
    padding: 11px 16px;
    text-align: left;
    border-bottom: 1px solid #1a2030;
    color: #c8ccd8;
    transition: background .2s
}

.x9k4-winners tr:hover td {
    background: #0e1826
}

.x9k4-winners .rnk {
    color: #F9C23C;
    font-weight: 700;
    width: 40px
}

.x9k4-winners .rnk-1 {
    color: #ffd700
}

.x9k4-winners .rnk-2 {
    color: #c0c0c0
}

.x9k4-winners .rnk-3 {
    color: #cd7f32
}

.x9k4-winners .nick {
    color: #e8eaf0;
    font-weight: 500
}

.x9k4-winners .amt {
    color: #4cdb7c;
    font-weight: 600;
    text-align: right
}

.x9k4-winners-wrap {
    background: #0d1420;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #1e2d42
}

.x9k4-video-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px #000a1288;
    border: 1px solid #1e2d42;
    position: relative;
    padding-top: 56.25%;
    background: #06111c
}

.x9k4-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.x9k4-author-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #0d1420;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #1e2d42;
    margin-top: 22px
}

.x9k4-author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F9C23C44;
    flex-shrink: 0;
    background: #1a2030
}

.x9k4-author-name {
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 4px
}

.x9k4-author-bio {
    color: #9ba3b8;
    font-size: .88rem;
    line-height: 1.6
}

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

.x9k4-author-links a {
    color: #F9C23C;
    font-size: .83rem;
    text-decoration: none;
    border-bottom: 1px dashed #F9C23C44
}

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

.x9k4-game-card {
    background: #0d1420;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #1e2d42;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer
}

.x9k4-game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px #000a12bb
}

.x9k4-game-card__img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover
}

.x9k4-game-card__body {
    padding: 14px
}

.x9k4-game-card__name {
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    font-size: .97rem
}

.x9k4-game-card__provider {
    color: #9ba3b8;
    font-size: .8rem;
    margin-bottom: 12px
}

.x9k4-game-card__actions {
    display: flex;
    gap: 8px
}

.x9k4-popup-overlay {
    position: fixed;
    inset: 0;
    background: #000a12cc;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    backdrop-filter: blur(6px)
}

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

.x9k4-popup {
    background: #0d1420;
    border-radius: 18px;
    border: 1px solid #1e2d42;
    width: 90%;
    max-width: 840px;
    overflow: hidden;
    position: relative;
    transform: scale(.95);
    transition: transform .3s
}

.x9k4-popup-overlay.is-open .x9k4-popup {
    transform: scale(1)
}

.x9k4-popup__close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: #3C3C3C;
    border: none;
    color: #e8eaf0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background .2s
}

.x9k4-popup__close:hover {
    background: #F9C23C;
    color: #0d0f14
}

.x9k4-popup__title {
    padding: 16px 20px;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid #1e2d42;
    font-size: 1.1rem
}

.x9k4-popup__iframe-wrap {
    padding-top: 60%;
    position: relative
}

.x9k4-popup__iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none
}

.x9k4-popup__notice {
    padding: 14px 20px;
    text-align: center;
    font-size: .85rem;
    color: #9ba3b8
}

.x9k4-slot-machine {
    background: #0d1420;
    border-radius: 18px;
    border: 2px solid #F9C23C33;
    padding: 32px 24px;
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
    box-shadow: 0 0 40px #F9C23C11
}

.x9k4-slot-machine h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #F9C23C;
    margin-bottom: 6px
}

.x9k4-slot-machine p {
    color: #9ba3b8;
    font-size: .9rem;
    margin-bottom: 24px
}

.x9k4-reels {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px
}

.x9k4-reel {
    width: 90px;
    height: 110px;
    background: #06111c;
    border-radius: 12px;
    border: 2px solid #1e2d42;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.x9k4-reel__inner {
    font-size: 3rem;
    line-height: 1;
    transition: none;
    will-change: transform
}

.x9k4-reel__inner.spinning {
    animation: reelSpin .08s linear infinite
}

.x9k4-slot-result {
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px
}

.x9k4-slot-result__win {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4cdb7c;
    animation: fadeIn .4s ease
}

.x9k4-slot-result__lose {
    font-size: 1rem;
    color: #9ba3b8;
    animation: fadeIn .4s ease
}

/* ===== CONTENT REVIEW BLOCK ===== */
.x9k4-content-review {
    background: #0d1420;
    border-radius: 16px;
    border: 1px solid #1e2d42;
    padding: 36px 40px
}

.x9k4-content-review h2, .x9k4-content-review h3, .x9k4-content-review h4 {
    color: #fff;
    margin: 24px 0 10px;
    line-height: 1.3
}

.x9k4-content-review h2 {
    font-size: 1.5rem
}

.x9k4-content-review h3 {
    font-size: 1.2rem
}

.x9k4-content-review h4 {
    font-size: 1.05rem
}

.x9k4-content-review p {
    color: #c8ccd8;
    margin-bottom: 14px;
    line-height: 1.8
}

.x9k4-content-review a {
    color: #F9C23C;
    text-decoration: underline
}

.x9k4-content-review ul, .x9k4-content-review ol {
    margin: 12px 0 16px 20px;
    color: #c8ccd8
}

.x9k4-content-review ul {
    list-style: disc
}

.x9k4-content-review ol {
    list-style: decimal
}

.x9k4-content-review li {
    margin-bottom: 6px;
    line-height: 1.7
}

.x9k4-content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block
}

.x9k4-content-review table th {
    background: #1a2030;
    color: #F9C23C;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid #1e2d42
}

.x9k4-content-review table td {
    padding: 10px 14px;
    border: 1px solid #1e2d42;
    color: #c8ccd8;
    text-align: left
}

.x9k4-content-review strong {
    color: #e8eaf0
}

.x9k4-content-review em {
    color: #b0bec8
}

.x9k4-content-review blockquote {
    border-left: 4px solid #F9C23C;
    padding: 12px 20px;
    background: #06111c;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    color: #b0bec8;
    font-style: italic
}

/* ===== REVIEWS ===== */
.x9k4-reviews-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px
}

.x9k4-review-card {
    background: #0d1420;
    border-radius: 14px;
    border: 1px solid #1e2d42;
    padding: 22px;
    transition: border-color .25s
}

.x9k4-review-card:hover {
    border-color: #F9C23C44
}

.x9k4-review-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
}

.x9k4-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1a2030;
    border: 2px solid #F9C23C33;
    flex-shrink: 0;
    object-fit: cover
}

.x9k4-review-card__name {
    font-weight: 700;
    color: #e8eaf0;
    font-size: .95rem
}

.x9k4-review-card__date {
    color: #6b7491;
    font-size: .78rem
}

.x9k4-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px
}

.x9k4-star {
    fill: #F9C23C;
    width: 16px;
    height: 16px
}

.x9k4-review-card__text {
    color: #b0bec8;
    font-size: .88rem;
    line-height: 1.7
}

.x9k4-review-form {
    background: #0d1420;
    border-radius: 16px;
    border: 1px solid #1e2d42;
    padding: 32px
}

.x9k4-review-form h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 22px
}

.x9k4-form-group {
    margin-bottom: 18px
}

.x9k4-form-group label {
    display: block;
    color: #9ba3b8;
    font-size: .85rem;
    margin-bottom: 6px;
    font-weight: 500
}

.x9k4-form-group input, .x9k4-form-group textarea {
    width: 100%;
    background: #06111c;
    border: 1px solid #1e2d42;
    border-radius: 8px;
    padding: 12px 14px;
    color: #e8eaf0;
    font-family: 'Rubik', sans-serif;
    font-size: .9rem;
    transition: border-color .2s;
    outline: none;
    resize: vertical
}

.x9k4-form-group input::placeholder, .x9k4-form-group textarea::placeholder {
    color: #4a5370
}

.x9k4-form-group input:focus, .x9k4-form-group textarea:focus {
    border-color: #F9C23C66
}

.x9k4-form-success {
    display: none;
    background: #0d2b1c;
    border: 1px solid #2ecc7166;
    border-radius: 10px;
    padding: 16px 20px;
    color: #4cdb7c;
    font-size: .95rem;
    margin-top: 14px;
    align-items: center;
    gap: 10px
}

.x9k4-form-success.is-visible {
    display: flex
}

/* =====  ===== */
.x9k4-footer {
    background: #262A34;
    border-top: 2px solid #F9C23C22;
    padding: 42px 0 24px
}

.x9k4-footer__grid {
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 32px
}

.x9k4-footer__logo img {
    height: 44px;
    width: auto
}

.x9k4-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.x9k4-footer__nav a {
    color: #9ba3b8;
    font-size: .85rem;
    padding: 5px 10px;
    border-radius: 6px;
    transition: color .2s
}

.x9k4-footer__nav a:hover {
    color: #F9C23C
}

.x9k4-footer__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 22px
}

.x9k4-footer__logo-badge {
    background: #1a2030;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: .75rem;
    color: #9ba3b8;
    border: 1px solid #2a3548;
    white-space: nowrap;
    font-weight: 600
}

.x9k4-footer__divider {
    border: none;
    border-top: 1px solid #1e2d42;
    margin: 24px 0
}

.x9k4-footer__legal {
    color: #6b7491;
    font-size: .78rem;
    line-height: 1.6;
    text-align: center
}

.x9k4-footer__legal a {
    color: #9ba3b8;
    text-decoration: underline;
    text-decoration-color: #2a3548
}

.x9k4-footer__copyright {
    color: #6b7491;
    font-size: .78rem;
    text-align: center;
    margin-top: 12px
}

.x9k4-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #0d1420, #1a2030);
    border-top: 2px solid #F9C23C88;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transform: translateY(100%);
    transition: transform .5s cubic-bezier(.34, 1.56, .64, 1);
    animation: widgetBounce 3s 3s ease-in-out infinite
}

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

.x9k4-widget__text {
    color: #e8eaf0;
    font-size: .88rem;
    line-height: 1.4
}

.x9k4-widget__text strong {
    color: #F9C23C;
    display: block;
    font-size: 1.05rem
}

.x9k4-widget__close {
    background: none;
    border: none;
    color: #6b7491;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px 8px;
    flex-shrink: 0;
    line-height: 1
}

.x9k4-widget__close:hover {
    color: #e8eaf0
}

.x9k4-games-slider-wrap {
    display: none;
    overflow-x: auto;
    gap: 14px;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory
}

.x9k4-games-slider-wrap .x9k4-game-card {
    min-width: 220px;
    scroll-snap-align: start
}

.x9k4-games-slider-wrap::-webkit-scrollbar {
    height: 4px
}

.x9k4-games-slider-wrap::-webkit-scrollbar-track {
    background: #06111c
}

.x9k4-games-slider-wrap::-webkit-scrollbar-thumb {
    background: #F9C23C44;
    border-radius: 2px
}

.x9k4-two-col {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 28px;
    align-items: start
}

.x9k4-three-col {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 22px
}

/* =====  ===== */
.x9k4-badge {
    display: inline-block;
    background: #F9C23C22;
    color: #F9C23C;
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid #F9C23C44;
    text-transform: uppercase;
    letter-spacing: .5px
}

.x9k4-green-badge {
    background: #0d2b1c;
    color: #4cdb7c;
    border-color: #2ecc7144
}

.x9k4-card {
    background: #0d1420;
    border-radius: 14px;
    border: 1px solid #1e2d42;
    padding: 24px
}

.x9k4-divider {
    border: none;
    border-top: 1px solid #1e2d42;
    margin: 40px 0
}

.ta-center {
    text-align: center
}

.ta-right {
    text-align: right
}

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

.mt-12 {
    margin-top: 12px
}

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

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

.mb-24 {
    margin-bottom: 24px
}

.wp-content-area, .elementor-section, .entry-content, .wp-block-group, .yoast-seo-metabox {
    display: none
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

#wpadminbar {
    display: none !important
}

.nf-xk7 {
    opacity: 0;
    position: absolute;
    pointer-events: none;
    height: 0;
    width: 0
}

/**/
@media (max-width: 1024px) {
    .x9k4-games-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .x9k4-two-col {
        grid-template-columns:1fr
    }
}

@media (max-width: 768px) {
    .x9k4-slider {
        height: 340px
    }

    .x9k4-slide__title {
        font-size: 1.5rem
    }

    .x9k4-slide__sub {
        font-size: .9rem
    }

    .x9k4-slide__content {
        max-width: 88%;
        left: 4%
    }

    .x9k4-section {
        padding: 38px 0
    }

    .x9k4-section-title {
        font-size: 1.4rem
    }

    .x9k4-header__inner {
        grid-template-columns:auto 1fr auto
    }

    .x9k4-nav {
        display: none
    }

    .x9k4-online {
        display: none
    }

    .x9k4-burger {
        display: flex
    }

    .x9k4-games-grid {
        display: none
    }

    .x9k4-games-slider-wrap {
        display: flex
    }

    .x9k4-footer__grid {
        grid-template-columns:1fr
    }

    .x9k4-content-review {
        padding: 22px 18px
    }

    .x9k4-three-col {
        grid-template-columns:1fr
    }

    .x9k4-reel {
        width: 72px;
        height: 90px
    }

    .x9k4-reel__inner {
        font-size: 2.4rem
    }
}

@media (max-width: 480px) {
    .x9k4-slider {
        height: 260px
    }

    .x9k4-slide__title {
        font-size: 1.2rem
    }

    .x9k4-slide__overlay {
        background: linear-gradient(180deg, #000a12aa 0%, #000a12cc 100%)
    }

    .btn--xl {
        padding: 12px 24px;
        font-size: .95rem
    }

    .x9k4-reel {
        width: 60px;
        height: 76px
    }

    .x9k4-reel__inner {
        font-size: 2rem
    }

    .x9k4-slot-machine {
        padding: 22px 14px
    }

    .x9k4-widget {
        padding: 10px 14px
    }
}

@media (max-width: 768px) {

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

    body {
        font-size: 15px;
    }

    .x9k4-wrapper,
    .site,
    main,
    .x9k4-container,
    .x9k4-container--wide {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .x9k4-container,
    .x9k4-container--wide {
        padding-left: 14px;
        padding-right: 14px;
    }

    .x9k4-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .x9k4-header__inner {
        min-height: 58px;
        grid-template-columns:auto 1fr auto;
        gap: 10px;
        padding: 8px 0;
    }

    .x9k4-logo img {
        height: 36px;
    }

    .x9k4-nav,
    .x9k4-online {
        display: none;
    }

    .x9k4-burger {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: #1a2030;
        border: 1px solid #2a3548;
        margin-left: auto;
    }

    .x9k4-burger span {
        width: 20px;
    }

    .x9k4-mobile-nav {
        position: fixed;
        top: 58px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        padding: 16px 14px;
        overflow-y: auto;
        background: #262A34;
        border-top: 1px solid rgba(249, 194, 60, .18);
    }

    .x9k4-mobile-nav.is-open {
        display: flex;
    }

    .x9k4-mobile-nav .x9k4-nav__link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 14px;
        background: #0d1420;
        border: 1px solid #1e2d42;
        color: #fff;
        border-radius: 12px;
        font-size: .94rem;
    }

    .btn,
    .btn--sm,
    .btn--lg,
    .btn--xl,
    .btn--primary,
    .btn--secondary {
        width: 100%;
        min-height: 44px;
        padding: 11px 14px;
        white-space: normal;
        text-align: center;
    }

    .x9k4-slider {
        height: auto;
        min-height: 420px;
    }

    .x9k4-slide {
        min-height: 420px;
    }

    .x9k4-slide__img {
        height: 420px;
        object-fit: cover;
        object-position: center;
    }

    .x9k4-slide__overlay {
        background: rgba(0, 10, 18, .78);
    }

    .x9k4-slide__content {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
        top: 50%;
        padding: 0 46px;
        text-align: center;
    }

    .x9k4-slide__tag {
        margin: 0 auto 12px;
        font-size: .68rem;
        line-height: 1.25;
    }

    .x9k4-slide__title {
        font-size: 1.55rem;
        line-height: 1.18;
        margin-bottom: 10px;
    }

    .x9k4-slide__sub {
        font-size: .9rem;
        line-height: 1.55;
        margin-bottom: 18px;
    }

    .x9k4-slider__prev,
    .x9k4-slider__next {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .x9k4-slider__prev {
        left: 8px;
    }

    .x9k4-slider__next {
        right: 8px;
    }

    .x9k4-slider__dots {
        bottom: 14px;
    }

    .x9k4-section {
        padding: 34px 0;
    }

    .x9k4-section-header {
        margin-bottom: 22px;
        text-align: center;
    }

    .x9k4-section-title {
        font-size: 1.3rem;
        line-height: 1.25;
    }

    .x9k4-section-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .x9k4-section-sub {
        font-size: .9rem;
        line-height: 1.55;
        margin-bottom: 0;
    }

    .x9k4-three-col,
    .x9k4-two-col,
    .x9k4-reviews-grid {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 14px !important;
    }

    .x9k4-card,
    .x9k4-review-card,
    .x9k4-review-form,
    .x9k4-content-review,
    .x9k4-slot-machine,
    .x9k4-author-card {
        border-radius: 14px;
    }

    .x9k4-card,
    .x9k4-review-card {
        padding: 18px 14px;
    }

    .x9k4-card [style*="font-size:2rem"] {
        font-size: 1.45rem !important;
    }

    .x9k4-winners-wrap {
        padding: 14px;
        border-radius: 14px;
        overflow: hidden;
    }

    .x9k4-winners {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -2px;
    }

    .x9k4-winners table {
        min-width: 620px;
        width: max-content;
    }

    .x9k4-winners th,
    .x9k4-winners td {
        padding: 11px 12px;
        font-size: .8rem;
        white-space: nowrap;
    }

    .x9k4-winners::-webkit-scrollbar {
        height: 6px;
    }

    .x9k4-winners::-webkit-scrollbar-track {
        background: #06111c;
    }

    .x9k4-winners::-webkit-scrollbar-thumb {
        background: #F9C23C;
        border-radius: 999px;
    }

    .x9k4-video-wrap {
        border-radius: 14px;
    }

    .x9k4-author-card {
        display: grid;
        grid-template-columns:1fr;
        justify-items: center;
        text-align: center;
        padding: 18px 14px;
    }

    .x9k4-author-avatar {
        width: 64px;
        height: 64px;
    }

    .x9k4-games-grid {
        display: none !important;
    }

    .x9k4-games-slider-wrap {
        display: flex !important;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        margin-right: -14px;
        padding-right: 14px;
    }

    .x9k4-games-slider-wrap .x9k4-game-card {
        flex: 0 0 82%;
        min-width: 82%;
        scroll-snap-align: start;
    }

    .x9k4-games-slider-wrap::-webkit-scrollbar {
        height: 6px;
    }

    .x9k4-games-slider-wrap::-webkit-scrollbar-track {
        background: #06111c;
    }

    .x9k4-games-slider-wrap::-webkit-scrollbar-thumb {
        background: #F9C23C;
        border-radius: 999px;
    }

    .x9k4-game-card {
        border-radius: 14px;
    }

    .x9k4-game-card__body {
        padding: 14px;
    }

    .x9k4-game-card__actions {
        display: grid;
        grid-template-columns:1fr;
        gap: 8px;
    }

    .x9k4-popup {
        width: 94%;
        max-height: 90vh;
        border-radius: 14px;
    }

    .x9k4-popup__iframe-wrap {
        padding-top: 75%;
    }

    .x9k4-slot-machine {
        padding: 22px 14px;
    }

    .x9k4-slot-machine h3 {
        font-size: 1.2rem;
    }

    .x9k4-slot-machine p {
        font-size: .86rem;
    }

    .x9k4-reels {
        gap: 8px;
    }

    .x9k4-reel {
        width: 70px;
        height: 86px;
        border-radius: 10px;
    }

    .x9k4-reel__inner {
        font-size: 2.1rem;
    }

    .x9k4-content-review {
        padding: 20px 14px;
    }

    .x9k4-content-review h1 {
        font-size: 1.45rem;
        line-height: 1.22;
    }

    .x9k4-content-review h2 {
        font-size: 1.22rem;
    }

    .x9k4-content-review h3 {
        font-size: 1.05rem;
    }

    .x9k4-content-review p,
    .x9k4-content-review li {
        font-size: .9rem;
        line-height: 1.7;
    }

    .x9k4-content-review ul,
    .x9k4-content-review ol {
        margin-left: 18px;
    }

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

    .x9k4-content-review table th,
    .x9k4-content-review table td {
        padding: 10px 12px;
        font-size: .82rem;
    }

    .x9k4-review-card__top {
        align-items: flex-start;
    }

    .x9k4-review-card__text {
        font-size: .86rem;
        line-height: 1.65;
    }

    .x9k4-review-form {
        padding: 20px 14px;
    }

    .x9k4-form-group input,
    .x9k4-form-group textarea {
        font-size: 16px;
    }

    .x9k4-form-success {
        align-items: flex-start;
        font-size: .86rem;
    }

    .x9k4-footer {
        padding: 32px 0 22px;
    }

    .x9k4-footer__grid {
        grid-template-columns:1fr;
        gap: 20px;
        text-align: center;
    }

    .x9k4-footer__logo img {
        margin: 0 auto;
    }

    .x9k4-footer__nav,
    .x9k4-footer__logos {
        justify-content: center;
    }

    .x9k4-footer__legal {
        font-size: .76rem;
        line-height: 1.65;
    }

    .x9k4-widget {
        display: grid;
        grid-template-columns:1fr auto;
        gap: 10px;
        align-items: center;
        padding: 10px 42px 10px 12px;
    }

    .x9k4-widget__text {
        font-size: .78rem;
        min-width: 0;
    }

    .x9k4-widget__text strong {
        font-size: .88rem;
    }

    .x9k4-widget .btn {
        width: auto;
        min-height: 38px;
        padding: 9px 12px;
        font-size: .78rem;
    }

    .x9k4-widget__close {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
    }

    img,
    iframe,
    video,
    canvas {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .x9k4-container,
    .x9k4-container--wide {
        padding-left: 12px;
        padding-right: 12px;
    }

    .x9k4-slider,
    .x9k4-slide,
    .x9k4-slide__img {
        min-height: 360px;
        height: 360px;
    }

    .x9k4-slide__content {
        padding: 0 38px;
    }

    .x9k4-slide__title {
        font-size: 1.3rem;
    }

    .x9k4-slide__sub {
        font-size: .84rem;
    }

    .x9k4-section-title {
        font-size: 1.15rem;
    }

    .x9k4-games-slider-wrap .x9k4-game-card {
        flex-basis: 86%;
        min-width: 86%;
    }

    .x9k4-reel {
        width: 58px;
        height: 72px;
    }

    .x9k4-reel__inner {
        font-size: 1.8rem;
    }

    .x9k4-widget {
        grid-template-columns:1fr;
        text-align: center;
        padding: 10px 38px 10px 10px;
    }

    .x9k4-widget .btn {
        width: 100%;
    }
}