:root {
    --bg: #100f2c;
    --header-bg: #29274f;
    --primary: #c30151;
    --secondary: #7b069a;
    --text: #f0eefc;
    --text-muted: #a09dc0;
    --text-dark: #5e5b80;
    --card-bg: rgba(41, 39, 79, 0.7);
    --card-bg-solid: #1a1838;
    --border: rgba(255, 255, 255, 0.09);
    --border-accent: rgba(195, 1, 81, 0.35);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(195, 1, 81, 0.25);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg)
}

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

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

a:hover {
    color: var(--primary)
}

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

ul, ol {
    padding-left: 1.5rem
}

button {
    cursor: pointer
}

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

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .45
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 22px rgba(195, 1, 81, .3)
    }
    50% {
        box-shadow: 0 0 44px rgba(195, 1, 81, .7)
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-18px);
        opacity: 0
    }
    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center
    }
    100% {
        background-position: 200% center
    }
}

@keyframes reelBlur {
    0%, 100% {
        filter: blur(3px);
        transform: translateY(-5px)
    }
    50% {
        filter: blur(3px);
        transform: translateY(5px)
    }
}

@keyframes winPop {
    0% {
        transform: scale(.8);
        opacity: 0
    }
    60% {
        transform: scale(1.08)
    }
    100% {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes barFill {
    from {
        width: 0
    }
    to {
        width: var(--bar-w, 60%)
    }
}

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

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

.section {
    padding: 56px 0
}

.section-title {
    font-size: clamp(1.35rem, 3vw, 1.95rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.75rem;
    position: relative;
    display: inline-block;
    line-height: 1.25
}

.section-title::after {
    content: '';
    display: block;
    height: 3px;
    width: 52px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin-top: 8px
}

.text-center {
    text-align: center
}

.text-center .section-title::after {
    margin: 8px auto 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: .93rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1
}

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

.btn-primary:hover {
    background: #a5013f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(195, 1, 81, .55)
}

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

.btn-secondary:hover {
    background: #640580;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(123, 6, 154, .55)
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border)
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px)
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg)
}

.btn-sm {
    padding: 8px 16px;
    font-size: .83rem;
    border-radius: 8px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .35)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    gap: 18px
}

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

.header-logo img {
    height: 40px;
    width: auto
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0
}

.header-nav li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 13px;
    color: var(--text);
    font-size: .84rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition)
}

.header-nav li a:hover, .header-nav li a.active {
    background: rgba(255, 255, 255, .07);
    color: var(--text)
}

.header-nav li a svg {
    flex-shrink: 0;
    opacity: .7
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.header-status {
    display: flex;
    align-items: center;
    gap: 12px
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .76rem;
    color: var(--text-muted);
    white-space: nowrap
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0
}

.online-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .76rem;
    color: var(--text-muted);
    white-space: nowrap
}

.online-count strong {
    color: #22c55e;
    font-weight: 700
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    padding: 0;
    flex-shrink: 0
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition)
}

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

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

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 998
}

.mobile-nav-overlay.active {
    display: block
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(310px, 86vw);
    height: 100%;
    background: var(--header-bg);
    z-index: 999;
    padding: 72px 22px 36px;
    overflow-y: auto;
    transition: right .3s ease;
    box-shadow: -12px 0 40px rgba(0, 0, 0, .5)
}

.mobile-nav.active {
    right: 0
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px
}

.mobile-nav ul li {
    border-bottom: 1px solid var(--border)
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    color: var(--text);
    font-size: .93rem;
    font-weight: 500
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mobile-nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/nv-banner.png');
    background-size: cover;
    background-position: center;
    z-index: 0
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 15, 44, .94) 0%, rgba(16, 15, 44, .72) 58%, rgba(41, 39, 79, .82) 100%)
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:1fr 280px;
    gap: 36px;
    align-items: center;
    padding: 80px 0
}

.hero-text h1 {
    font-size: clamp(1.65rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.22;
    margin-bottom: 14px;
    color: var(--text)
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 26px;
    line-height: 1.75
}

.hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap
}

.hero-bonus-card {
    background: rgba(26, 24, 56, .9);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    text-align: center;
    backdrop-filter: blur(12px);
    animation: glow 3.5s ease-in-out infinite;
    flex-shrink: 0
}

