:root {
    --clr-bg: #0e0e0e;
    --clr-nav: #1b1c1d;
    --clr-red: #e50539;
    --clr-green: #28a909;
    --clr-text: #e8e8e8;
    --clr-muted: #9a9a9a;
    --clr-border: #2a2a2a;
    --clr-card: #161718;
    --clr-card2: #1a1b1c;
    --radius: 10px;
    --font-main: 'Inter', sans-serif
}

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

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

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

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

a {
    color: var(--clr-red);
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #ff2a5e
}

.xk7b2 {
    display: none
}

.wp-caption {
    max-width: 100%;
    border: 1px solid var(--clr-border);
    padding: 4px;
    border-radius: 4px
}

.wp-caption-text {
    font-size: .8rem;
    color: var(--clr-muted);
    text-align: center;
    padding: 4px 0
}

.alignleft {
    float: left;
    margin: 0 1rem 1rem 0
}

.alignright {
    float: right;
    margin: 0 0 1rem 1rem
}

.aligncenter {
    display: block;
    margin: 0 auto 1rem
}

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

.container--wide {
    max-width: 1400px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s, filter .15s;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4)
}

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

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

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

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

.btn--outline:hover {
    border-color: var(--clr-red);
    color: var(--clr-red)
}

.btn--lg {
    padding: 13px 30px;
    font-size: 1rem;
    border-radius: 8px
}

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

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

.btn--block {
    width: 100%;
    justify-content: center
}

.site-header {
    background: var(--clr-nav);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #252628;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5)
}

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto
}

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

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap
}

.header-nav a {
    color: var(--clr-muted);
    font-size: .85rem;
    padding: 6px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s, background .2s
}

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

.header-nav svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px
}

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--clr-muted);
    margin-right: 6px
}

.header-online .dot {
    width: 8px;
    height: 8px;
    background: var(--clr-green);
    border-radius: 50%;
    animation: pulse 1.8s infinite
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 169, 9, .6)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(40, 169, 9, 0)
    }
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

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

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

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

.mobile-nav-wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(4px)
}

.mobile-nav-wrap.open {
    display: flex;
    flex-direction: column;
    animation: fadeIn .2s
}

.mobile-nav-inner {
    background: var(--clr-nav);
    padding: 70px 20px 30px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.mobile-nav-inner a {
    color: var(--clr-text);
    padding: 12px 16px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .95rem;
    transition: background .2s
}

.mobile-nav-inner a:hover {
    background: rgba(255, 255, 255, .07)
}

.mobile-nav-inner svg {
    width: 16px;
    height: 16px
}

.mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--clr-text);
    cursor: pointer;
    font-size: 1.4rem;
    padding: 4px 8px
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 480px
}

.hero-slider {
    position: relative;
    min-height: 480px
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s;
    display: flex;
    align-items: center
}

.hero-slide.active {
    opacity: 1;
    position: relative
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.55)
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14, 14, 14, .85) 30%, transparent 80%)
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 16px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 5, 57, .15);
    border: 1px solid rgba(229, 5, 57, .4);
    color: var(--clr-red);
    font-size: .8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #fff
}

.hero-title span {
    color: var(--clr-red)
}

.hero-sub {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, .75);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.6
}

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

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

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

.hero-dot.active {
    background: var(--clr-red);
    transform: scale(1.3)
}

.breadcrumbs {
    padding: 12px 0;
    border-bottom: 1px solid var(--clr-border)
}

.breadcrumbs-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--clr-muted);
    flex-wrap: wrap
}

.breadcrumbs-inner a {
    color: var(--clr-muted);
    transition: color .2s
}

.breadcrumbs-inner a:hover {
    color: var(--clr-text)
}

.breadcrumbs-sep {
    color: #444
}

.breadcrumbs-current {
    color: var(--clr-text)
}

.section {
    padding: 52px 0
}

.section--sm {
    padding: 32px 0
}

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff
}

.section-sub {
    color: var(--clr-muted);
    font-size: .9rem;
    margin-bottom: 28px;
    line-height: 1.6
}

.section-head {
    margin-bottom: 32px
}

.section-head .section-title {
    margin-bottom: 6px
}

.block-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px
}

.block-card--alt {
    background: var(--clr-card2)
}

.pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    margin-bottom: 24px
}

.pros-col, .cons-col {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 22px;
    overflow: hidden
}

