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

:root {
    --clr-black: #000000;
    --clr-white: #ffffff;
    --clr-bg: #f5f5f5;
    --clr-btn-gray: #999999;
    --clr-btn-green: #2ecc71;
    --clr-btn-green-hover: #27ae60;
    --clr-text: #1a1a1a;
    --clr-text-light: #555555;
    --clr-border: #e0e0e0;
    --clr-card: #ffffff;
    --clr-star: #f5a623;
    --clr-pro: #1a7a4a;
    --clr-con: #c0392b;
    --clr-rating-low: #e74c3c;
    --clr-rating-mid: #f39c12;
    --clr-rating-high: #2ecc71;
    --radius: 8px;
    --shadow: 0 2px 12px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, .13);
    --transition: .22s ease;
}

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

body {
    font-family: Helvetica, Arial, sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

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

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: inherit
}

/* ─── UTILITIES ─── */
.xb7q2 {
    display: none
}

.zk49r {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

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

.flex {
    display: flex
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.gap-8 {
    gap: 8px
}

.gap-12 {
    gap: 12px
}

.gap-16 {
    gap: 16px
}

.gap-24 {
    gap: 24px
}

.mt-8 {
    margin-top: 8px
}

.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.mt-32 {
    margin-top: 32px
}

.mb-8 {
    margin-bottom: 8px
}

.mb-16 {
    margin-bottom: 16px
}

.text-center {
    text-align: center
}

.text-sm {
    font-size: .875rem
}

.text-xs {
    font-size: .75rem
}

.fw-bold {
    font-weight: 700
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.wp-block-embed {
    display: none
}

.entry-content-placeholder {
    display: none
}

.widget-area .widget {
    display: none
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 600;
    border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .18)
}

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

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

.btn--gray:hover {
    background: #888
}

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

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

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

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

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

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

/* ─── HEADER ─── */
.xh-header {
    background: var(--clr-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .35)
}

.xh-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    max-width: 1180px;
    margin: 0 auto
}

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

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

.xh-logo__text {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .5px
}

.xh-nav {
    display: flex;
    align-items: center;
    gap: 4px
}

.xh-nav a {
    color: #ccc;
    font-size: .88rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
    display: flex;
    align-items: center;
    gap: 5px
}

.xh-nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.xh-nav a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

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

.xh-review-count {
    color: #aaa;
    font-size: .78rem;
    white-space: nowrap
}

.xh-review-count span {
    color: var(--clr-btn-green);
    font-weight: 700
}

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

.xh-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition)
}

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

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

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

.xh-mobile-nav {
    display: none;
    background: var(--clr-black);
    border-top: 1px solid #222
}

.xh-mobile-nav.open {
    display: block
}

.xh-mobile-nav ul {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.xh-mobile-nav a {
    color: #ccc;
    padding: 9px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .92rem;
    transition: background var(--transition)
}

.xh-mobile-nav a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

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

.xh-mobile-bottom {
    padding: 12px 16px;
    border-top: 1px solid #222;
    display: flex;
    flex-direction: column;
    gap: 8px
}

/* ─── HERO ─── */
.xh-hero {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: center
}

.xh-hero__bg {
    position: absolute;
    inset: 0;
    background: #1a1a2e no-repeat center/cover
}

.xh-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .45
}

.xh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .4) 100%)
}

.xh-hero__content {
    position: relative;
    z-index: 2;
    padding: 40px 0
}

.xh-hero__grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px;
    align-items: start
}

.xh-casino-card {
    background: var(--clr-card);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow-md)
}

.xh-casino-card__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.xh-casino-card__logo img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover
}

.xh-casino-card__name {
    font-size: 1.3rem;
    font-weight: 700
}

.xh-casino-card__bonus {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: .95rem
}

.xh-casino-card__bonus span {
    display: block;
    font-size: .8rem;
    font-weight: 400;
    opacity: .9
}

.xh-rating-score {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.xh-rating-score__num {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--clr-text)
}