.bonus-tag-pill {
    background: var(--primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 13px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 11px;
    text-transform: uppercase;
    letter-spacing: .6px
}

.bonus-amount-big {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 5px
}

.bonus-spins {
    color: #f59e0b;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 13px
}

.bonus-detail-small {
    font-size: .76rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5
}

.block-section {
    padding: 56px 0
}

.block-box {
    background: var(--card-bg-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    margin-bottom: 22px
}

.screenshots-outer {
    position: relative
}

.screenshots-track {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px
}

.screenshot-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border)
}

.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow)
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    margin-top: 18px
}

.slider-btn {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary)
}

.slider-dots {
    display: flex;
    gap: 7px;
    align-items: center
}

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

.slider-dot.active {
    background: var(--primary);
    width: 22px;
    border-radius: 4px
}

.winners-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem
}

.winners-table th {
    background: var(--header-bg);
    color: var(--text-muted);
    font-weight: 600;
    text-align: left;
    padding: 13px 17px;
    font-size: .79rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    border-bottom: 1px solid var(--border)
}

.winners-table td {
    padding: 11px 17px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    white-space: nowrap
}

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

.winners-table tr:hover td {
    background: rgba(255, 255, 255, .025)
}

.w-rank {
    font-weight: 800;
    width: 40px;
    font-size: .9rem
}

.w-rank.gold {
    color: #f59e0b
}

.w-rank.silver {
    color: #94a3b8
}

.w-rank.bronze {
    color: #cd7c3f
}

.w-nick {
    font-weight: 600
}

.w-amount {
    font-weight: 700;
    color: #22c55e
}

.w-game {
    color: var(--text-muted);
    font-size: .82rem
}

.w-time {
    color: var(--text-dark);
    font-size: .79rem
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border)
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg)
}

.bonus-cards-outer {
    position: relative;
    overflow: hidden
}

.bonus-cards-track {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px
}

.bonus-card {
    background: var(--card-bg-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden
}

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

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-accent)
}

.bonus-card-icon {
    font-size: 2.8rem;
    margin-bottom: 14px;
    display: block
}

.bc-tag {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 13px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 11px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.bonus-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--text)
}

.bonus-card .bc-value {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    display: block
}

.bonus-card p {
    color: var(--text-muted);
    font-size: .85rem;
    line-height: 1.65;
    margin-bottom: 18px
}

.slot-machine {
    background: linear-gradient(145deg, #1a1835 0%, #0d0c24 100%);
    border: 2px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.slot-machine::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(123, 6, 154, .18), transparent 68%);
    pointer-events: none
}

.slot-machine-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text)
}

.slot-machine-sub {
    color: var(--text-muted);
    font-size: .88rem;
    margin-bottom: 24px
}

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

.slot-reel {
    width: 88px;
    height: 98px;
    background: rgba(16, 15, 44, .85);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    position: relative;
    transition: border-color var(--transition)
}

.slot-reel.spinning {
    border-color: var(--secondary)
}

.slot-reel.spinning .reel-symbol {
    animation: reelBlur .09s infinite linear
}

.reel-symbol {
    display: block;
    line-height: 1;
    user-select: none;
    transition: all .08s
}

.slot-result {
    min-height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px
}

.slot-win {
    display: none
}

.slot-win.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: winPop .5s ease
}

.slot-win-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: #f59e0b
}

.slot-win-bonus {
    color: var(--text);
    font-size: .88rem
}

.slot-lose {
    display: none;
    color: var(--text-muted);
    font-size: .88rem
}

.slot-lose.show {
    display: block
}

.slot-spins-left {
    font-size: .78rem;
    color: var(--text-dark);
    margin-top: 9px
}

.review-block {
    background: var(--card-bg-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap
}

.review-author-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-accent);
    flex-shrink: 0
}

.review-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.review-author-info h4 {
    font-size: .97rem;
    font-weight: 700;
    margin-bottom: 3px
}

.review-author-info p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.5
}

.review-author-info a {
    color: var(--secondary);
    font-size: .8rem
}

.review-updated {
    margin-left: auto;
    text-align: right;
    font-size: .77rem;
    color: var(--text-dark)
}

.review-content-body h2, .review-content-body h3, .review-content-body h4 {
    color: var(--text);
    margin: 1.5rem 0 .65rem;
    font-weight: 700;
    line-height: 1.3
}

.review-content-body h2 {
    font-size: 1.45rem
}

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

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

