/* Global Styles */
:root {
    --color-primary: #0255c2;
    --color-secondary: #54b146;
    --color-bg: #f5f5f5;
    --color-white: #ffffff;
    --color-text: #2c3e50;
    --color-text-light: #6c757d;
    --font-main: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
}

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

.page-wrapper-x9 {
    flex: 1;
}

.container-fluid.px9-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

a:hover {
    color: #013d91;
}

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

/* Header Styles */
.xh7-header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-lk92 img {
    width: 180px;
    height: auto;
}

.nav-p84 ul.menu-list-k2 {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-p84 ul.menu-list-k2 li a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 12px;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-p84 ul.menu-list-k2 li a:hover {
    background: rgba(2, 85, 194, 0.1);
    color: var(--color-primary);
}

.online-count-x7 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-text-light);
    margin-right: 15px;
}

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

@keyframes pulse-animation {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.btn-h32 {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-login-d {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-login-d:hover {
    background: #013d91;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 85, 194, 0.3);
}

.btn-signup-d {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn-signup-d:hover {
    background: #438937;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(84, 177, 70, 0.3);
}

.btn-xs91 {
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
}

.btn-login-xs {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-signup-xs {
    background: var(--color-secondary);
    color: var(--color-white);
}

/* Burger Menu */
.burger-mn43 {
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.burger-mn43 span {
    width: 100%;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-nav-z8 {
    display: none;
    background: var(--color-white);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 20px;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav-z8.active {
    display: block;
}

.mobile-menu-q4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-q4 li {
    margin-bottom: 15px;
}

.mobile-menu-q4 li a {
    display: block;
    padding: 15px;
    background: var(--color-bg);
    border-radius: 8px;
    color: var(--color-text);
    font-weight: 500;
    font-size: 16px;
}

.online-count-mobile {
    margin-top: 30px;
    padding: 15px;
    background: rgba(84, 177, 70, 0.1);
    border-radius: 8px;
    text-align: center;
}

/* Hero Section */
.hero-section-f7 {
    margin-top: 20px;
    margin-bottom: 30px;
}

.hero-slider-p3 {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2,85,194,0.8), rgba(84,177,70,0.6));
}

.hero-content-z2 {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 600px;
}

.hero-title-m8 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle-q5 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
    animation: fadeInUp 1s ease;
}

.btn-hero-x6 {
    padding: 18px 40px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    animation: fadeInUp 1.2s ease;
    box-shadow: 0 6px 20px rgba(84,177,70,0.4);
}

.btn-hero-x6:hover {
    background: #438937;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(84,177,70,0.5);
    color: var(--color-white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breadcrumbs */
.breadcrumbs-section-u4 {
    margin: 20px 0;
}

.breadcrumb-list-v2 {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 15px 20px;
    background: var(--color-white);
    border-radius: 8px;
    font-size: 14px;
}

.breadcrumb-list-v2 li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--color-text-light);
}

.breadcrumb-list-v2 li.active {
    color: var(--color-text-light);
}

/* Main Content */
.main-content-r8 {
    padding: 30px 0;
}

.content-box-n4 {
    background: var(--color-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.main-heading-t9 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Author Box */
.author-box-k5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(2,85,194,0.05), rgba(84,177,70,0.05));
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid var(--color-primary);
}

.author-info-p2 {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-avatar-x3 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details-m1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-details-m1 strong {
    font-size: 18px;
    color: var(--color-text);
}

.author-details-m1 span {
    font-size: 14px;
    color: var(--color-text-light);
}

.author-social-z7 a {
    padding: 8px 18px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

/* Table of Contents */
.toc-section-y8 {
    background: var(--color-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.toc-title-u5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-text);
}

.toc-list-j2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list-j2 li {
    margin-bottom: 10px;
}

.toc-list-j2 li a {
    display: block;
    padding: 10px 15px;
    background: var(--color-white);
    border-radius: 6px;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.toc-list-j2 li a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateX(5px);
}

/* Jackpots Section */
.jackpots-section-b6 {
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 12px;
    color: var(--color-white);
}

.section-title-l3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-text);
}

.jackpots-section-b6 .section-title-l3 {
    color: var(--color-white);
}

.jackpot-grid-m9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.jackpot-card-r4 {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.jackpot-card-r4:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.jackpot-game-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.jackpot-amount-x7 {
    font-size: 26px;
    font-weight: 700;
    color: #ffd700;
    animation: jackpot-pulse 2s infinite;
}

@keyframes jackpot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Content Text Area */
.content-text-area-q8 {
    margin: 30px 0;
    line-height: 1.8;
}

.content-text-area-q8 h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 35px 0 20px;
    color: var(--color-text);
}

.content-text-area-q8 h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 30px 0 18px;
    color: var(--color-text);
}

.content-text-area-q8 h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: var(--color-text);
}

.content-text-area-q8 p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.content-text-area-q8 ul, .content-text-area-q8 ol {
    margin: 20px 0 20px 30px;
}

.content-text-area-q8 li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.content-text-area-q8 table {
    width: 100%;
    margin: 30px auto;
    border-collapse: collapse;
    border: 2px solid #ddd;
    max-width: 900px;
}

.content-text-area-q8 th, .content-text-area-q8 td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.content-text-area-q8 th {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
}

.content-text-area-q8 tr:nth-child(even) {
    background: var(--color-bg);
}

.content-text-area-q8 strong {
    font-weight: 600;
    color: var(--color-primary);
}

/* Screenshots Section */
.screenshots-section-h3 {
    margin: 40px 0;
}

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

.screenshot-item-z9 {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.screenshot-item-z9:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.screenshot-img-p4 {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Screenshots Slider */
.screenshots-slider-mobile {
    position: relative;
    margin-top: 20px;
}

.slider-container-w8 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.slider-track-n5 {
    display: flex;
    transition: transform 0.4s ease;
}

.slider-item-k2 {
    min-width: 100%;
    flex-shrink: 0;
}

.slider-item-k2 img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-btn-prev, .slider-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: var(--color-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn-prev:hover, .slider-btn-next:hover {
    background: rgba(0,0,0,0.8);
}

.slider-btn-prev {
    left: 10px;
}

.slider-btn-next {
    right: 10px;
}

/* Demo Game Section */
.demo-game-section-v7 {
    margin: 40px 0;
}

.demo-game-container-b8 {
    margin-top: 20px;
}

.game-frame-wrapper-u3 {
    position: relative;
    width: 100%;
    height: 600px;
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
}

.demo-game-iframe-m6 {
    width: 100%;
    height: 100%;
}

.demo-placeholder-t9 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: var(--color-white);
    font-size: 20px;
}

/* Reviews Section */
.reviews-section-x4 {
    margin: 40px 0;
}

.reviews-grid-p5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.review-card-w2 {
    background: var(--color-white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.review-card-w2:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.review-header-j8 {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.review-avatar-r7 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-info-k3 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-stars-q9 {
    color: #ffd700;
    font-size: 16px;
}

.review-text-n6 {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Review Form */
.review-form-section-u9 {
    margin-top: 40px;
    padding: 30px;
    background: var(--color-bg);
    border-radius: 10px;
}

.form-title-p7 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.review-form-m4 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-k8 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-k8 label {
    font-weight: 500;
    color: var(--color-text);
}

.form-input-z3, .form-textarea-b5 {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-input-z3:focus, .form-textarea-b5:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(2,85,194,0.1);
}

.btn-submit-review-n2 {
    padding: 14px 30px;
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-review-n2:hover {
    background: #438937;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(84,177,70,0.3);
}

.form-success-message-x6 {
    padding: 20px;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
}

/* Sidebar */
.sidebar-w8 {
    position: sticky;
    top: 100px;
}

.sidebar-box-t4 {
    background: var(--color-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.sidebar-title-v5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
}

/* Bonus Box */
.bonus-info-content-r2 {
    text-align: center;
}

.bonus-amount-x8 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.bonus-description-k9 {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.bonus-features-m3 {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.bonus-features-m3 li {
    padding: 10px 15px;
    background: var(--color-bg);
    border-radius: 6px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 35px;
}

.bonus-features-m3 li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 18px;
}

.btn-get-bonus-p9 {
    display: block;
    padding: 16px 30px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(84,177,70,0.3);
    transition: all 0.3s ease;
}

.btn-get-bonus-p9:hover {
    background: #438937;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(84,177,70,0.4);
    color: var(--color-white);
}

/* Payment Methods */
.payment-methods-list-u2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-item-y7 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--color-bg);
    border-radius: 6px;
}

.payment-item-y7 img {
    width: 40px;
    height: 28px;
    object-fit: contain;
}

.payment-note-h4 {
    margin-top: 15px;
    font-size: 14px;
    color: var(--color-text-light);
}

/* FAQ */
.faq-list-n8 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item-w3 {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

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

.faq-question-k5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}

.faq-answer-p6 {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Casino Info */
.casino-info-list-z1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row-m7 {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-row-m7:last-child {
    border-bottom: none;
}

.info-label-k2 {
    font-weight: 500;
    color: var(--color-text-light);
}

.info-value-p3 {
    font-weight: 600;
    color: var(--color-text);
}

/* Footer */
.footer-s92 {
    background: var(--color-white);
    padding: 50px 0 20px;
    margin-top: 60px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.footer-logo-z3 img {
    width: 160px;
    margin-bottom: 15px;
}

.footer-desc-t8 {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.footer-title-k9 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
}

.footer-links-m5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-m5 li {
    margin-bottom: 10px;
}

.footer-links-m5 li a {
    color: var(--color-text-light);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-m5 li a:hover {
    color: var(--color-primary);
}

.payments-grid-p2, .providers-grid-u7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-icon-w4, .provider-icon-r5 {
    width: 100%;
    height: 35px;
    object-fit: contain;
    background: var(--color-bg);
    padding: 6px;
    border-radius: 6px;
}

.footer-bottom-j6 {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.copyright-n8, .legal-text-y3 {
    font-size: 13px;
    color: var(--color-text-light);
    margin: 5px 0;
}

.footer-links-legal-b4 {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links-legal-b4 a {
    font-size: 13px;
    color: var(--color-text-light);
}

/* Fixed Widget */
.fixed-widget-bottom-x2 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.widget-content-z4 {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-text-b7 {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
}

.widget-bonus-amount {
    font-size: 24px;
    font-weight: 700;
    margin-left: 10px;
}

.widget-btn-register-k9 {
    padding: 12px 35px;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.widget-btn-register-k9:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Unused Styles for Uniqueness */
.elementor-section-wrap { display: none; }
.wp-block-group { padding: 0; }
.site-branding { display: flex; }
.navigation-top { position: relative; }
.entry-content { margin: 0 auto; }
.widget-area { width: 100%; }
.yoast-breadcrumbs { font-size: 14px; }

/* Responsive */
@media (max-width: 768px) {
    .hero-title-m8 {
        font-size: 32px;
    }

    .hero-subtitle-q5 {
        font-size: 18px;
    }

    .main-heading-t9 {
        font-size: 28px;
    }

    .content-box-n4 {
        padding: 20px;
    }

    .screenshots-grid-t6 {
        grid-template-columns: 1fr;
    }

    .jackpot-grid-m9 {
        grid-template-columns: 1fr;
    }

    .reviews-grid-p5 {
        grid-template-columns: 1fr;
    }

    .author-box-k5 {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .widget-content-z4 {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .widget-text-b7 {
        font-size: 16px;
    }

    .widget-bonus-amount {
        font-size: 20px;
    }

    .footer-links-legal-b4 {
        justify-content: flex-start;
    }
}
/* ==== Mobile screenshots: clean slider, no overflow ==== */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; }

    .screenshots-section-h3 { margin: 32px 0; }

    .screenshots-slider-mobile {
        position: relative;
        margin-top: 16px;
        padding-inline: 0;             /* без «паразитних» відступів */
    }

    .slider-container-w8 {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        background: #0b1220;           /* бекграунд під завантаження */
        isolation: isolate;
    }

    /* трек і слайди */
    .slider-track-n5 {
        display: flex;
        will-change: transform;
        transition: transform 360ms ease;
        touch-action: pan-y;           /* свайп лише по X */
    }

    .slider-item-k2 {
        min-width: 100%;
        flex: 0 0 100%;
        aspect-ratio: 16 / 9;          /* стабільна висота без «скачків» */
        position: relative;
    }
    .slider-item-k2 img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;             /* «cover» щоб красиво кропити */
        object-position: center;
        display: block;
    }

    /* кнопки */
    .slider-btn-prev, .slider-btn-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 0;
        background: rgba(0,0,0,.55);
        color: #fff;
        font-size: 20px;
        display: grid;
        place-items: center;
        opacity: .92;
        transition: opacity .2s ease, transform .2s ease, background .2s ease;
    }
    .slider-btn-prev { left: 8px; }
    .slider-btn-next { right: 8px; }
    .slider-btn-prev:active, .slider-btn-next:active { transform: translateY(-50%) scale(.96); }
    .slider-btn-prev[disabled], .slider-btn-next[disabled] { opacity: .35; pointer-events: none; }

    /* точки */
    .slider-dots {
        position: absolute;
        left: 50%;
        bottom: 8px;
        transform: translateX(-50%);
        display: flex;
        gap: 6px;
        padding: 6px 8px;
        background: rgba(0,0,0,.35);
        border-radius: 999px;
        z-index: 4;
        backdrop-filter: blur(6px);
    }
    .slider-dot {
        width: 6px; height: 6px;
        border-radius: 50%;
        background: rgba(255,255,255,.7);
        border: 0;
    }
    .slider-dot.is-active {
        width: 18px; border-radius: 999px; background: #fff;
        transition: width .22s ease;
    }

    /* приховати сітку на мобілці, показати слайдер */
    .d-md-grid { display: none !important; }
    .d-md-none { display: block !important; }
}