.xh-rating-score__stars {
    display: flex;
    gap: 2px
}

.xh-rating-score__stars .star {
    font-size: 1.3rem;
    color: #ddd
}

.xh-rating-score__stars .star.on {
    color: var(--clr-star)
}

.xh-progress-bar {
    width: 100%;
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px
}

.xh-progress-bar__fill {
    height: 100%;
    border-radius: 4px;
    transition: width .6s ease
}

.xh-casino-card__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px
}

.xh-casino-card__actions .btn {
    width: 100%;
    justify-content: center
}

.xh-rating-breakdown {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    padding: 20px;
    color: #fff
}

.xh-rating-breakdown h3 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: #fff
}

.xh-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px
}

.xh-rating-row__label {
    font-size: .82rem;
    color: #ddd;
    width: 24px;
    text-align: center;
    flex-shrink: 0
}

.xh-rating-row__bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .2);
    border-radius: 3px;
    overflow: hidden
}

.xh-rating-row__fill {
    height: 100%;
    border-radius: 3px
}

.xh-rating-row__count {
    font-size: .78rem;
    color: #ccc;
    width: 22px;
    text-align: right;
    flex-shrink: 0
}

.xh-rating-row__stars {
    display: flex;
    gap: 1px
}

.xh-rating-row__stars .star {
    font-size: .85rem;
    color: rgba(255, 255, 255, .3)
}

.xh-rating-row__stars .star.on {
    color: var(--clr-star)
}

.xh-hero__info-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    margin-top: 20px
}

.xh-info-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 18px;
    color: #fff
}

.xh-info-card h4 {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #aaa;
    margin-bottom: 12px
}

.xh-info-params {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.xh-info-param {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .83rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 6px
}

.xh-info-param:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.xh-info-param__key {
    color: #bbb
}

.xh-info-param__val {
    font-weight: 600;
    color: #fff;
    text-align: right;
    max-width: 60%
}

.xh-info-expand-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #ddd;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .8rem;
    margin-top: 12px;
    transition: background var(--transition)
}

.xh-info-expand-btn:hover {
    background: rgba(255, 255, 255, .12)
}

.xh-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px
}

.xh-logo-badge {
    background: rgba(255, 255, 255, .15);
    border-radius: 5px;
    padding: 3px 8px;
    font-size: .75rem;
    color: #ddd
}

.xh-pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    margin-top: 20px
}

.xh-pros-cons__col {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 16px;
    color: #fff
}

.xh-pros-cons__col h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .9rem;
    margin-bottom: 10px
}

.xh-pros-cons__col h4.pros {
    color: #2ecc71
}

.xh-pros-cons__col h4.cons {
    color: #e74c3c
}

.xh-pros-cons__col li {
    font-size: .83rem;
    color: #ddd;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px
}

.xh-pros-cons__col li::before {
    flex-shrink: 0;
    margin-top: 3px
}

.xh-pros-cons__col.pros-col li::before {
    content: "✓";
    color: #2ecc71;
    font-weight: 700
}

.xh-pros-cons__col.cons-col li::before {
    content: "✕";
    color: #e74c3c;
    font-weight: 700
}

/* ─── LEAVE A REVIEW ─── */
.xh-section {
    padding: 52px 0
}

.xh-section--alt {
    background: var(--clr-bg)
}

.xh-section__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px
}

.xh-section__sub {
    color: var(--clr-text-light);
    font-size: .95rem;
    margin-bottom: 28px
}

.xh-bonus-banner {
    background: linear-gradient(90deg, #1a7a4a 0%, #2ecc71 100%);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px rgba(46, 204, 113, .3)
}

.xh-bonus-banner__text {
    color: #fff
}

.xh-bonus-banner__text h3 {
    font-size: 1.05rem;
    font-weight: 700
}

.xh-bonus-banner__text p {
    font-size: .85rem;
    opacity: .9;
    margin-top: 2px
}

.xh-bonus-banner .btn {
    flex-shrink: 0;
    background: #fff;
    color: #1a7a4a;
    font-weight: 700
}

.xh-bonus-banner .btn:hover {
    background: #f0f0f0
}

.xh-form {
    background: var(--clr-card);
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--shadow);
    max-width: 680px
}

