/* Pin-Up Casino - style.css?ver=2.1 */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --c-bg: #323234;
    --c-header: #000000;
    --c-footer: #000000;
    --c-teal: #00fbc8;
    --c-red: #ff2e09;
    --c-text: #e8e8ea;
    --c-muted: #a0a0a8;
    --c-card: #1e1e20;
    --c-card2: #28282c;
    --c-border: rgba(0, 251, 200, 0.18);
    --c-success: #22c55e;
    --c-warning: #f59e0b;
    --c-error: #ef4444;
    --c-accent2: #00c9a7;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-teal: 0 0 24px rgba(0, 251, 200, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PT Sans', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
    margin-bottom: .9rem;
    line-height: 1.7;
}

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

a:hover {
    color: #fff;
}

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

ul {
    list-style: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1a1c;
}

::-webkit-scrollbar-thumb {
    background: var(--c-teal);
    border-radius: 3px;
}

/* ===== HEADER ===== */
.xh-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 251, 200, 0.12);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.xh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 68px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 1rem;
}

.xh-logo img {
    height: 44px;
    width: auto;
    display: block;
}

.xh-nav {
    display: flex;
    align-items: center;
    gap: .2rem;
    flex-wrap: wrap;
}

.xh-nav a {
    color: #ccc;
    font-size: .88rem;
    padding: .35rem .7rem;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
    white-space: nowrap;
}

.xh-nav a:hover {
    color: var(--c-teal);
    background: rgba(0, 251, 200, 0.08);
}

.xh-header-right {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.xh-online {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--c-muted);
    white-space: nowrap;
}

.xh-online-dot {
    width: 8px;
    height: 8px;
    background: var(--c-success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .6;
        transform: scale(1.4);
    }
}

/* burger */
.xh-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: .4rem;
    background: none;
    border: none;
    z-index: 1100;
}

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

.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;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(0, 251, 200, 0.12);
    padding: 1rem;
    z-index: 999;
    flex-direction: column;
    gap: .4rem;
    animation: slide-down .25s ease;
}

@keyframes slide-down {
    from {
        transform: translateY(-12px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.xh-mobile-nav.open {
    display: flex;
}

.xh-mobile-nav a {
    color: #ccc;
    font-size: .95rem;
    padding: .6rem .8rem;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.xh-mobile-nav a:hover {
    color: var(--c-teal);
    background: rgba(0, 251, 200, 0.06);
}

/* ===== BUTTONS ===== */
.btn-teal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: var(--c-teal);
    color: #000 !important;
    font-weight: 700;
    font-size: .88rem;
    padding: .45rem 1.1rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, background .15s;
    white-space: nowrap;
    text-decoration: none !important;
    line-height: 1.3;
}

.btn-teal:hover {
    background: #00e0b0;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 251, 200, 0.35);
    color: #000 !important;
}

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

.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: var(--c-red);
    color: #fff !important;
    font-weight: 700;
    font-size: .88rem;
    padding: .45rem 1.1rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, background .15s;
    white-space: nowrap;
    text-decoration: none !important;
    line-height: 1.3;
}

.btn-red:hover {
    background: #e02000;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 46, 9, 0.35);
    color: #fff !important;
}

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

.btn-lg {
    padding: .75rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius);
}

.btn-xl {
    padding: .9rem 2.4rem;
    font-size: 1.15rem;
    border-radius: var(--radius);
}

.xh-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d0d0f;
}

.xh-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/pinup-banner.jpg');
    background-size: cover;
    background-position: center top;
    filter: brightness(.55);
    transition: transform 8s ease;
}

.xh-hero:hover .xh-hero-bg {
    transform: scale(1.03);
}

.xh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .7) 0%, rgba(50, 50, 52, .3) 100%);
}

.xh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 3rem 1.5rem;
}

.xh-hero-badge {
    display: inline-block;
    background: var(--c-red);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: .25rem .8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    animation: fade-in-up .5s ease both;
}

.xh-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: #fff;
    margin-bottom: 1rem;
    animation: fade-in-up .6s ease .1s both;
}

.xh-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 1.5rem;
    max-width: 520px;
    animation: fade-in-up .6s ease .2s both;
}

.xh-hero-btns {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    animation: fade-in-up .6s ease .3s both;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.xh-hero-bonus-badge {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(0, 251, 200, .12), rgba(0, 251, 200, .04));
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.xh-hero-bonus-badge .bonus-pct {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--c-teal);
    line-height: 1;
}

.xh-hero-bonus-badge .bonus-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    margin-top: .3rem;
}

/* ===== SECTIONS ===== */
.xh-section {
    padding: 3.5rem 0;
}

.xh-section-title {
    text-align: center;
    margin-bottom: 2.2rem;
}

.xh-section-title h2 {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    color: #fff;
    margin-bottom: .5rem;
}

