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

:root {
    --c-bg: #131313;
    --c-header: #181818;
    --c-btn-dark: #0E0E10;
    --c-btn-gold: #FFD52F;
    --c-text: #e8e8e8;
    --c-text-muted: #9a9a9a;
    --c-border: #2a2a2a;
    --c-card: #1c1c1e;
    --c-card2: #1e1e20;
    --c-accent: #FFD52F;
    --c-gold2: #e8b800;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-main: 'Montserrat', 'Roboto', Arial, sans-serif;
    --transition: 0.25s ease;
}

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

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--c-accent);
    text-decoration: none;
}

a:hover {
    color: var(--c-gold2);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    margin-bottom: .8rem;
}

h3 {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: .6rem;
}

p {
    margin-bottom: .9rem;
    color: var(--c-text);
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: .9rem;
}

li {
    margin-bottom: .3rem;
}

.x9f2a {
    display: none;
    visibility: hidden;
}

.wp-block-group {
    display: block;
}

.entry-content {
    display: block;
}

.zx-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.zx-section {
    padding: 60px 0;
}

.zx-section--sm {
    padding: 40px 0;
}

.zx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.zx-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.zx-btn:active {
    transform: translateY(0);
}

.zx-btn--dark {
    background: var(--c-btn-dark);
    color: #fff;
    border: 1px solid #333;
}

.zx-btn--dark:hover {
    background: #1a1a1c;
    color: #fff;
}

.zx-btn--gold {
    background: var(--c-btn-gold);
    color: #0E0E10;
    box-shadow: 0 0 18px rgba(255, 213, 47, .35);
}

.zx-btn--gold:hover {
    background: #ffe055;
    color: #0E0E10;
    box-shadow: 0 0 28px rgba(255, 213, 47, .55);
}

.zx-btn--sm {
    padding: 8px 16px;
    font-size: 13px;
}

.zx-btn--lg {
    padding: 14px 32px;
    font-size: 16px;
}

.zx-tag {
    display: inline-block;
    background: rgba(255, 213, 47, .12);
    color: var(--c-accent);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.zx-hdr {
    background: var(--c-header);
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.zx-hdr__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 64px;
}

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

.zx-hdr__logo img {
    height: 38px;
    width: auto;
}

.zx-hdr__logo-text {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.zx-hdr__logo-text span {
    color: var(--c-accent);
}

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

.zx-hdr__nav a {
    color: #ccc;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}

.zx-hdr__nav a:hover {
    color: var(--c-accent);
    background: rgba(255, 213, 47, .07);
}

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

.zx-hdr__online {
    font-size: 11px;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.zx-hdr__online-dot {
    width: 7px;
    height: 7px;
    background: #2ecc40;
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .4;
    }
}

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

.zx-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

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

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

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

.zx-mob-menu {
    display: none;
    background: var(--c-header);
    border-top: 1px solid #222;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px;
    flex-direction: column;
    gap: 8px;
}

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

.zx-mob-menu a {
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
    display: block;
}

.zx-mob-menu a:hover {
    color: var(--c-accent);
    background: rgba(255, 213, 47, .07);
}

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

.zx-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-zet.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.zx-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 13, 13, .92) 0%, rgba(13, 13, 13, .65) 55%, rgba(13, 13, 13, .15) 100%);
}

.zx-hero__content {
    position: relative;
    z-index: 1;
    max-width: 580px;
    padding: 60px 0;
}

.zx-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 213, 47, .15);
    border: 1px solid rgba(255, 213, 47, .3);
    color: var(--c-accent);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.zx-hero__title {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.zx-hero__title span {
    color: var(--c-accent);
}

.zx-hero__sub {
    font-size: 1rem;
    color: #d0d0d0;
    margin-bottom: 28px;
    line-height: 1.6;
}

.zx-hero__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.zx-hero__trust {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.zx-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #aaa;
}

.zx-hero__trust-icon {
    color: var(--c-accent);
    font-size: 14px;
}

.zx-section-title {
    text-align: center;
    margin-bottom: 36px;
}

.zx-section-title h2 {
    position: relative;
    display: inline-block;
}

.zx-section-title h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--c-accent);
    border-radius: 2px;
    margin: 10px auto 0;
}