.xh-form h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px
}

.xh-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px
}

.xh-form__field label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--clr-text)
}

.xh-form__field input,
.xh-form__field textarea,
.xh-form__field select {
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: .9rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #fff;
    color: var(--clr-text);
    width: 100%
}

.xh-form__field input:focus,
.xh-form__field textarea:focus,
.xh-form__field select:focus {
    outline: none;
    border-color: var(--clr-btn-green);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, .15)
}

.xh-form__field textarea {
    resize: vertical;
    min-height: 100px
}

.xh-form__ratings {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px;
    margin-bottom: 16px
}

.xh-form__rating-item {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.xh-form__rating-item label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--clr-text-light)
}

.xh-star-select {
    display: flex;
    gap: 4px;
    direction: rtl
}

.xh-star-select input {
    display: none
}

.xh-star-select label {
    font-size: 1.4rem;
    color: #ddd;
    cursor: pointer;
    transition: color var(--transition)
}

.xh-star-select label:hover,
.xh-star-select label:hover ~ label,
.xh-star-select input:checked ~ label {
    color: var(--clr-star)
}

.xh-form__success {
    display: none;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: var(--radius);
    padding: 14px 18px;
    color: #155724;
    font-size: .9rem;
    margin-top: 12px
}

.xh-form__success.show {
    display: flex;
    align-items: center;
    gap: 8px
}

/* ─── USER REVIEWS ─── */
.xh-reviews-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-top: 8px
}

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

.xh-review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px)
}

.xh-review-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px
}

.xh-review-card__author {
    display: flex;
    align-items: center;
    gap: 10px
}

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

.xh-review-card__meta strong {
    font-size: .92rem;
    display: block
}

.xh-review-card__country {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .75rem;
    color: var(--clr-text-light);
    margin-top: 2px
}

.xh-review-card__country img {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px
}

.xh-review-card__date {
    font-size: .75rem;
    color: var(--clr-text-light)
}

.xh-review-card__rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px
}

.xh-review-card__stars {
    display: flex;
    gap: 1px
}

.xh-review-card__stars .star {
    font-size: 1rem;
    color: #ddd
}

.xh-review-card__stars .star.on {
    color: var(--clr-star)
}

.xh-review-card__score {
    font-size: .75rem;
    font-weight: 700;
    color: var(--clr-text-light)
}

.xh-review-card__rating-toggle {
    font-size: .7rem;
    color: var(--clr-btn-green);
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: underline;
    margin-top: 2px
}

.xh-review-card__details {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 10px;
    margin-top: 8px;
    display: none;
    font-size: .78rem
}

.xh-review-card__details.open {
    display: block
}

.xh-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    border-bottom: 1px solid #ececec
}

.xh-detail-row:last-child {
    border-bottom: none
}

.xh-detail-stars {
    display: flex;
    gap: 1px
}

.xh-detail-stars .star {
    font-size: .8rem;
    color: #ddd
}

.xh-detail-stars .star.on {
    color: var(--clr-star)
}

.xh-review-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px
}