.review-content-body p {
    color: var(--text-muted);
    line-height: 1.82;
    margin-bottom: .95rem;
    font-size: .93rem
}

.review-content-body ul, .review-content-body ol {
    color: var(--text-muted);
    margin-bottom: .95rem;
    padding-left: 1.5rem
}

.review-content-body li {
    margin-bottom: 6px;
    line-height: 1.72;
    font-size: .93rem
}

.review-content-body a {
    color: var(--secondary);
    text-decoration: underline
}

.review-content-body strong, .review-content-body b {
    color: var(--text);
    font-weight: 700
}

.review-content-body em, .review-content-body i {
    font-style: italic
}

.review-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4rem 0;
    font-size: .88rem
}

.review-content-body table th {
    background: var(--header-bg);
    color: var(--text-muted);
    padding: 11px 15px;
    text-align: left;
    border: 1px solid var(--border);
    font-size: .8rem;
    text-transform: uppercase
}

.review-content-body table td {
    padding: 10px 15px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    vertical-align: top
}

.review-content-body blockquote {
    border-left: 3px solid var(--primary);
    padding: 12px 20px;
    margin: 1.4rem 0;
    background: rgba(195, 1, 81, .07);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-muted);
    font-style: italic
}

.review-content-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.8rem 0
}

.review-content-body img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 1rem 0
}

.responsible-block {
    background: rgba(16, 15, 44, .85);
    border: 1px solid rgba(245, 158, 11, .28);
    border-radius: var(--radius-lg);
    padding: 30px
}

.responsible-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px
}

.responsible-icon {
    width: 46px;
    height: 46px;
    background: rgba(245, 158, 11, .13);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem
}

.responsible-header-text h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 4px
}

.responsible-header-text p {
    font-size: .84rem;
    color: var(--text-muted)
}

.responsible-text {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.75;
    margin-bottom: 22px
}

.responsible-links {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(175px, 1fr));
    gap: 10px
}

.responsible-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    background: rgba(41, 39, 79, .45);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: .82rem;
    font-weight: 500;
    transition: var(--transition)
}

.responsible-link:hover {
    border-color: rgba(245, 158, 11, .5);
    color: #f59e0b;
    background: rgba(245, 158, 11, .07)
}

.responsible-link svg {
    flex-shrink: 0;
    color: #f59e0b
}

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

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

.faq-item.open {
    border-color: var(--border-accent)
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 19px;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 14px;
    transition: color var(--transition)
}

.faq-question:hover {
    color: var(--primary)
}

.faq-icon {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: var(--header-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 700;
    line-height: 1
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    border-color: var(--primary);
    color: #fff
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease, padding .28s ease;
    padding: 0 19px
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 19px 17px
}

.faq-answer p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.75
}

.faq-answer a {
    color: var(--secondary)
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px
}

.comment-item {
    background: var(--card-bg-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 9px;
    gap: 10px
}

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

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

.comment-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--text)
}

.comment-date {
    font-size: .76rem;
    color: var(--text-dark)
}

.comment-rating {
    color: #f59e0b;
    font-size: .82rem;
    letter-spacing: 1px
}

.comment-text {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.72
}

.comment-form-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text)
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.form-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 15px
}

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

.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted)
}

.form-group input, .form-group textarea, .form-group select {
    background: rgba(41, 39, 79, .45);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 15px;
    color: var(--text);
    font-family: inherit;
    font-size: .88rem;
    transition: border-color var(--transition);
    outline: none
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--secondary)
}

.form-group textarea {
    min-height: 115px;
    resize: vertical
}

.form-group select option {
    background: var(--header-bg);
    color: var(--text)
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-dark)
}

.form-success {
    display: none;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .32);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
    color: #22c55e;
    font-weight: 600;
    font-size: .93rem
}

.form-success.show {
    display: block;
    animation: fadeInUp .45s ease
}

.star-rating-wrap {
    display: flex;
    align-items: center;
    gap: 8px
}

.star-rating-wrap label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted)
}

.star-rating {
    display: flex;
    gap: 3px
}

.star-rating span {
    font-size: 1.35rem;
    color: var(--border);
    cursor: pointer;
    transition: color var(--transition);
    user-select: none
}

.star-rating span.active, .star-rating span:hover {
    color: #f59e0b
}

.site-footer {
    background: var(--header-bg);
    border-top: 1px solid var(--border);
    margin-top: 40px
}

