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

:root {
    --c1: #07041C;
    --c2: #A0F8B5;
    --c3: #0d0930;
    --c4: #1a1540;
    --c5: #ffffff;
    --c6: #b8b8d0;
    --c7: #12102e;
    --c8: #0f0d28;
    --radius: 10px;
    --trans: .25s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

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

html {
    scroll-behavior: smooth;
    background: var(--c1);
    font-size: 16px;
}

body {
    font-family: 'Kanit', sans-serif;
    background: var(--c1);
    color: var(--c5);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--c2);
    text-decoration: none;
    transition: color var(--trans);
}

a:hover {
    color: #c8ffd8;
}

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

ul {
    list-style: none;
}

.xb4k2 {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.m9p1a {
    background: var(--c1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(160, 248, 181, .13);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .6);
}

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

.m9p1a-logo img {
    height: 44px;
    width: auto;
}

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

.m9p1a-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--c6);
    transition: all var(--trans);
}

.m9p1a-nav a:hover {
    color: var(--c2);
    background: rgba(160, 248, 181, .07);
}

.m9p1a-nav svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.m9p1a-online {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    color: var(--c6);
    white-space: nowrap;
}

.m9p1a-online-dot {
    width: 8px;
    height: 8px;
    background: var(--c2);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(160, 248, 181, .4);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(160, 248, 181, 0);
    }
}

.m9p1a-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 8px;
    font-family: 'Kanit', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--trans);
    line-height: 1;
}

.btn--primary {
    background: var(--c2);
    color: var(--c1);
}

.btn--primary:hover {
    background: #b8ffc8;
    color: var(--c1);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(160, 248, 181, .35);
}

.btn--secondary {
    background: transparent;
    color: var(--c2);
    border: 1.5px solid var(--c2);
}

.btn--secondary:hover {
    background: rgba(160, 248, 181, .1);
    color: var(--c2);
}

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

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

.brgr {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.brgr span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c5);
    border-radius: 2px;
    transition: all var(--trans);
}

.brgr.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.brgr.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mob-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 4, 28, .97);
    z-index: 999;
    flex-direction: column;
    padding: 90px 30px 40px;
    overflow-y: auto;
}

.mob-menu.open {
    display: flex;
}

.mob-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--c6);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.mob-menu a:hover {
    color: var(--c2);
}

.mob-menu-btns {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.mob-menu-btns .btn {
    flex: 1;
    min-width: 120px;
}

.hero-xk9 {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c1);
}

.hero-xk9-bg {
    position: absolute;
    inset: 0;
    background-image: url('/cas-bit-hero.png');
    background-size: cover;
    background-position: center;
    filter: brightness(.45);
}

.hero-xk9-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 4, 28, .9) 40%, rgba(10, 6, 40, .5) 100%);
}

.hero-xk9-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
}

.hero-xk9-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(160, 248, 181, .12);
    border: 1px solid rgba(160, 248, 181, .3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--c2);
    margin-bottom: 20px;
    letter-spacing: .04em;
}

.hero-xk9 h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    max-width: 700px;
    margin-bottom: 16px;
    color: var(--c5);
}

.hero-xk9 h1 span {
    color: var(--c2);
}

.hero-xk9-desc {
    font-size: 1.05rem;
    color: var(--c6);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-xk9-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-xk9-note {
    font-size: .78rem;
    color: #7a7a9a;
    margin-top: 12px;
}

.sec {
    padding: 70px 0;
}

.sec-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--c5);
    margin-bottom: 8px;
}

.sec-sub {
    font-size: 1rem;
    color: var(--c6);
    margin-bottom: 40px;
    line-height: 1.6;
}

.sec-hd {
    margin-bottom: 40px;
}

.adv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.adv-tile {
    flex: 1 1 220px;
    background: var(--c7);
    border: 1px solid rgba(160, 248, 181, .1);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: all var(--trans);
    position: relative;
    overflow: hidden;
}

.adv-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(160, 248, 181, .05), transparent);
    opacity: 0;
    transition: opacity var(--trans);
}

.adv-tile:hover {
    border-color: rgba(160, 248, 181, .35);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.adv-tile:hover::before {
    opacity: 1;
}

.adv-icon {
    width: 48px;
    height: 48px;
    background: rgba(160, 248, 181, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.adv-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--c2);
    stroke-width: 1.8;
}

.adv-tile h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--c5);
}

.adv-tile p {
    font-size: .88rem;
    color: var(--c6);
    line-height: 1.6;
}

.tbl-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid rgba(160, 248, 181, .12);
}

table.pm-tbl {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

table.pm-tbl th {
    background: var(--c8);
    color: var(--c2);
    font-size: .82rem;
    font-weight: 700;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(160, 248, 181, .18);
    white-space: nowrap;
}

table.pm-tbl td {
    padding: 13px 16px;
    font-size: .88rem;
    color: var(--c6);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    text-align: left;
    vertical-align: middle;
}

table.pm-tbl tr:last-child td {
    border-bottom: none;
}

table.pm-tbl tr:hover td {
    background: rgba(160, 248, 181, .03);
}

.pm-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--c5);
}