.xh-review-card__source {
    font-size: .75rem;
    color: var(--clr-text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px
}

.xh-review-card__source a {
    color: var(--clr-btn-green);
    text-decoration: underline
}

.xh-review-card__source-badge {
    background: #f0f0f0;
    border-radius: 4px;
    padding: 1px 6px;
    font-size: .7rem
}

.xh-review-card__body {
    font-size: .88rem;
    color: var(--clr-text-light);
    line-height: 1.6;
    position: relative
}

.xh-review-card__body .xh-body-text {
    overflow: hidden
}

.xh-review-card__body .xh-body-text.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.xh-review-card__expand {
    background: none;
    border: none;
    color: var(--clr-btn-green);
    font-size: .8rem;
    cursor: pointer;
    padding: 4px 0;
    display: none;
    text-decoration: underline
}

.xh-review-card__expand.visible {
    display: inline-block
}

.xh-pros-cons-mini {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 8px;
    margin-top: 12px
}

.xh-pros-mini h6, .xh-cons-mini h6 {
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 4px
}

.xh-pros-mini h6 {
    color: var(--clr-pro)
}

.xh-cons-mini h6 {
    color: var(--clr-con)
}

.xh-pros-mini li, .xh-cons-mini li {
    font-size: .75rem;
    color: var(--clr-text-light);
    padding: 2px 0;
    display: flex;
    gap: 4px
}

.xh-pros-mini li::before {
    content: "+";
    color: var(--clr-pro);
    font-weight: 700;
    flex-shrink: 0
}

.xh-cons-mini li::before {
    content: "−";
    color: var(--clr-con);
    font-weight: 700;
    flex-shrink: 0
}

.xh-review-card__media {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px
}

.xh-review-card__media img {
    width: 72px;
    height: 56px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid var(--clr-border)
}

.xh-review-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--clr-border)
}

.xh-vote-wrap {
    display: flex;
    gap: 8px
}

.xh-vote-btn {
    background: #f5f5f5;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background var(--transition), border-color var(--transition)
}

.xh-vote-btn:hover {
    background: #eee
}

.xh-vote-btn.voted {
    border-color: var(--clr-btn-green);
    background: #f0fdf4
}

.xh-reply-toggle {
    background: none;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .8rem;
    color: var(--clr-text-light);
    transition: background var(--transition)
}

.xh-reply-toggle:hover {
    background: #f0f0f0
}

.xh-reply-form {
    display: none;
    margin-top: 12px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 12px
}

.xh-reply-form.open {
    display: block
}

.xh-reply-form textarea {
    width: 100%;
    border: 1.5px solid var(--clr-border);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: .85rem;
    font-family: inherit;
    resize: vertical;
    min-height: 70px;
    background: #fff
}

.xh-reply-form textarea:focus {
    outline: none;
    border-color: var(--clr-btn-green)
}

.xh-reply-form__actions {
    display: flex;
    gap: 8px;
    margin-top: 8px
}

/* ─── FAQ ─── */
.xh-faq {
    margin-top: 40px
}

.xh-faq__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px
}

.xh-accordion-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.xh-accordion-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--clr-text);
    transition: background var(--transition)
}

.xh-accordion-btn:hover {
    background: #f9f9f9
}

.xh-accordion-btn.open {
    background: #f5f5f5
}

.xh-accordion-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: #999
}

.xh-accordion-btn.open .xh-accordion-icon {
    transform: rotate(180deg)
}

.xh-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease
}

.xh-accordion-body.open {
    max-height: 400px
}

.xh-accordion-body__inner {
    padding: 0 20px 16px;
    font-size: .88rem;
    color: var(--clr-text-light);
    line-height: 1.7
}

/* ─── COMPARISON TABLE ─── */
.xh-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 8px
}

.xh-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-width: 520px
}

.xh-table th {
    background: var(--clr-black);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-size: .85rem;
    font-weight: 600
}

.xh-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--clr-border);
    font-size: .85rem;
    vertical-align: middle
}

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

.xh-table tr:hover td {
    background: #fafafa
}

.xh-table__highlight {
    background: #f0fdf4 !important
}

.xh-table__highlight td {
    font-weight: 600
}

.xh-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: .78rem;
    font-weight: 700
}

.xh-rating-pill--high {
    background: #d4edda;
    color: #155724
}

.xh-rating-pill--mid {
    background: #fff3cd;
    color: #856404
}

.xh-rating-pill--low {
    background: #f8d7da;
    color: #721c24
}

/* ─── SUPPLEMENTARY CONTENT ─── */
.xh-content-block {
    background: var(--clr-card);
    border-radius: 14px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--clr-border)
}