.xh-section-title p {
    color: var(--c-muted);
    font-size: .95rem;
}

.xh-section-title .section-line {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-teal), var(--c-red));
    border-radius: 2px;
    margin: .7rem auto 0;
}

.container-xl {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ===== PROS/CONS ===== */
.xh-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.xh-pros-block, .xh-cons-block {
    border-radius: var(--radius);
    padding: 1.6rem;
    background: var(--c-card);
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: var(--shadow);
}

.xh-pros-block {
    border-top: 3px solid var(--c-success);
}

.xh-cons-block {
    border-top: 3px solid var(--c-error);
}

.xh-pros-block h3 {
    color: var(--c-success);
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.xh-cons-block h3 {
    color: var(--c-error);
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.xh-pros-list li, .xh-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: .93rem;
    line-height: 1.5;
}

.xh-pros-list li:last-child, .xh-cons-list li:last-child {
    border-bottom: none;
}

.xh-pros-list li::before {
    content: '✓';
    color: var(--c-success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .05em;
}

.xh-cons-list li::before {
    content: '✗';
    color: var(--c-error);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .05em;
}

/* ===== JACKPOTS ===== */
.xh-jackpots-bg {
    background: linear-gradient(180deg, #1a1a1c 0%, var(--c-bg) 100%);
}

.xh-jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.xh-jackpot-card {
    background: linear-gradient(135deg, #1e1e20, #232328);
    border: 1px solid rgba(0, 251, 200, 0.15);
    border-radius: var(--radius);
    padding: 1.6rem 1.2rem;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.xh-jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-teal);
}

.xh-jackpot-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle at center, rgba(0, 251, 200, .05), transparent 60%);
    pointer-events: none;
}

.xh-jackpot-icon {
    font-size: 2.2rem;
    margin-bottom: .7rem;
}

.xh-jackpot-name {
    font-size: .82rem;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .4rem;
}

.xh-jackpot-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-teal);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(0, 251, 200, 0.4);
}

/* ===== TOURNAMENTS ===== */
.xh-tournaments-wrap {
    position: relative;
}

.xh-tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

@media (max-width: 900px) {
    .xh-tournaments-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        padding-bottom: .8rem;
        scrollbar-width: thin;
    }

    .xh-tournament-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

.xh-tournament-card {
    background: var(--c-card);
    border: 1px solid rgba(0, 251, 200, 0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.xh-tournament-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-teal);
}

.xh-tournament-top {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.xh-tournament-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.xh-tournament-icon.t1 {
    background: linear-gradient(135deg, #ffd700, #ff9500);
}

.xh-tournament-icon.t2 {
    background: linear-gradient(135deg, #00fbc8, #0080ff);
}

.xh-tournament-icon.t3 {
    background: linear-gradient(135deg, #ff2e09, #ff9500);
}

.xh-tournament-card h3 {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.xh-tournament-desc {
    font-size: .88rem;
    color: var(--c-muted);
    line-height: 1.5;
}

.xh-tournament-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.xh-tournament-prize {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-teal);
}

.xh-tournament-timer {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--c-warning);
    background: rgba(245, 158, 11, .1);
    padding: .3rem .7rem;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, .2);
}

.xh-timer-display {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    font-size: .83rem;
}

/* ===== APP INFO ===== */
.xh-app-info-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .xh-app-info-wrap {
        grid-template-columns: 1fr;
    }
}

.xh-app-table-wrap {
    overflow-x: auto;
}

.xh-app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem;
    margin: 0 auto;
}

.xh-app-table th, .xh-app-table td {
    text-align: left;
    padding: .75rem 1rem;
    border: 1px solid rgba(255, 255, 255, .09);
}

.xh-app-table th {
    background: rgba(0, 251, 200, .08);
    color: var(--c-teal);
    font-weight: 700;
    white-space: nowrap;
    width: 42%;
}

.xh-app-table td {
    background: var(--c-card);
    color: var(--c-text);
}

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

.xh-app-dl-side {
    padding-top: .5rem;
}

.xh-app-dl-side h3 {
    color: #fff;
    margin-bottom: .8rem;
}

.xh-app-dl-side p {
    color: var(--c-muted);
    font-size: .9rem;
    margin-bottom: 1.2rem;
}