.pros-col {
    border-top: 3px solid var(--clr-green)
}

.cons-col {
    border-top: 3px solid var(--clr-red)
}

.col-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.col-title svg {
    width: 18px;
    height: 18px
}

.pros-col .col-title {
    color: var(--clr-green)
}

.cons-col .col-title {
    color: var(--clr-red)
}

.pros-list, .cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: var(--clr-text);
    line-height: 1.5
}

.pros-list li::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    background: var(--clr-green);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: cover;
    margin-top: 2px
}

.cons-list li::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    background: var(--clr-red);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12L12 4M4 4l8 8' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: cover;
    margin-top: 2px
}

.winners-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden
}

.winners-header {
    display: grid;
    grid-template-columns:40px 1fr 1fr 1fr;
    padding: 10px 16px;
    background: #111213;
    font-size: .78rem;
    font-weight: 700;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.winners-body {
    max-height: 420px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--clr-border) transparent
}

.winner-row {
    display: grid;
    grid-template-columns:40px 1fr 1fr 1fr;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: .88rem;
    align-items: center;
    animation: slideIn .3s;
    transition: background .2s
}

.winner-row:hover {
    background: rgba(255, 255, 255, .03)
}

.winner-row:last-child {
    border-bottom: none
}

.winner-rank {
    font-weight: 700;
    color: var(--clr-muted)
}

.winner-rank.gold {
    color: #f5c842
}

.winner-rank.silver {
    color: #b0b0b0
}

.winner-rank.bronze {
    color: #c47a39
}

.winner-nick {
    font-weight: 500
}

.winner-bet {
    color: var(--clr-muted);
    font-size: .82rem
}

.winner-amount {
    font-weight: 700;
    color: var(--clr-green)
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-6px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

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

.screenshot-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s
}

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .5)
}

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

.screenshot-caption {
    padding: 10px 14px;
    background: var(--clr-card);
    font-size: .82rem;
    color: var(--clr-muted)
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s
}

.lightbox.open {
    opacity: 1;
    pointer-events: all
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer
}

.demo-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
}

.demo-frame-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden
}

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

.demo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #111213;
    flex-wrap: wrap;
    gap: 12px
}

.demo-info {
    font-size: .85rem;
    color: var(--clr-muted)
}

.demo-info strong {
    color: var(--clr-text)
}

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

.review-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    transition: transform .2s, box-shadow .2s
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .4)
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-border)
}

.review-meta {
    flex: 1
}

.review-name {
    font-weight: 600;
    font-size: .9rem
}

.review-date {
    font-size: .75rem;
    color: var(--clr-muted)
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #f5c842;
    margin-bottom: 8px
}

.review-stars svg {
    width: 15px;
    height: 15px
}

.review-text {
    font-size: .875rem;
    color: rgba(232, 232, 232, .85);
    line-height: 1.65
}

.review-form {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 560px
}

.review-form h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff
}

.form-group {
    margin-bottom: 16px
}

.form-group label {
    display: block;
    font-size: .85rem;
    color: var(--clr-muted);
    margin-bottom: 6px
}

.form-control {
    width: 100%;
    background: #111213;
    border: 1.5px solid var(--clr-border);
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: .9rem;
    padding: 10px 14px;
    border-radius: 6px;
    outline: none;
    transition: border-color .2s
}

.form-control:focus {
    border-color: var(--clr-red)
}

.form-control::placeholder {
    color: #555
}

textarea.form-control {
    resize: vertical;
    min-height: 100px
}

.form-success {
    display: none;
    background: rgba(40, 169, 9, .12);
    border: 1px solid rgba(40, 169, 9, .3);
    color: var(--clr-green);
    padding: 12px 16px;
    border-radius: 7px;
    font-size: .9rem;
    margin-top: 12px
}

.form-success.show {
    display: block;
    animation: fadeIn .3s
}

.content-body {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px 32px
}

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

.content-body h2:first-child {
    margin-top: 0
}

.content-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 8px;
    color: var(--clr-text)
}

.content-body h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 16px 0 6px;
    color: var(--clr-muted)
}

.content-body p {
    margin-bottom: 14px;
    line-height: 1.7;
    font-size: .94rem;
    color: rgba(232, 232, 232, .88)
}