.xh-content-block h1, .xh-content-block h2, .xh-content-block h3, .xh-content-block h4, .xh-content-block h5, .xh-content-block h6 {
    margin: 1.2em 0 .5em;
    line-height: 1.3;
    color: var(--clr-text)
}

.xh-content-block h1 {
    font-size: 1.6rem
}

.xh-content-block h2 {
    font-size: 1.35rem;
    border-bottom: 2px solid var(--clr-border);
    padding-bottom: 6px
}

.xh-content-block h3 {
    font-size: 1.15rem
}

.xh-content-block p {
    margin-bottom: 1em;
    line-height: 1.7;
    color: var(--clr-text-light)
}

.xh-content-block ul, .xh-content-block ol {
    margin: 0 0 1em 1.4em;
    color: var(--clr-text-light)
}

.xh-content-block ul {
    list-style: disc
}

.xh-content-block ol {
    list-style: decimal
}

.xh-content-block li {
    padding: 3px 0;
    line-height: 1.6
}

.xh-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: .88rem
}

.xh-content-block table th {
    background: var(--clr-black);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-size: .83rem
}

.xh-content-block table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
    text-align: left
}

.xh-content-block table tr:nth-child(even) td {
    background: #fafafa
}

.xh-content-block a {
    color: var(--clr-btn-green);
    text-decoration: underline
}

.xh-content-block blockquote {
    border-left: 4px solid var(--clr-btn-green);
    padding: 10px 16px;
    background: #f9f9f9;
    margin: 1em 0;
    font-style: italic;
    color: var(--clr-text-light)
}

.xh-content-block strong, .xh-content-block b {
    color: var(--clr-text);
    font-weight: 700
}

.xh-content-block img {
    border-radius: 8px;
    margin: 1em 0
}

.xh-content-block pre {
    background: #f5f5f5;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 12px 16px;
    overflow-x: auto;
    font-size: .82rem
}

.xh-content-block code {
    background: #f0f0f0;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: .84rem
}

.xh-author-card {
    background: var(--clr-card);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--clr-border);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px
}

.xh-author-card__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--clr-border)
}

.xh-author-card__info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px
}

.xh-author-card__info p {
    font-size: .85rem;
    color: var(--clr-text-light);
    line-height: 1.6;
    margin-bottom: 10px
}

.xh-author-card__socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.xh-author-card__socials a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    color: var(--clr-btn-green);
    border: 1px solid var(--clr-btn-green);
    border-radius: 6px;
    padding: 4px 10px;
    transition: background var(--transition)
}

.xh-author-card__socials a:hover {
    background: var(--clr-btn-green);
    color: #fff
}

.xh-author-card__socials a svg {
    width: 14px;
    height: 14px
}

.xh-footer {
    background: var(--clr-black);
    color: #aaa;
    padding: 40px 0 0
}

.xh-footer__grid {
    display: grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #222
}

.xh-footer__brand img {
    height: 38px;
    margin-bottom: 12px
}

.xh-footer__brand p {
    font-size: .82rem;
    line-height: 1.6;
    max-width: 280px
}

.xh-footer__col h5 {
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.xh-footer__col ul li {
    margin-bottom: 6px
}

.xh-footer__col ul a {
    font-size: .83rem;
    color: #888;
    transition: color var(--transition)
}

.xh-footer__col ul a:hover {
    color: #fff
}

.xh-footer__trust {
    padding: 20px 0;
    border-bottom: 1px solid #222
}

.xh-footer__trust h5 {
    color: #555;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px
}

.xh-trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.xh-trust-logo {
    background: #111;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .72rem;
    color: #666;
    border: 1px solid #222
}

.xh-footer__bottom {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.xh-footer__copy {
    font-size: .78rem
}

.xh-footer__legal {
    font-size: .72rem;
    color: #555;
    max-width: 660px;
    line-height: 1.5
}

.xh-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--clr-black);
    border-top: 2px solid var(--clr-btn-green);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .25)
}