.footer-main {
    padding: 52px 0 36px;
    display: grid;
    grid-template-columns:250px 1fr 1fr 1fr;
    gap: 38px
}

.footer-logo {
    margin-bottom: 14px
}

.footer-logo img {
    height: 36px;
    width: auto
}

.footer-desc {
    color: var(--text-muted);
    font-size: .83rem;
    line-height: 1.72;
    margin-bottom: 18px
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 15px;
    font-size: .83rem;
    color: var(--text-muted)
}

.footer-social {
    display: flex;
    gap: 9px;
    margin-bottom: 16px
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition)
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff
}

.footer-email a {
    color: var(--secondary);
    font-size: .82rem
}

.footer-nav h4 {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 14px
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-nav ul li a {
    color: var(--text-muted);
    font-size: .85rem;
    transition: var(--transition)
}

.footer-nav ul li a:hover {
    color: var(--text);
    padding-left: 4px
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0
}

.footer-middle {
    padding: 26px 0;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 28px;
    align-items: start
}

.footer-block-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--text-muted);
    margin-bottom: 11px
}

.payment-logos, .provider-logos, .trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.logo-badge {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 5px 12px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: var(--transition)
}

.logo-badge:hover {
    border-color: rgba(255, 255, 255, .18);
    color: var(--text)
}

.logo-badge.license {
    border-color: rgba(34, 197, 94, .3);
    color: #22c55e
}

.logo-badge.trust {
    border-color: rgba(245, 158, 11, .3);
    color: #f59e0b
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    border: 2px solid rgba(255, 255, 255, .18);
    flex-shrink: 0
}

.footer-bottom {
    padding: 22px 0
}

.footer-bottom-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap
}

.footer-copyright {
    font-size: .76rem;
    color: var(--text-dark);
    line-height: 1.65;
    max-width: 580px
}

.footer-copyright a {
    color: var(--text-muted)
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.footer-links a {
    font-size: .76rem;
    color: var(--text-dark);
    transition: color var(--transition)
}

.footer-links a:hover {
    color: var(--text-muted)
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(135deg, var(--header-bg), #1c1a3a);
    border-top: 2px solid var(--primary);
    padding: 11px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, .45);
    transform: translateY(100%);
    transition: transform .5s ease
}

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

.sticky-widget-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0
}

.sticky-bonus-pill {
    background: var(--primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0
}

.sticky-bonus-desc {
    font-size: .85rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.sticky-bonus-desc strong {
    color: var(--text)
}

.sticky-widget-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0
}

.sticky-close {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    transition: color var(--transition)
}

.sticky-close:hover {
    color: var(--text)
}

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

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

.info-page {
    padding: 56px 0
}

.info-content {
    max-width: 800px
}

.info-content h1 {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--text)
}

.info-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.85rem 0 .65rem;
    color: var(--text)
}

.info-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 1.4rem 0 .5rem;
    color: var(--text)
}

.info-content p {
    color: var(--text-muted);
    line-height: 1.82;
    margin-bottom: .95rem;
    font-size: .93rem
}

.info-content ul, .info-content ol {
    color: var(--text-muted);
    margin-bottom: .95rem;
    padding-left: 1.5rem
}

.info-content li {
    margin-bottom: 6px;
    line-height: 1.72;
    font-size: .93rem
}

.info-content a {
    color: var(--secondary);
    text-decoration: underline
}

.info-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4rem 0;
    font-size: .88rem
}

.info-content table th {
    background: var(--header-bg);
    color: var(--text-muted);
    padding: 11px 15px;
    text-align: left;
    border: 1px solid var(--border)
}

.info-content table td {
    padding: 10px 15px;
    border: 1px solid var(--border);
    color: var(--text-muted)
}

.info-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--text-dark);
    margin-bottom: 22px
}

.info-breadcrumb a {
    color: var(--text-muted)
}

.info-breadcrumb span {
    color: var(--text-dark)
}

.wp-block-group {
}

.wp-block-paragraph {
}

.elementor-widget-container {
}

.elementor-heading-title {
}

.et_pb_section {
}

.et_pb_row {
}

.yoast-seo-meta {
}

.wp-caption {
}

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

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.alignleft {
    float: left;
    margin-right: 1.5em
}

.alignright {
    float: right;
    margin-left: 1.5em
}

.has-text-align-center {
    text-align: center
}

.wp-block-columns {
    display: flex;
    gap: 1.5rem
}