.content-body ul, .content-body ol {
    margin: 0 0 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.content-body li {
    font-size: .92rem;
    line-height: 1.6;
    color: rgba(232, 232, 232, .85)
}

.content-body a {
    color: var(--clr-red)
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px auto;
    font-size: .88rem;
    overflow-x: auto;
    display: block
}

.content-body th {
    background: #111213;
    padding: 10px 14px;
    text-align: left;
    color: var(--clr-muted);
    font-weight: 600;
    border: 1px solid var(--clr-border)
}

.content-body td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
    color: var(--clr-text)
}

.content-body tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02)
}

.content-body strong {
    color: #fff;
    font-weight: 600
}

.content-body em {
    color: var(--clr-muted);
    font-style: italic
}

.content-body blockquote {
    border-left: 3px solid var(--clr-red);
    padding: 12px 16px;
    background: rgba(229, 5, 57, .06);
    border-radius: 0 6px 6px 0;
    margin: 16px 0;
    font-size: .92rem;
    color: rgba(232, 232, 232, .8)
}

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

.content-body img {
    border-radius: 7px;
    margin: 8px 0
}

.content-body code {
    background: #111213;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: .85rem;
    font-family: monospace
}

.content-body pre {
    background: #111213;
    padding: 14px;
    border-radius: 7px;
    overflow-x: auto;
    margin-bottom: 14px
}

.author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 16px
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-border);
    flex-shrink: 0;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-red)
}

.author-info {
    flex: 1
}

.author-name {
    font-weight: 700;
    font-size: .95rem;
    color: #fff
}

.author-role {
    font-size: .8rem;
    color: var(--clr-muted);
    margin-bottom: 4px
}

.author-bio {
    font-size: .82rem;
    color: rgba(232, 232, 232, .65);
    line-height: 1.5
}

.author-link {
    font-size: .8rem;
    color: var(--clr-red);
    margin-top: 4px;
    display: inline-block
}

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

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

.faq-question {
    padding: 16px 20px;
    font-weight: 600;
    font-size: .92rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background .2s;
    color: var(--clr-text)
}

.faq-question:hover {
    background: rgba(255, 255, 255, .03)
}

.faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--clr-muted);
    transition: transform .3s
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg)
}

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

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

.faq-answer-inner {
    padding: 0 20px 16px;
    font-size: .88rem;
    color: rgba(232, 232, 232, .78);
    line-height: 1.7
}

.site-footer {
    background: var(--clr-nav);
    border-top: 1px solid #252628;
    padding: 40px 0 20px
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.footer-top {
    display: grid;
    grid-template-columns:200px 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px
}

.footer-logo img {
    height: 38px;
    width: auto;
    margin-bottom: 12px
}

.footer-desc {
    font-size: .82rem;
    color: var(--clr-muted);
    line-height: 1.6
}

.footer-col h4 {
    font-size: .85rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-links a {
    font-size: .83rem;
    color: var(--clr-muted);
    transition: color .2s
}

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

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

.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.footer-payments-label {
    font-size: .78rem;
    color: var(--clr-muted);
    white-space: nowrap
}

.payment-badge {
    background: #1e1f20;
    border: 1px solid var(--clr-border);
    border-radius: 5px;
    padding: 6px 12px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    gap: 5px
}

.footer-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.trust-badge {
    background: #1e1f20;
    border: 1px solid var(--clr-border);
    border-radius: 5px;
    padding: 6px 12px;
    font-size: .72rem;
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    gap: 5px
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.footer-provider span {
    font-size: .78rem;
    color: var(--clr-muted)
}

.footer-provider img {
    height: 28px;
    width: auto;
    opacity: .7;
    filter: grayscale(1)
}

.footer-bottom {
    text-align: center
}

.footer-legal {
    font-size: .77rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px
}

.footer-copyright {
    font-size: .78rem;
    color: #444
}

.footer-game-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px
}

.footer-game-logo img {
    height: 30px;
    width: auto;
    opacity: .8
}

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

.slider-btn {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    padding: 6px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-size: .85rem;
    transition: background .2s
}

.slider-btn:hover {
    background: var(--clr-border)
}

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fade-in {
    animation: fadeIn .5s forwards
}

.fade-up {
    animation: fadeUp .5s forwards
}

.tag {
    display: inline-block;
    background: rgba(229, 5, 57, .12);
    color: var(--clr-red);
    border: 1px solid rgba(229, 5, 57, .25);
    border-radius: 4px;
    font-size: .75rem;
    padding: 2px 8px;
    font-weight: 600
}

.tag--green {
    background: rgba(40, 169, 9, .12);
    color: var(--clr-green);
    border-color: rgba(40, 169, 9, .25)
}

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

.info-table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    line-height: 1.5
}

.info-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02)
}