.xh-widget__text {
    color: #fff;
    font-size: .88rem;
    font-weight: 700
}

.xh-widget__text span {
    color: var(--clr-btn-green)
}

.xh-widget__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

.xh-widget a {
    text-decoration: none
}

.xh-widget__close {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    padding: 4px 8px;
    transition: color var(--transition);
    cursor: pointer
}

.xh-widget__close:hover {
    color: #fff
}

.xh-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease
}

.xh-modal-overlay.open {
    opacity: 1;
    visibility: visible
}

.xh-modal {
    background: #fff;
    border-radius: 14px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 28px;
    position: relative;
    transform: translateY(20px);
    transition: transform .25s ease
}

.xh-modal-overlay.open .xh-modal {
    transform: translateY(0)
}

.xh-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #999;
    cursor: pointer
}

.xh-modal__close:hover {
    color: #333
}

.xh-modal h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px
}

.xh-spoiler summary {
    cursor: pointer;
    font-size: .85rem;
    color: var(--clr-btn-green);
    list-style: none;
    padding: 6px 0
}

.xh-spoiler summary::-webkit-details-marker {
    display: none
}

.xh-spoiler summary::before {
    content: "+ ";
    font-weight: 700
}

.xh-spoiler[open] summary::before {
    content: "− "
}

.xh-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none
}

.xh-lightbox.open {
    display: flex
}

.xh-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px
}

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

.xh-scroll-top {
    position: fixed;
    bottom: 70px;
    right: 16px;
    z-index: 990;
    background: var(--clr-black);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    cursor: pointer
}

.xh-scroll-top.show {
    opacity: 1;
    visibility: visible
}

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

.xh-sep {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--clr-btn-green) 40%, transparent 100%);
    opacity: .25;
    border: none;
    margin: 0
}

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

.xh-fadein {
    animation: xhFadeUp .5s ease both
}

.xh-fadein--d1 {
    animation-delay: .1s
}

.xh-fadein--d2 {
    animation-delay: .2s
}

.xh-fadein--d3 {
    animation-delay: .3s
}

.elementor-widget-wrap .e-con-inner {
    display: none
}

.wp-block-group__inner-container {
    display: none
}

.wp-site-blocks > .wp-block-template-part {
    display: none
}

.has-global-padding {
    display: none
}

.is-layout-flow > .alignleft:first-child {
    display: none
}

#wpadminbar {
    display: none
}

.yoast-seo-score {
    display: none
}

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

    .xh-hero__info-row {
        grid-template-columns:1fr
    }

    .xh-pros-cons {
        grid-template-columns:1fr
    }

    .xh-footer__grid {
        grid-template-columns:1fr 1fr
    }
}

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

    .xh-burger {
        display: flex
    }

    .xh-header__actions .xh-review-count {
        display: none
    }

    .xh-form__ratings {
        grid-template-columns:1fr
    }

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

    .xh-footer__grid {
        grid-template-columns:1fr
    }

    .xh-author-card {
        flex-direction: column
    }

    .xh-widget__text {
        font-size: .78rem
    }

    .xh-pros-cons-mini {
        grid-template-columns:1fr
    }
}

@media (max-width: 480px) {
    .xh-hero {
        min-height: auto
    }

    .xh-hero__content {
        padding: 28px 0
    }

    .xh-section {
        padding: 36px 0
    }

    .xh-section__title {
        font-size: 1.3rem
    }

    .xh-casino-card {
        padding: 16px
    }

    .xh-form {
        padding: 18px
    }

    .xh-content-block {
        padding: 18px
    }

    .xh-bonus-banner {
        flex-direction: column;
        align-items: flex-start
    }
}