.wp-block-column {
    flex: 1
}

.entry-content {
}

.post-thumbnail {
}

.is-layout-flex {
}

.xf92m3 {
    display: contents
}

.kp9r1j {
    display: contents
}

.wd47t2n {
    display: contents
}

.b8q3xp {
}

.h6n2mq {
}

.z5k7vr {
}

.nv4a9j {
}

.q2m8rx {
}

.t7b3wf {
}

.j6n1kp {
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns:1fr 1fr;
        gap: 26px
    }

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

    .hero-inner {
        grid-template-columns:1fr;
        text-align: center
    }

    .hero-bonus-card {
        margin: 0 auto;
        max-width: 300px
    }

    .hero-buttons {
        justify-content: center
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none
    }

    .header-status {
        display: none
    }

    .burger-btn {
        display: flex
    }

    .bonus-cards-track {
        display: flex;
        overflow: hidden;
        transition: transform .4s ease
    }

    .bonus-cards-track .bonus-card {
        flex: 0 0 100%;
        min-width: 100%
    }

    .screenshots-track {
        display: flex;
        overflow: hidden;
        transition: transform .4s ease
    }

    .screenshots-track .screenshot-item {
        flex: 0 0 100%;
        min-width: 100%
    }

    .form-row {
        grid-template-columns:1fr
    }

    .footer-main {
        grid-template-columns:1fr;
        gap: 22px
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px
    }

    .block-box {
        padding: 18px;
        border-radius: var(--radius)
    }

    .review-block {
        padding: 22px
    }

    .slot-machine {
        padding: 26px 18px
    }

    .slot-reel {
        width: 72px;
        height: 82px;
        font-size: 2.2rem
    }

    .responsible-links {
        grid-template-columns:1fr 1fr
    }

    .section {
        padding: 36px 0
    }

    .sticky-bonus-desc {
        display: none
    }

    .review-updated {
        margin-left: 0;
        text-align: left
    }

    .hero-inner {
        padding: 60px 0
    }

    .info-content {
        max-width: 100%
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px
    }

    .hero-bonus-card {
        width: 100%
    }

    .responsible-links {
        grid-template-columns:1fr
    }

    .slot-reels {
        gap: 8px
    }

    .slot-reel {
        width: 62px;
        height: 70px;
        font-size: 1.8rem
    }

    .sticky-widget {
        padding: 9px 13px;
        gap: 9px
    }

    .bonus-card {
        padding: 20px 16px
    }

    .btn {
        padding: 10px 16px;
        font-size: .88rem
    }

    .header-right {
        gap: 7px
    }

    .hero-text h1 {
        font-size: 1.5rem
    }
}

:root {
    --nvx-header-bg: #29274f;
    --nvx-header-bg-dark: #17152f;
    --nvx-primary: #c30151;
    --nvx-primary-hover: #a80146;
    --nvx-secondary: #7b069a;
    --nvx-text: #f5f3ff;
    --nvx-muted: #aaa6c9;
    --nvx-border: rgba(255, 255, 255, .11);
    --nvx-shadow: 0 12px 35px rgba(0, 0, 0, .45);
}

html,
body {
    overflow-x: hidden;
}

body {
    padding-top: 72px;
}

.nvx-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(41, 39, 79, .97);
    border-bottom: 1px solid var(--nvx-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nvx-header__inner {
    width: 100%;
    max-width: 1240px;
    min-height: 72px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nvx-header__logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.nvx-header__logo img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 145px;
    object-fit: contain;
}

.nvx-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
}

.nvx-header__nav a {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 9px 12px;
    color: var(--nvx-text);
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nvx-header__nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    transform: translateY(-1px);
}

.nvx-header__nav svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    opacity: .8;
}

.nvx-header__right {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
}

.nvx-header__status {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    color: var(--nvx-muted);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--nvx-border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.nvx-header__status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, .85);
    animation: nvxPulse 1.8s infinite;
}

@keyframes nvxPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .55;
        transform: scale(1.25);
    }
}