.info-table td:first-child {
    color: var(--clr-muted);
    font-weight: 500;
    width: 45%
}

.info-table td:last-child {
    color: var(--clr-text);
    font-weight: 500
}

.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--clr-red);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 800;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all
}

.scroll-top:hover {
    transform: translateY(-3px)
}

.scroll-top svg {
    width: 18px;
    height: 18px
}

.xc4f2 {
    display: none;
    visibility: hidden
}

.q8m3d {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

@media (max-width: 900px) {
    .pros-cons {
        grid-template-columns:1fr
    }

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

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

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

    .winners-header, .winner-row {
        grid-template-columns:34px 1fr 1fr 1fr;
        font-size: .82rem
    }
}

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

    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .hero-slide-content {
        padding: 56px 16px
    }

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

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

    .footer-col:not(:first-child) {
        display: none
    }

    .reg-widget {
        padding: 10px 12px;
        gap: 8px
    }

    .demo-footer {
        flex-direction: column;
        align-items: flex-start
    }

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

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

    .section {
        padding: 36px 0
    }

    .block-card {
        padding: 16px
    }

    .content-body {
        padding: 18px 16px
    }

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

    .hero-slide-content {
        padding: 48px 16px
    }

    .winners-header, .winner-row {
        font-size: .78rem
    }
}

.wp-block-paragraph {
    margin-bottom: 14px
}

.wp-block-heading {
    margin: 20px 0 8px
}

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

.is-style-rounded img {
    border-radius: 50%
}

.entry-meta {
    font-size: .82rem;
    color: var(--clr-muted);
    margin-bottom: 8px
}

.entry-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px
}

.wc-block-components-price-slider {
    display: none
}

.elementor-widget-container {
    display: block
}

.e-con-inner {
    max-width: 100%
}

.kjf {
    max-width: 960px;
    margin: 0 auto;
    padding: 44px 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
}

.kjf h1 {
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    margin: 0 0 14px;
}

.kjf h2 {
    font-size: clamp(1.15rem, 2.1vw, 1.55rem);
    line-height: 1.25;
    font-weight: 750;
    color: #fff;
    margin: 26px 0 10px;
}

.kjf h3 {
    font-size: clamp(1rem, 1.9vw, 1.2rem);
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin: 18px 0 8px;
}

.kjf p {
    color: rgba(232, 232, 232, .86);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 14px;
}

.kjf a {
    color: var(--clr-red, #e50539);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color .2s ease, opacity .2s ease;
}

.kjf a:hover {
    color: #ff2a5e;
}

.kjf ul,
.kjf ol {
    margin: 10px 0 16px;
    padding-left: 20px;
    color: rgba(232, 232, 232, .82);
}

.kjf ul {
    list-style: disc;
}

.kjf ol {
    list-style: decimal;
}

.kjf li {
    margin: 0 0 8px;
    line-height: 1.65;
}

.kjf strong {
    color: #fff;
    font-weight: 750;
}

.kjf blockquote {
    margin: 16px 0;
    padding: 12px 16px;
    border-left: 3px solid var(--clr-red, #e50539);
    background: rgba(229, 5, 57, .06);
    border-radius: 0 12px 12px 0;
    color: rgba(232, 232, 232, .8);
}

.kjf table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 14px 0 18px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .22);
}

.kjf th,
.kjf td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    border-right: 1px solid rgba(255, 255, 255, .06);
    font-size: .95rem;
    vertical-align: top;
}

.kjf th:last-child,
.kjf td:last-child {
    border-right: none;
}

.kjf tr:last-child th,
.kjf tr:last-child td {
    border-bottom: none;
}

.kjf th {
    background: rgba(255, 255, 255, .04);
    color: rgba(232, 232, 232, .78);
    font-weight: 700;
    letter-spacing: .02em;
}

.kjf td {
    color: rgba(232, 232, 232, .9);
    font-weight: 520;
}

.kjf hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 18px 0;
}

.kjf > *:first-child {
    margin-top: 0
}

.kjf > *:last-child {
    margin-bottom: 0
}