:root {
    --clr-black: #000000;
    --clr-white: #ffffff;
    --clr-bg: #0f1012;
    --clr-btn-gray: #2b2d33;
    --clr-btn-green: #2ecc71;
    --clr-btn-green-hover: #27ae60;
    --clr-text: #e8e8e8;
    --clr-text-light: #b0b3ba;
    --clr-border: rgba(255, 255, 255, .10);
    --clr-card: rgba(18, 19, 22, .86);
    --clr-star: #f5a623;
    --clr-pro: #2ecc71;
    --clr-con: #ff4d4d;
    --clr-rating-low: #ff4d4d;
    --clr-rating-mid: #f39c12;
    --clr-rating-high: #2ecc71;
    --radius: 12px;
    --shadow: 0 10px 40px rgba(0, 0, 0, .45);
    --shadow-md: 0 14px 60px rgba(0, 0, 0, .55);
    --transition: .22s ease;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit
}

.xh-section--alt {
    background: transparent
}

.btn {
    box-shadow: none
}

.btn--gray {
    background: var(--clr-btn-gray);
    color: #eaeaea
}

.btn--gray:hover {
    background: #353843
}

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

.btn--outline:hover {
    background: var(--clr-btn-green);
    color: #0b0c0e
}

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

.xh-hero__bg img {
    opacity: .42
}

.xh-hero__overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .35) 100%)
}

.xh-casino-card {
    background: var(--clr-card);
    border: 1px solid rgba(46, 204, 113, .18);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px)
}

.xh-casino-card__name {
    color: #fff
}

.xh-rating-score__num {
    color: var(--clr-text)
}

.xh-rating-score__stars .star {
    color: rgba(255, 255, 255, .18)
}

.xh-progress-bar {
    background: rgba(255, 255, 255, .10)
}

.xh-casino-card__actions .btn--green {
    color: #0b0c0e
}

.xh-rating-breakdown {
    background: rgba(0, 0, 0, .28);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 20px;
    color: #fff
}

.xh-rating-row__bar {
    background: rgba(255, 255, 255, .14)
}

.xh-rating-row__stars .star {
    color: rgba(255, 255, 255, .18)
}

.xh-info-card {
    background: rgba(0, 0, 0, .26);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 18px;
    color: #fff
}

.xh-info-card h4 {
    color: #c6c8ce
}

.xh-info-param {
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.xh-info-param__key {
    color: #b6b9c0
}

.xh-info-expand-btn {
    border: 1px solid rgba(255, 255, 255, .18);
    color: #d7d9de
}

.xh-logo-badge {
    background: rgba(255, 255, 255, .10);
    color: #d7d9de
}

.xh-pros-cons__col {
    background: rgba(0, 0, 0, .24);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 12px;
    color: #fff
}

.xh-pros-cons__col li {
    color: #d8dbe2
}

.xh-section__sub {
    color: var(--clr-text-light)
}

.xh-bonus-banner {
    box-shadow: 0 10px 30px rgba(46, 204, 113, .18)
}

.xh-bonus-banner .btn {
    background: rgba(255, 255, 255, .10);
    color: #eaf7ef;
    border: 1px solid rgba(255, 255, 255, .18)
}

.xh-bonus-banner .btn:hover {
    background: rgba(255, 255, 255, .16)
}

.xh-form {
    background: var(--clr-card);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px)
}

.xh-form h3 {
    color: #fff
}

.xh-form__field label {
    color: #d7d9de
}

.xh-form__field input,
.xh-form__field textarea,
.xh-form__field select {
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .12);
    color: #e8e8e8
}

.xh-form__field input::placeholder,
.xh-form__field textarea::placeholder {
    color: #8f949e
}

.xh-form__field input:focus,
.xh-form__field textarea:focus,
.xh-form__field select:focus {
    border-color: rgba(46, 204, 113, .55);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, .14)
}

.xh-star-select label {
    color: rgba(255, 255, 255, .18)
}

.xh-form__success {
    background: rgba(46, 204, 113, .12);
    border: 1px solid rgba(46, 204, 113, .25);
    color: #b9f6cf
}

.xh-form__success svg {
    stroke: #b9f6cf
}

.xh-review-card {
    background: var(--clr-card);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow);
    border-radius: 14px
}