.zx-section-title p {
    color: var(--c-text-muted);
    font-size: 14px;
    margin-top: 8px;
}

.zx-toc {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 24px 28px;
}

.zx-toc__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zx-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 6px 16px;
}

.zx-toc__list li {
    counter-increment: toc;
}

.zx-toc__list a {
    color: var(--c-text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    transition: color var(--transition);
}

.zx-toc__list a::before {
    content: counter(toc) ".";
    color: var(--c-accent);
    font-weight: 700;
    font-size: 12px;
    min-width: 18px;
}

.zx-toc__list a:hover {
    color: var(--c-accent);
}

.zx-toc {
    counter-reset: toc;
}

.zx-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

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

.zx-info-table td {
    padding: 11px 16px;
    border: 1px solid var(--c-border);
    vertical-align: top;
    text-align: left;
}

.zx-info-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 42%;
    white-space: nowrap;
}

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

.zx-info-table td strong {
    color: var(--c-accent);
}

.zx-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
}

.zx-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #000;
}

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

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

.zx-bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.zx-bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-gold2) 100%);
}

.zx-bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 213, 47, .35);
}

.zx-bonus-card__icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.zx-bonus-card__type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--c-accent);
    margin-bottom: 6px;
}

.zx-bonus-card__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.zx-bonus-card__amount {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--c-accent);
    margin-bottom: 10px;
    line-height: 1;
}

.zx-bonus-card__desc {
    font-size: 12px;
    color: var(--c-text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
}

.zx-bonus-card__terms {
    font-size: 11px;
    color: #555;
    border-top: 1px solid var(--c-border);
    padding-top: 10px;
    margin-top: 6px;
}

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

.zx-game-card {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
}

.zx-game-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 213, 47, .3);
}

.zx-game-card__img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.zx-game-card__body {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.zx-game-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.zx-game-card__provider {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-top: 2px;
}

.zx-wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 36px 24px;
}

.zx-wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.zx-wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 213, 47, .25);
    display: block;
}

.zx-wheel-arrow {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 28px solid var(--c-accent);
    filter: drop-shadow(0 2px 6px rgba(255, 213, 47, .6));
}

.zx-wheel-info {
    text-align: center;
    max-width: 340px;
}

.zx-wheel-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.zx-wheel-info p {
    color: var(--c-text-muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.zx-wheel-result {
    margin-top: 16px;
    padding: 16px 24px;
    background: rgba(255, 213, 47, .1);
    border: 1px solid rgba(255, 213, 47, .3);
    border-radius: var(--radius-md);
    display: none;
    text-align: center;
    animation: fadeInUp .4s ease;
}

.zx-wheel-result.show {
    display: block;
}

.zx-wheel-result__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: 6px;
}

.zx-wheel-result__text {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 14px;
}

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

.zx-review-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 32px;
}

.zx-review-content h2 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: .8rem;
    margin-top: 1.6rem;
}

.zx-review-content h2:first-child {
    margin-top: 0;
}

.zx-review-content h3 {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: .6rem;
    margin-top: 1.2rem;
}

.zx-review-content h4 {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: .5rem;
    margin-top: 1rem;
}

.zx-review-content p {
    color: #c8c8c8;
    line-height: 1.7;
    margin-bottom: .9rem;
}

.zx-review-content ul, .zx-review-content ol {
    padding-left: 1.5rem;
    margin-bottom: .9rem;
}

.zx-review-content li {
    color: #c8c8c8;
    margin-bottom: .4rem;
    line-height: 1.6;
}

.zx-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 14px;
}

.zx-review-content table td, .zx-review-content table th {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    text-align: left;
}