.xh-dl-btns {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.xh-dl-btn {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: var(--c-card2);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: .85rem 1.2rem;
    color: #fff !important;
    transition: border-color .2s, background .2s, transform .15s;
    text-decoration: none !important;
}

.xh-dl-btn:hover {
    border-color: var(--c-teal);
    background: rgba(0, 251, 200, .05);
    transform: translateX(3px);
    color: #fff !important;
}

.xh-dl-btn-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.xh-dl-btn-text .dl-label {
    font-size: .72rem;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.xh-dl-btn-text .dl-name {
    font-size: .95rem;
    font-weight: 700;
}

.xh-dl-btn.dl-apk {
    border-color: rgba(0, 251, 200, .3);
}

/* ===== WHEEL GAME ===== */
.xh-wheel-section-bg {
    background: linear-gradient(180deg, var(--c-bg) 0%, #1a1a1c 100%);
}

.xh-wheel-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .xh-wheel-wrap {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.xh-wheel-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.xh-wheel-container {
    position: relative;
    display: inline-block;
}

.xh-wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 22px solid var(--c-red);
    filter: drop-shadow(0 0 6px rgba(255, 46, 9, .7));
    z-index: 10;
}

#xh-wheel-canvas {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 32px rgba(0, 251, 200, .2), 0 0 0 4px rgba(0, 0, 0, .6);
}

#xh-spin-btn {
    font-size: 1rem;
    padding: .7rem 2.4rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.xh-wheel-result {
    display: none;
    text-align: center;
    animation: fade-in-up .4s ease both;
}

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

.xh-wheel-result-icon {
    font-size: 3rem;
    margin-bottom: .5rem;
}

.xh-wheel-result h3 {
    color: var(--c-teal);
    font-size: 1.3rem;
    margin-bottom: .5rem;
}

.xh-wheel-result p {
    color: var(--c-muted);
    font-size: .92rem;
    margin-bottom: 1rem;
}

.xh-wheel-info h3 {
    margin-bottom: .8rem;
    color: #fff;
}

.xh-wheel-info p {
    color: var(--c-muted);
    font-size: .93rem;
    line-height: 1.6;
    margin-bottom: .9rem;
}

.xh-wheel-rules {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 1.2rem;
    border-left: 3px solid var(--c-teal);
    margin-bottom: 1.2rem;
}

.xh-wheel-rules li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .88rem;
    color: var(--c-text);
    padding: .3rem 0;
}

.xh-wheel-rules li::before {
    content: '▸';
    color: var(--c-teal);
    flex-shrink: 0;
}

/* ===== AUTHOR ===== */
.xh-author-card {
    display: flex;
    gap: 1.8rem;
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: var(--shadow);
    align-items: flex-start;
    max-width: 860px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .xh-author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .xh-author-social {
        justify-content: center;
    }
}

.xh-author-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-teal);
    flex-shrink: 0;
    box-shadow: 0 0 18px rgba(0, 251, 200, .25);
}

.xh-author-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: .2rem;
}

.xh-author-role {
    color: var(--c-teal);
    font-size: .85rem;
    margin-bottom: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.xh-author-bio {
    color: var(--c-muted);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.xh-author-social {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}

.xh-author-social a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--c-card2);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    padding: .35rem .9rem;
    color: var(--c-text) !important;
    font-size: .83rem;
    transition: border-color .2s, background .2s;
    text-decoration: none !important;
}

.xh-author-social a:hover {
    border-color: var(--c-teal);
    background: rgba(0, 251, 200, .05);
    color: var(--c-teal) !important;
}

/* ===== CONTENT BLOCK ===== */
.xh-review-content {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 2rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: var(--shadow);
    line-height: 1.75;
}

.xh-review-content h1,
.xh-review-content h2,
.xh-review-content h3,
.xh-review-content h4,
.xh-review-content h5,
.xh-review-content h6 {
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: .6rem;
}

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

.xh-review-content a {
    color: var(--c-teal);
}

.xh-review-content a:hover {
    text-decoration: underline;
}

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

.xh-review-content ul {
    list-style: disc;
}

.xh-review-content ol {
    list-style: decimal;
}

.xh-review-content li {
    margin-bottom: .35rem;
    color: var(--c-text);
}

.xh-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: .93rem;
}

.xh-review-content table th,
.xh-review-content table td {
    padding: .65rem 1rem;
    border: 1px solid rgba(255, 255, 255, .1);
    text-align: left;
}

.xh-review-content table th {
    background: rgba(0, 251, 200, .08);
    color: var(--c-teal);
    font-weight: 700;
}

.xh-review-content table td {
    background: rgba(255, 255, 255, .02);
    color: var(--c-text);
}

.xh-review-content blockquote {
    border-left: 3px solid var(--c-teal);
    padding: .8rem 1.2rem;
    margin: 1rem 0;
    background: rgba(0, 251, 200, .04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-muted);
    font-style: italic;
}

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

.xh-review-content code {
    background: rgba(255, 255, 255, .08);
    padding: .15rem .4rem;
    border-radius: 4px;
    font-size: .88em;
    color: var(--c-teal);
}

.xh-review-content pre {
    background: #111;
    padding: 1rem;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 1rem 0;
}

.xh-review-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 1.5rem 0;
}

.xh-review-content strong {
    color: #fff;
}

.xh-review-content em {
    color: var(--c-muted);
}