.xh-review-card__avatar {
    border: 2px solid rgba(255, 255, 255, .12)
}

.xh-review-card__meta strong {
    color: #fff
}

.xh-review-card__country, .xh-review-card__date, .xh-review-card__score {
    color: var(--clr-text-light)
}

.xh-review-card__stars .star {
    color: rgba(255, 255, 255, .18)
}

.xh-review-card__title {
    color: #fff
}

.xh-review-card__body {
    color: #d5d7dd
}

.xh-review-card__details {
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #d5d7dd
}

.xh-detail-row {
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.xh-review-card__source-badge {
    background: rgba(255, 255, 255, .10);
    color: #d7d9de
}

.xh-vote-btn {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #d7d9de
}

.xh-vote-btn:hover {
    background: rgba(255, 255, 255, .10)
}

.xh-vote-btn.voted {
    border-color: rgba(46, 204, 113, .45);
    background: rgba(46, 204, 113, .10);
    color: #b9f6cf
}

.xh-reply-toggle {
    border: 1px solid rgba(255, 255, 255, .12);
    color: #d7d9de
}

.xh-reply-toggle:hover {
    background: rgba(255, 255, 255, .08)
}

.xh-reply-form {
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .08)
}

.xh-reply-form textarea {
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .12);
    color: #e8e8e8
}

.xh-accordion-item {
    background: var(--clr-card);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow)
}

.xh-accordion-btn {
    color: #e8e8e8
}

.xh-accordion-btn:hover {
    background: rgba(255, 255, 255, .06)
}

.xh-accordion-btn.open {
    background: rgba(255, 255, 255, .08)
}

.xh-accordion-icon {
    color: #8f949e
}

.xh-accordion-body__inner {
    color: #d5d7dd
}

.xh-table {
    background: var(--clr-card);
    box-shadow: var(--shadow);
    border-radius: 12px
}

.xh-table td {
    border-bottom: 1px solid rgba(255, 255, 255, .10)
}

.xh-table tr:hover td {
    background: rgba(255, 255, 255, .04)
}

.xh-table__highlight {
    background: rgba(46, 204, 113, .10) !important
}

.xh-rating-pill {
    background: rgba(255, 255, 255, .08);
    color: #e8e8e8
}

.xh-rating-pill--high {
    background: rgba(46, 204, 113, .14);
    color: #b9f6cf
}

.xh-rating-pill--mid {
    background: rgba(243, 156, 18, .14);
    color: #ffe1b3
}

.xh-rating-pill--low {
    background: rgba(231, 76, 60, .14);
    color: #ffc1bd
}

.xh-content-block {
    background: var(--clr-card);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow)
}

.xh-content-block h1, .xh-content-block h2, .xh-content-block h3, .xh-content-block h4, .xh-content-block h5, .xh-content-block h6 {
    color: #fff
}

.xh-content-block h2 {
    border-bottom: 2px solid rgba(255, 255, 255, .10)
}

.xh-content-block p, .xh-content-block ul, .xh-content-block ol {
    color: #d5d7dd
}

.xh-content-block table th {
    background: #000
}

.xh-content-block table td {
    border: 1px solid rgba(255, 255, 255, .10)
}

.xh-content-block table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03)
}

.xh-content-block blockquote {
    background: rgba(255, 255, 255, .05);
    color: #d5d7dd;
    border-left: 4px solid rgba(46, 204, 113, .75)
}

.xh-content-block pre {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10)
}

.xh-content-block code {
    background: rgba(255, 255, 255, .08)
}

.xh-author-card {
    background: var(--clr-card);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow)
}

.xh-author-card__photo {
    border: 3px solid rgba(255, 255, 255, .12)
}

.xh-author-card__info p {
    color: #d5d7dd
}

.xh-modal {
    background: rgba(18, 19, 22, .96);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #e8e8e8;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px)
}

.xh-modal__close {
    color: #9aa0aa
}

.xh-modal__close:hover {
    color: #fff
}

.xh-modal h3 {
    color: #fff
}