.zx-review-content table th {
    background: rgba(255, 213, 47, .08);
    color: var(--c-accent);
    font-weight: 700;
}

.zx-review-content a {
    color: var(--c-accent);
}

.zx-review-content strong, .zx-review-content b {
    color: #fff;
}

.zx-review-content blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 18px;
    margin: 1rem 0;
    background: rgba(255, 213, 47, .05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #ccc;
}

.zx-review-content img {
    border-radius: var(--radius-sm);
    margin: .6rem 0;
}

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

.zx-author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 32px;
}

.zx-author-box__img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 213, 47, .4);
}

.zx-author-box__info {
    flex: 1;
}

.zx-author-box__label {
    font-size: 11px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 3px;
}

.zx-author-box__name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.zx-author-box__name a {
    color: var(--c-accent);
}

.zx-author-box__desc {
    font-size: 12px;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.zx-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}

.zx-review-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px;
}

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

.zx-review-card__ava {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--c-border);
}

.zx-review-card__meta {
    flex: 1;
}

.zx-review-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.zx-review-card__date {
    font-size: 11px;
    color: var(--c-text-muted);
}

.zx-review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.zx-review-card__stars svg {
    fill: var(--c-accent);
}

.zx-review-card__text {
    font-size: 13px;
    color: #c0c0c0;
    line-height: 1.6;
}

.zx-review-form {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 28px;
    max-width: 580px;
}

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

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

.zx-form-group label {
    display: block;
    font-size: 13px;
    color: var(--c-text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.zx-form-group input, .zx-form-group textarea {
    width: 100%;
    background: #1a1a1c;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-main);
    font-size: 14px;
    padding: 10px 14px;
    outline: none;
    transition: border-color var(--transition);
}

.zx-form-group input:focus, .zx-form-group textarea:focus {
    border-color: rgba(255, 213, 47, .5);
}

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

.zx-form-group input::placeholder, .zx-form-group textarea::placeholder {
    color: #555;
}

.zx-form-success {
    display: none;
    text-align: center;
    padding: 24px;
    background: rgba(46, 204, 64, .1);
    border: 1px solid rgba(46, 204, 64, .3);
    border-radius: var(--radius-md);
}

.zx-form-success.show {
    display: block;
}

.zx-form-success__icon {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #2ecc40;
}

.zx-form-success__text {
    color: #ccc;
    font-size: 14px;
}

.zx-ftr {
    background: var(--c-header);
    border-top: 1px solid #222;
    padding: 44px 0 28px;
}

.zx-ftr__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 32px;
}

.zx-ftr__brand {
}

.zx-ftr__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.zx-ftr__logo img {
    height: 36px;
    width: auto;
}

.zx-ftr__logo-text {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
}

.zx-ftr__logo-text span {
    color: var(--c-accent);
}

.zx-ftr__desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.zx-ftr__col-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.zx-ftr__nav {
    list-style: none;
    padding: 0;
}

.zx-ftr__nav li {
    margin-bottom: 8px;
}

.zx-ftr__nav a {
    font-size: 13px;
    color: var(--c-text-muted);
    transition: color var(--transition);
}

.zx-ftr__nav a:hover {
    color: var(--c-accent);
}

.zx-ftr__logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.zx-ftr__logo-badge {
    background: #222;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    letter-spacing: .4px;
}

.zx-ftr__bottom {
    border-top: 1px solid #222;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.zx-ftr__copy {
    font-size: 12px;
    color: #555;
}

.zx-ftr__legal {
    font-size: 11px;
    color: #444;
    line-height: 1.6;
    max-width: 860px;
}

.zx-ftr__legal a {
    color: #555;
}

.zx-ftr__age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #333;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.zx-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: linear-gradient(90deg, #0E0E10 0%, #1a1a1c 100%);
    border-top: 2px solid var(--c-accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
}

.zx-widget__text {
    font-size: 13px;
    color: #d0d0d0;
    flex: 1;
}

.zx-widget__text strong {
    color: var(--c-accent);
}

.zx-widget__close {
    background: none;
    border: none;
    color: #555;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    line-height: 1;
    transition: color var(--transition);
}

.zx-widget__close:hover {
    color: #aaa;
}

.zx-slider-wrap {
    position: relative;
    overflow: hidden;
}

.zx-slider-track {
    display: flex;
    gap: 16px;
    transition: transform .35s ease;
}

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

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

.zx-slider-dot.active {
    background: var(--c-accent);
}

.zx-slider-arrows {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.zx-slider-arrow-btn {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}

.zx-slider-arrow-btn:hover {
    background: rgba(255, 213, 47, .1);
    border-color: rgba(255, 213, 47, .4);
}

.zx-faq-item {
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}

.zx-faq-btn {
    width: 100%;
    text-align: left;
    background: var(--c-card2);
    border: none;
    color: #fff;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background var(--transition);
}

.zx-faq-btn:hover {
    background: rgba(255, 213, 47, .06);
}

.zx-faq-btn .zx-faq-icon {
    font-size: 18px;
    color: var(--c-accent);
    flex-shrink: 0;
    transition: transform .3s;
}

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

.zx-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 18px;
    background: var(--c-card);
}

.zx-faq-item.open .zx-faq-answer {
    max-height: 400px;
    padding: 14px 18px;
}

.zx-faq-answer p {
    font-size: 13px;
    color: #c0c0c0;
    margin: 0;
    line-height: 1.7;
}

.zx-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border) 20%, var(--c-border) 80%, transparent);
    margin: 0;
}