/* ===== FOOTER ===== */
.xh-footer {
    background: var(--c-footer);
    border-top: 1px solid rgba(0, 251, 200, .1);
    padding: 2.8rem 0 1.5rem;
    margin-top: 3rem;
}

.xh-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .xh-footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .xh-footer-nav {
        justify-content: center;
    }

    .xh-footer-logo {
        margin: 0 auto;
    }
}

.xh-footer-logo-wrap img {
    height: 40px;
    opacity: .9;
}

.xh-footer-tagline {
    color: var(--c-muted);
    font-size: .82rem;
    margin-top: .5rem;
}

.xh-footer-col h4 {
    color: var(--c-teal);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .9rem;
}

.xh-footer-nav {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.xh-footer-nav a {
    color: var(--c-muted);
    font-size: .87rem;
    transition: color .2s;
}

.xh-footer-nav a:hover {
    color: var(--c-teal);
}

.xh-footer-contact {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.xh-footer-contact a {
    color: var(--c-muted);
    font-size: .87rem;
}

.xh-footer-contact a:hover {
    color: var(--c-teal);
}

.xh-footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .05);
    margin: 1.5rem 0;
}

.xh-footer-payments {
    margin-bottom: 1.2rem;
}

.xh-footer-payments h5 {
    color: var(--c-muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .7rem;
}

.xh-payment-logos, .xh-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
}

.xh-pay-badge, .xh-provider-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    padding: .3rem .75rem;
    font-size: .75rem;
    font-weight: 700;
    color: var(--c-muted);
    white-space: nowrap;
}

.xh-pay-badge:hover, .xh-provider-badge:hover {
    background: rgba(255, 255, 255, .11);
    color: #fff;
}

.xh-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .04);
}

.xh-copyright {
    font-size: .78rem;
    color: #555;
}

.xh-license-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(0, 251, 200, .06);
    border: 1px solid rgba(0, 251, 200, .15);
    border-radius: 6px;
    padding: .2rem .7rem;
    font-size: .72rem;
    color: var(--c-teal);
}

.xh-legal-text {
    font-size: .72rem;
    color: #444;
    margin-top: .7rem;
    line-height: 1.5;
}

.xh-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid #555;
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 700;
    color: #555;
    flex-shrink: 0;
}

/* ===== STICKY WIDGET ===== */
.xh-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #0a0a0a 0%, #161618 100%);
    border-top: 2px solid var(--c-red);
    z-index: 900;
    padding: .7rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    transform: translateY(0);
    transition: transform .3s;
}

.xh-widget.hidden {
    transform: translateY(100%);
}

.xh-widget-close {
    position: absolute;
    right: .8rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--c-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: .2rem;
    line-height: 1;
    transition: color .2s;
}

.xh-widget-close:hover {
    color: #fff;
}

.xh-widget-text {
    font-size: .88rem;
    color: var(--c-text);
}

.xh-widget-text strong {
    color: var(--c-teal);
}

.xh-widget-text span.bonus-highlight {
    color: var(--c-red);
    font-weight: 700;
}

body {
    padding-bottom: 64px;
}

@media (max-width: 480px) {
    .xh-widget {
        gap: .6rem;
        padding: .6rem 2.5rem .6rem .8rem;
    }

    .xh-widget-text {
        font-size: .78rem;
    }
}

/* ===== MISC UTILS ===== */
.xh-bg-dark {
    background: #1a1a1c;
}

.xh-section-alt {
    background: rgba(0, 0, 0, .25);
}

.text-teal {
    color: var(--c-teal);
}

.text-red {
    color: var(--c-red);
}

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

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

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* ===== ANIMATED GRADIENT LINE ===== */
.xh-gradient-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--c-teal), var(--c-red), transparent);
    background-size: 200% 100%;
    animation: gradient-move 3s linear infinite;
}

@keyframes gradient-move {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ===== FADE IN OBSERVER ===== */
.xh-fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

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

/* ===== WP FAKERY (hidden, zero-impact) ===== */
.wp-block-group,
.wp-block-columns,
.entry-content,
.post-meta,
.elementor-widget-container,
.et_pb_module,
.vc_column_inner {
    /* wordpress theme class stubs - visual noop */
}

[class^="wp-"], [class*=" wp-"] { /* noop */
}

.yoast-seo-breadcrumb {
    display: none !important;
}

.site-header-menu { /* noop */
}

/* ===== EXTRA UNUSED STYLES FOR UNIQUENESS ===== */
.xr7f2a {
    color: transparent;
}

.k9pq01 {
    display: none;
}

.mz4x88 input {
    border: 1px solid transparent;
}

.wq3n7b::after {
    content: '';
    display: none;
}

.jd01kx {
    font-size: 0;
}

.tm8z94 {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.bp5r2w {
    transform: none;
}

.nv0k71 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