@media (max-width: 900px) {
    .kjf {
        max-width: 100%;
        padding: 34px 18px;
        border-radius: 14px;
    }

    .kjf table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .kjf th,
    .kjf td {
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .kjf {
        padding: 26px 14px;
        border-radius: 12px;
    }

    .kjf p {
        font-size: .98rem;
    }

    .kjf ul,
    .kjf ol {
        padding-left: 18px;
    }
}

@media (max-width: 420px) {
    .kjf {
        padding: 22px 12px;
    }

    .kjf h2 {
        margin-top: 22px;
    }
}

.block-card#game-info {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: none;
}

.block-card#game-info .section-head {
    padding: 0;
    background: transparent;
}

.block-card#game-info .info-table {
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .08);
}

.block-card#game-info .info-table td {
    background: transparent;
}

.block-card#game-info .info-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

#game-info {
    background: transparent !important;
}

#game-info table,
#game-info .info-table {
    background: transparent !important;
    border-color: rgba(255, 255, 255, .08) !important;
}

#game-info table tbody,
#game-info table tr,
#game-info table th,
#game-info table td,
#game-info .info-table tbody,
#game-info .info-table tr,
#game-info .info-table th,
#game-info .info-table td {
    background: transparent !important;
    color: rgba(232, 232, 232, .9) !important;
}

#game-info table td:first-child,
#game-info .info-table td:first-child {
    color: rgba(154, 154, 154, .95) !important;
}

#game-info table td,
#game-info table th,
#game-info .info-table td,
#game-info .info-table th {
    border-color: rgba(255, 255, 255, .08) !important;
}

#game-info table tr:nth-child(even) td,
#game-info .info-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03) !important;
}

#game-info table tr:hover td,
#game-info .info-table tr:hover td {
    background: rgba(255, 255, 255, .05) !important;
}

#game-info a {
    color: var(--clr-red) !important;
}

#game-info {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .45);
}

#game-info .section-title {
    font-size: clamp(1.25rem, 4.6vw, 2rem);
    line-height: 1.15;
    margin-bottom: 10px;
}

#game-info .section-sub {
    font-size: .92rem;
    line-height: 1.55;
    color: rgba(154, 154, 154, .95);
    margin-bottom: 18px;
}

#game-info .info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    overflow: hidden;
}

#game-info .info-table td,
#game-info .info-table th {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    border-right: 1px solid rgba(255, 255, 255, .06);
    font-size: .9rem;
    line-height: 1.35;
    vertical-align: middle;
    background: transparent;
    color: rgba(232, 232, 232, .92);
}

#game-info .info-table tr td:last-child,
#game-info .info-table tr th:last-child {
    border-right: none;
}

#game-info .info-table tr:last-child td,
#game-info .info-table tr:last-child th {
    border-bottom: none;
}

#game-info .info-table td:first-child {
    width: 44%;
    color: rgba(170, 170, 170, .95);
    font-weight: 600;
}

#game-info .info-table td:last-child {
    font-weight: 600;
    color: #fff;
}

#game-info .info-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03);
}

#game-info a {
    color: var(--clr-red);
    font-weight: 700;
}

#game-info .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .78rem;
    line-height: 1;
}

#game-info .tag--green {
    background: rgba(40, 169, 9, .16);
    border: 1px solid rgba(40, 169, 9, .35);
    color: var(--clr-green);
}

@media (max-width: 900px) {
    #game-info {
        padding: 18px;
        border-radius: 12px
    }
}

@media (max-width: 680px) {
    #game-info {
        padding: 16px;
        border-radius: 12px;
    }

    #game-info .section-title {
        font-size: 1.28rem;
        margin-bottom: 8px;
    }

    #game-info .section-sub {
        font-size: .88rem;
        margin-bottom: 14px;
    }

    #game-info > div[style*="grid-template-columns"] {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 12px !important;
        margin-bottom: 0 !important;
    }

    #game-info .info-table td,
    #game-info .info-table th {
        padding: 11px 12px;
        font-size: .88rem;
    }

    #game-info .info-table td:first-child {
        width: 52%;
    }
}

@media (max-width: 420px) {
    #game-info {
        padding: 14px
    }

    #game-info .info-table td,
    #game-info .info-table th {
        padding: 10px 10px;
        font-size: .84rem;
    }

    #game-info .tag {
        font-size: .74rem;
        padding: 3px 9px
    }
}