.zx-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--c-text-muted);
    padding: 12px 0;
    flex-wrap: wrap;
}

.zx-breadcrumb a {
    color: var(--c-text-muted);
}

.zx-breadcrumb a:hover {
    color: var(--c-accent);
}

.zx-breadcrumb-sep {
    opacity: .4;
}

.zx-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.wp-block-image {
    display: block;
}

.wp-block-paragraph {
    display: block;
}

.elementor-widget-container {
    display: block;
}

.site-footer-widget-area {
    display: block;
}

.post-meta {
    display: none;
}

.wp-caption {
    display: none;
}

@media (max-width: 1024px) {
    .zx-bonuses {
        grid-template-columns: repeat(2, 1fr);
    }

    .zx-games {
        grid-template-columns: repeat(2, 1fr);
    }

    .zx-ftr__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .zx-hdr__nav {
        display: none;
    }

    .zx-burger {
        display: flex;
    }

    .zx-hdr {
        position: sticky;
    }

    .zx-hdr__inner {
        height: 58px;
    }

    .zx-bonuses {
        grid-template-columns: 1fr;
    }

    .zx-bonus-card {
        padding: 22px 18px;
    }

    .zx-games {
        grid-template-columns: 1fr 1fr;
    }

    .zx-ftr__top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .zx-hero__content {
        padding: 40px 0;
    }

    .zx-section {
        padding: 44px 0;
    }

    .zx-review-content {
        padding: 20px 16px;
    }

    .zx-toc__list {
        grid-template-columns: 1fr;
    }

    .zx-grid-2 {
        grid-template-columns: 1fr;
    }

    .zx-grid-3 {
        grid-template-columns: 1fr;
    }

    .zx-wheel-container {
        width: 260px;
        height: 260px;
    }

    .zx-author-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .zx-widget {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 520px) {
    .zx-games {
        grid-template-columns: 1fr;
    }

    .zx-slider-arrows {
        display: flex;
    }

    .zx-hero__btns {
        flex-direction: column;
    }

    .zx-hero__btns .zx-btn {
        width: 100%;
        text-align: center;
    }

    .zx-info-table td:first-child {
        width: 50%;
    }
}

.fd-a1b2 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.r9x-hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.block-k7mz {
    background: none;
    border: none;
}

.wpcf7-form {
    display: block;
}