.nvx-header__login,
.nvx-header__register {
    min-height: 40px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.nvx-header__login {
    color: #fff;
    background: var(--nvx-secondary);
}

.nvx-header__login:hover {
    color: #fff;
    background: #65077f;
    transform: translateY(-1px);
}

.nvx-header__register {
    color: #fff;
    background: var(--nvx-primary);
}

.nvx-header__register:hover {
    color: #fff;
    background: var(--nvx-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(195, 1, 81, .35);
}

.nvx-header__burger {
    display: none;
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--nvx-border);
    border-radius: 10px;
    cursor: pointer;
}

.nvx-header__burger span {
    display: block;
    width: 21px;
    height: 2px;
    background: #fff;
    border-radius: 3px;
    transition: transform .25s ease, opacity .2s ease;
}

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

.nvx-header__burger.is-active span:nth-child(2) {
    opacity: 0;
}

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

.nvx-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(5, 4, 18, .72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
}

.nvx-mobile-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nvx-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10002;
    width: min(370px, 100%);
    height: 100dvh;
    padding: 18px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--nvx-header-bg) 0%, var(--nvx-header-bg-dark) 100%);
    border-left: 1px solid var(--nvx-border);
    box-shadow: -16px 0 45px rgba(0, 0, 0, .55);
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s ease, opacity .25s ease, visibility .3s ease;
}

.nvx-mobile-menu.is-active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nvx-mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--nvx-border);
}

.nvx-mobile-menu__logo {
    display: flex;
    align-items: center;
}

.nvx-mobile-menu__logo img {
    display: block;
    width: auto;
    height: 38px;
    max-width: 130px;
}

.nvx-mobile-menu__close {
    position: relative;
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--nvx-border);
    border-radius: 10px;
    cursor: pointer;
}

.nvx-mobile-menu__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 3px;
}

.nvx-mobile-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nvx-mobile-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nvx-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px 0;
}

.nvx-mobile-menu__nav a {
    width: 100%;
    min-height: 52px;
    padding: 14px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 11px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease;
}

.nvx-mobile-menu__nav a:hover {
    color: #fff;
    background: rgba(195, 1, 81, .15);
    border-color: rgba(195, 1, 81, .42);
}

.nvx-mobile-menu__nav a span:last-child {
    color: var(--nvx-muted);
    font-size: 22px;
    line-height: 1;
}

.nvx-mobile-menu__status {
    margin-top: auto;
    padding: 14px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--nvx-muted);
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--nvx-border);
    border-radius: 11px;
    font-size: 13px;
    font-weight: 600;
}

.nvx-mobile-menu__buttons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    padding-top: 14px;
}

.nvx-mobile-menu__login,
.nvx-mobile-menu__register {
    min-height: 48px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nvx-mobile-menu__login {
    background: var(--nvx-secondary);
}

.nvx-mobile-menu__register {
    background: var(--nvx-primary);
}

body.nvx-menu-open {
    overflow: hidden;
    touch-action: none;
}

@media (max-width: 1050px) {

    .nvx-header__nav a {
        padding: 9px 8px;
        font-size: 13px;
    }

    .nvx-header__status {
        display: none;
    }
}

@media (max-width: 820px) {

    body {
        padding-top: 64px;
    }

    .nvx-header__inner {
        min-height: 64px;
        padding: 9px 14px;
    }

    .nvx-header__logo img {
        height: 37px;
        max-width: 120px;
    }

    .nvx-header__nav,
    .nvx-header__status {
        display: none;
    }

    .nvx-header__right {
        margin-left: auto;
    }

    .nvx-header__register {
        min-height: 40px;
        padding: 10px 13px;
        font-size: 12px;
    }

    .nvx-header__burger {
        display: flex;
    }
}

@media (max-width: 480px) {

    body {
        padding-top: 60px;
    }

    .nvx-header__inner {
        min-height: 60px;
        padding: 8px 10px;
    }

    .nvx-header__logo img {
        height: 34px;
        max-width: 105px;
    }

    .nvx-header__burger {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .nvx-mobile-menu {
        width: 100%;
        padding: 14px 12px 20px;
        border-left: 0;
    }

    .nvx-mobile-menu__buttons {
        grid-template-columns:1fr;
    }
}

.screenshots-outer {
    width: 100%;
    overflow: hidden;
}

.screenshots-track {
    width: 100%;
}

@media (max-width: 768px) {
    .screenshots-track {
        display: flex !important;
        gap: 0 !important;
        width: 100%;
        overflow: visible !important;
        transition: transform .35s ease;
        will-change: transform;
        touch-action: pan-y;
    }

    .screenshots-track .screenshot-item {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .screenshots-track .screenshot-item img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .slider-controls {
        display: flex;
    }
}