.pm-logo svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.td-green {
    color: var(--c2);
    font-weight: 600;
}

.td-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    background: rgba(160, 248, 181, .1);
    color: var(--c2);
}

.screens-block {
    background: var(--c7);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(160, 248, 181, .1);
}

.screens-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.screen-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: all var(--trans);
}

.screen-item:hover {
    border-color: rgba(160, 248, 181, .3);
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

.screen-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.screens-slider {
    display: none;
}

.wl-block {
    background: var(--c7);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(160, 248, 181, .1);
}

.wl-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wl-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: background var(--trans);
}

.wl-item:last-child {
    border-bottom: none;
}

.wl-item:hover {
    background: rgba(160, 248, 181, .03);
    padding-left: 8px;
    border-radius: 8px;
}

.wl-rank {
    width: 36px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--c6);
    text-align: center;
    flex-shrink: 0;
}

.wl-rank.top1 {
    color: #FFD700;
    font-size: 1rem;
}

.wl-rank.top2 {
    color: #C0C0C0;
}

.wl-rank.top3 {
    color: #CD7F32;
}

.wl-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c2), #4af090);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    font-weight: 700;
    color: var(--c1);
    flex-shrink: 0;
}

.wl-nick {
    flex: 1;
    font-size: .92rem;
    font-weight: 600;
    color: var(--c5);
}

.wl-game {
    font-size: .78rem;
    color: var(--c6);
}

.wl-win {
    font-size: .95rem;
    font-weight: 700;
    color: var(--c2);
}

.slot-block {
    background: var(--c7);
    border-radius: 16px;
    padding: 50px 40px;
    border: 1px solid rgba(160, 248, 181, .1);
    text-align: center;
}

.slot-machine {
    display: inline-flex;
    gap: 10px;
    background: var(--c8);
    border: 2px solid rgba(160, 248, 181, .25);
    border-radius: 16px;
    padding: 28px 32px;
    margin: 28px 0;
    position: relative;
}

.slot-reel {
    width: 80px;
    height: 90px;
    background: var(--c1);
    border-radius: 10px;
    border: 1px solid rgba(160, 248, 181, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    overflow: hidden;
    position: relative;
}

.slot-reel.spinning {
    animation: spin-reel .15s linear infinite;
}

@keyframes spin-reel {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-6px);
    }
    75% {
        transform: translateY(6px);
    }
    100% {
        transform: translateY(0);
    }
}

.slot-result {
    font-size: 1.15rem;
    font-weight: 600;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.slot-result.win {
    color: var(--c2);
}

.slot-result.lose {
    color: #f87171;
}

.slot-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.review-block {
    background: var(--c4);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(160, 248, 181, .1);
}

.review-block .text-content {
    color: var(--c6);
    line-height: 1.8;
}

.review-block .text-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c5);
    margin: 28px 0 12px;
}

.review-block .text-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--c2);
    margin: 22px 0 10px;
}

.review-block .text-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c5);
    margin: 18px 0 8px;
}

.review-block .text-content p {
    margin-bottom: 16px;
}

.review-block .text-content ul, .review-block .text-content ol {
    margin: 12px 0 18px 22px;
    display: block;
}

.review-block .text-content ul {
    list-style: disc;
}

.review-block .text-content ol {
    list-style: decimal;
}

.review-block .text-content li {
    margin-bottom: 8px;
    color: var(--c6);
}

.review-block .text-content a {
    color: var(--c2);
}

.review-block .text-content strong {
    color: var(--c5);
    font-weight: 700;
}

.review-block .text-content em {
    font-style: italic;
    color: var(--c6);
}

.review-block .text-content blockquote {
    border-left: 3px solid var(--c2);
    padding: 12px 20px;
    background: rgba(160, 248, 181, .05);
    border-radius: 0 8px 8px 0;
    margin: 18px 0;
}

.review-block .text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}

.review-block .text-content table th {
    background: var(--c8);
    color: var(--c2);
    padding: 10px 14px;
    text-align: left;
    font-size: .88rem;
}

.review-block .text-content table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: .88rem;
}

.review-block .text-content table tr:hover td {
    background: rgba(160, 248, 181, .04);
}

.review-block .text-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 24px 0;
}

.author-block {
    background: var(--c7);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid rgba(160, 248, 181, .1);
}

.author-inner {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.author-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(160, 248, 181, .25);
    flex-shrink: 0;
}

.author-info {
}

.author-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c5);
    margin-bottom: 4px;
}

.author-title {
    font-size: .85rem;
    color: var(--c2);
    font-weight: 600;
    margin-bottom: 10px;
}

.author-bio {
    font-size: .9rem;
    color: var(--c6);
    line-height: 1.7;
    margin-bottom: 14px;
}

.author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid rgba(160, 248, 181, .25);
    border-radius: 20px;
    font-size: .82rem;
    color: var(--c6);
    transition: all var(--trans);
}

.author-link:hover {
    border-color: var(--c2);
    color: var(--c2);
}

.author-link svg {
    width: 14px;
    height: 14px;
}

.author-dates {
    font-size: .8rem;
    color: #5a5a7a;
    margin-top: 12px;
}

.footer-xw3 {
    background: var(--c8);
    border-top: 1px solid rgba(160, 248, 181, .1);
    padding: 50px 0 28px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col-wide {
    flex: 2;
    min-width: 240px;
}

.footer-logo img {
    height: 38px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: .85rem;
    color: var(--c6);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--c6);
    margin-bottom: 8px;
}

.footer-flag svg {
    width: 22px;
    height: 16px;
    border-radius: 2px;
}

.footer-col h4 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--c5);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: .85rem;
    color: var(--c6);
    transition: color var(--trans);
}

.footer-col ul li a:hover {
    color: var(--c2);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-badge {
    background: var(--c7);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--c6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--c6);
}

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

.footer-social {
    width: 36px;
    height: 36px;
    background: var(--c7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--trans);
}

.footer-social:hover {
    background: rgba(160, 248, 181, .15);
    border-color: var(--c2);
}

.footer-social svg {
    width: 17px;
    height: 17px;
    fill: var(--c6);
}

.footer-social:hover svg {
    fill: var(--c2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom p {
    font-size: .78rem;
    color: #4a4a6a;
    line-height: 1.6;
}

.footer-bottom a {
    color: #5a5a8a;
}

.footer-bottom a:hover {
    color: var(--c2);
}

.footer-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid #4a4a6a;
    border-radius: 50%;
    font-size: .75rem;
    font-weight: 700;
    color: #4a4a6a;
    margin-right: 8px;
    flex-shrink: 0;
    vertical-align: middle;
}

.widget-xp7 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(90deg, var(--c1) 0%, var(--c3) 100%);
    border-top: 2px solid var(--c2);
    padding: 13px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, .6);
}

.widget-xp7-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.widget-xp7-label {
    font-size: .78rem;
    color: var(--c6);
}

.widget-xp7-bonus {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c5);
}

.widget-xp7-bonus span {
    color: var(--c2);
}

.widget-close {
    background: none;
    border: none;
    color: var(--c6);
    cursor: pointer;
    padding: 4px;
    font-size: 1.2rem;
    line-height: 1;
    transition: color var(--trans);
}

.widget-close:hover {
    color: var(--c5);
}

.faq-block {
    background: var(--c7);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(160, 248, 181, .1);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    gap: 12px;
}

.faq-q h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c5);
    flex: 1;
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(160, 248, 181, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--trans);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--c2);
    transition: transform var(--trans);
}

.faq-item.open .faq-icon {
    background: rgba(160, 248, 181, .2);
}

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

.faq-a {
    display: none;
    padding-bottom: 18px;
}

.faq-a p {
    font-size: .9rem;
    color: var(--c6);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 248, 181, .15), transparent);
    margin: 0;
}

.entry-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

.entry-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .m9p1a-nav {
        display: none;
    }

    .m9p1a-online {
        display: none;
    }

    .brgr {
        display: flex;
    }

    .hero-xk9-inner {
        padding: 60px 20px;
    }

    .adv-tile {
        flex: 1 1 44%;
    }

    .screens-grid {
        display: none;
    }

    .screens-slider {
        display: block;
    }

    .footer-top {
        flex-direction: column;
        gap: 28px;
    }

    .author-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .adv-tile {
        flex: 1 1 100%;
    }

    .slot-machine {
        gap: 6px;
        padding: 20px;
    }

    .slot-reel {
        width: 66px;
        height: 78px;
        font-size: 2rem;
    }

    .hero-xk9-actions .btn--xl {
        padding: 13px 24px;
        font-size: 1rem;
    }

    .widget-xp7 {
        flex-wrap: wrap;
    }

    .screens-block {
        padding: 24px 16px;
    }

    .wl-block {
        padding: 24px 16px;
    }

    .slot-block {
        padding: 30px 16px;
    }

    .review-block {
        padding: 24px 16px;
    }

    .author-block {
        padding: 24px 16px;
    }

    .faq-block {
        padding: 24px 16px;
    }
}

.swiper-container-screens {
    overflow: hidden;
    border-radius: 10px;
}

.swiper-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.swiper-pagination-bullet {
    background: var(--c2) !important;
}

.swiper-pagination-bullet-active {
    background: var(--c2) !important;
}

body.widget-closed .widget-xp7 {
    display: none;
}

body.widget-closed main {
    padding-bottom: 0;
}

.content-gap {
    height: 72px;
}

@media (max-width: 900px) {
    .screens-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .screens-grid::-webkit-scrollbar {
        display: none;
    }

    .screen-item {
        flex: 0 0 88%;
        min-width: 88%;
        scroll-snap-align: center;
    }

    .screen-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
}

@media (max-width: 600px) {
    .screens-block {
        padding: 18px 12px;
    }

    .screen-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .screen-item img {
        height: 190px;
    }
}