/* 1win affiliate – style.css?ver=1.7 */
/* unused: .wp-block-cover, .entry-meta, .post-thumbnail, .wp-caption, .alignleft, .alignright */

:root {
    --clr-bg: #1C1C1C;
    --clr-header: #000000;
    --clr-accent: #FFDD00;
    --clr-accent2: #f0c800;
    --clr-text: #e8e8e8;
    --clr-text-muted: #a0a0a0;
    --clr-card: #242424;
    --clr-card2: #2a2a2a;
    --clr-border: #333333;
    --clr-green: #27ae60;
    --clr-red: #e74c3c;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}

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

a:hover {
    opacity: .8;
}

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

/* ===== HEADER ===== */
#xh7k2-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid var(--clr-accent);
    box-shadow: 0 2px 18px rgba(0, 0, 0, .6);
}

.xh7k2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 16px;
    flex-wrap: wrap;
}

.xh7k2-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.xh7k2-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.xh7k2-nav a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    transition: color .2s;
}

.xh7k2-nav a:hover {
    color: var(--clr-accent);
}

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

.xh7k2-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

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

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

/* BUTTONS */
.btn-xwin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    border-radius: 6px;
    padding: 8px 18px;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-xwin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 221, 0, .3);
}

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

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

.btn-login:hover {
    background: rgba(255, 221, 0, .08);
}

.btn-signup {
    background: var(--clr-accent);
    color: #000;
}

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

/* BURGER */
.xh7k2-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.xh7k2-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

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

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

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

.xh7k2-mobile-nav {
    display: none;
    flex-direction: column;
    background: #111;
    padding: 12px 20px;
    border-top: 1px solid var(--clr-border);
}

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

.xh7k2-mobile-nav a {
    color: #fff;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #222;
}

.xh7k2-mobile-nav a:hover {
    color: var(--clr-accent);
}

/* ===== HERO ===== */
#xb9r3-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.xb9r3-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/b-casino.png') center/cover no-repeat;
    filter: brightness(.55);
    z-index: 0;
}

.xb9r3-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .85) 35%, rgba(0, 0, 0, .1) 100%);
    z-index: 1;
}

.xb9r3-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 24px;
}

.xb9r3-hero-tag {
    display: inline-block;
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 18px;
}

.xb9r3-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.xb9r3-hero-title span {
    color: var(--clr-accent);
}

.xb9r3-hero-desc {
    font-size: 16px;
    color: #ccc;
    max-width: 520px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.xb9r3-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--clr-accent);
    color: #000;
    font-size: 16px;
    font-weight: 800;
    padding: 14px 34px;
    border-radius: 8px;
    box-shadow: 0 0 24px rgba(255, 221, 0, .45);
    animation: hero-pulse 2s infinite;
}

@keyframes hero-pulse {
    0%, 100% {
        box-shadow: 0 0 24px rgba(255, 221, 0, .45);
    }
    50% {
        box-shadow: 0 0 42px rgba(255, 221, 0, .75);
    }
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

/* ===== SECTIONS ОБЩЕЕ ===== */
.xw-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 20px;
}

.xw-section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.xw-section-subtitle {
    color: var(--clr-text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.xw-divider {
    width: 48px;
    height: 3px;
    background: var(--clr-accent);
    border-radius: 2px;
    margin-bottom: 10px;
}

/* ===== PROS & CONS ===== */
#xe4p1-pros-cons {
    background: #1a1a1a;
}

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

.xe4p1-col {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--clr-border);
}

.xe4p1-col-title {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.xe4p1-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.xe4p1-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.xe4p1-list li::before {
    content: '';
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.xe4p1-col.pros .xe4p1-list li::before {
    content: '✓';
    background: rgba(39, 174, 96, .18);
    color: var(--clr-green);
}

.xe4p1-col.cons .xe4p1-list li::before {
    content: '✗';
    background: rgba(231, 76, 60, .15);
    color: var(--clr-red);
}

/* ===== JACKPOTS ===== */
#xj6q8-jackpots {
    background: var(--clr-bg);
}

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

.xj6q8-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2400 100%);
    border: 1px solid rgba(255, 221, 0, .25);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.xj6q8-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(255, 221, 0, .18);
}

.xj6q8-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 221, 0, .06);
}

.xj6q8-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.xj6q8-name {
    font-size: 13px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 8px;
}

.xj6q8-amount {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
    color: var(--clr-accent);
    font-variant-numeric: tabular-nums;
}

.xj6q8-currency {
    font-size: 15px;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.xj6q8-btn {
    margin-top: 18px;
    display: inline-block;
    padding: 9px 24px;
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    font-size: 13px;
    border-radius: 6px;
    transition: transform .15s;
}

.xj6q8-btn:hover {
    transform: scale(1.05);
}

/* ===== TOURNAMENTS ===== */
#xt5m7-tournaments {
    background: #171717;
}

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

.xt5m7-card {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
}

.xt5m7-card:hover {
    box-shadow: 0 8px 28px rgba(255, 221, 0, .13);
    transform: translateY(-4px);
}

.xt5m7-card-header {
    background: linear-gradient(90deg, #1a1a00, #2a2a00);
    padding: 18px 20px;
    border-bottom: 2px solid var(--clr-accent);
}

.xt5m7-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--clr-accent);
}

.xt5m7-card-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.xt5m7-desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.xt5m7-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.xt5m7-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.xt5m7-meta-label {
    color: var(--clr-text-muted);
}

.xt5m7-meta-val {
    font-weight: 700;
    color: #fff;
}

.xt5m7-prize {
    color: var(--clr-accent);
    font-size: 15px;
    font-weight: 800;
}

.xt5m7-timer {
    background: rgba(255, 221, 0, .08);
    border: 1px solid rgba(255, 221, 0, .2);
    border-radius: 6px;
    padding: 8px 12px;
    text-align: center;
}

.xt5m7-timer-label {
    font-size: 10px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .6px;
}

.xt5m7-timer-digits {
    font-size: 22px;
    font-weight: 900;
    color: var(--clr-accent);
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
}

.xt5m7-card-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--clr-border);
}

/* SLIDER mobile */
.xt5m7-slider-wrap {
    overflow: hidden;
    position: relative;
}

.xt5m7-slider-track {
    display: flex;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.xt5m7-slide {
    min-width: 88vw;
    max-width: 340px;
    flex-shrink: 0;
    padding: 0 8px;
}

.xt5m7-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.xt5m7-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    cursor: pointer;
    transition: background .2s;
}

.xt5m7-dot.active {
    background: var(--clr-accent);
}

/* ===== APP INFO ===== */
#xa3n5-app {
    background: var(--clr-bg);
}

.xa3n5-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.xa3n5-table-wrap {
    overflow-x: auto;
}

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

.xa3n5-table th,
.xa3n5-table td {
    text-align: left;
    padding: 11px 16px;
    border: 1px solid var(--clr-border);
}

.xa3n5-table th {
    background: #111;
    color: var(--clr-accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.xa3n5-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .025);
}

.xa3n5-table td:first-child {
    color: var(--clr-text-muted);
    font-size: 13px;
}

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

.xa3n5-dl-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.xa3n5-dl-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.xa3n5-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    padding: 14px 18px;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s;
}

.xa3n5-dl-btn:hover {
    border-color: var(--clr-accent);
    box-shadow: 0 4px 16px rgba(255, 221, 0, .12);
}

.xa3n5-dl-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.xa3n5-dl-info {
    display: flex;
    flex-direction: column;
}

.xa3n5-dl-label {
    font-size: 11px;
    color: var(--clr-text-muted);
}

.xa3n5-dl-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.xa3n5-apk-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--clr-text-muted);
    line-height: 1.5;
    background: rgba(255, 221, 0, .05);
    border-left: 3px solid var(--clr-accent);
    padding: 10px 14px;
    border-radius: 0 6px 6px 0;
}

/* ===== SLOT MINI-GAME ===== */
#xs2w4-slot {
    background: #111;
}

.xs2w4-machine {
    max-width: 480px;
    margin: 0 auto;
    background: #1a1a00;
    border: 2px solid var(--clr-accent);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 0 48px rgba(255, 221, 0, .15);
    text-align: center;
}

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

.xs2w4-reel {
    width: 90px;
    height: 90px;
    background: #0d0d00;
    border: 2px solid #444;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    overflow: hidden;
    transition: transform .1s;
    user-select: none;
    position: relative;
}

.xs2w4-reel.spinning {
    animation: reel-spin .12s linear infinite;
}

@keyframes reel-spin {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(90deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

.xs2w4-spin-btn {
    background: var(--clr-accent);
    color: #000;
    font-size: 17px;
    font-weight: 800;
    padding: 14px 44px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 0 20px rgba(255, 221, 0, .35);
}

.xs2w4-spin-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 32px rgba(255, 221, 0, .55);
}

.xs2w4-spin-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

.xs2w4-result {
    margin-top: 22px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.xs2w4-win-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-accent);
    animation: win-flash .5s ease-in-out;
}

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

.xs2w4-lose-text {
    font-size: 15px;
    color: var(--clr-text-muted);
}

.xs2w4-get-btn {
    background: var(--clr-green);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 32px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    transition: transform .15s;
}

.xs2w4-get-btn:hover {
    transform: scale(1.04);
}

.xs2w4-balance {
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

/* ===== FAQ ===== */
#xf1v6-faq {
    background: var(--clr-bg);
}

.xf1v6-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.xf1v6-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s;
}

.xf1v6-item.open {
    border-color: var(--clr-accent);
}

.xf1v6-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    gap: 12px;
}

.xf1v6-q-text {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.xf1v6-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--clr-accent);
    transition: transform .25s;
}

.xf1v6-item.open .xf1v6-chevron {
    transform: rotate(180deg);
}

.xf1v6-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 20px;
    color: var(--clr-text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.xf1v6-item.open .xf1v6-answer {
    max-height: 400px;
    padding: 0 20px 18px;
}

/* ===== FOOTER ===== */
#xft9k-footer {
    background: var(--clr-header);
    border-top: 2px solid rgba(255, 221, 0, .2);
    padding: 48px 20px 24px;
}

.xft9k-inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

.xft9k-logo img {
    height: 40px;
}

.xft9k-col-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    font-weight: 700;
}

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

.xft9k-nav-list a {
    color: #aaa;
    font-size: 13px;
    text-decoration: none;
    transition: color .2s;
}

.xft9k-nav-list a:hover {
    color: var(--clr-accent);
}

.xft9k-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.xft9k-pay-badge {
    background: #1a1a1a;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: .3px;
}

.xft9k-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.xft9k-prov-badge {
    background: #111;
    border: 1px solid #222;
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 10px;
    color: #666;
}

.xft9k-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.xft9k-legal {
    font-size: 11px;
    color: #555;
    max-width: 680px;
    line-height: 1.65;
}

.xft9k-copyright {
    font-size: 12px;
    color: #444;
    white-space: nowrap;
}

/* ===== STICKY WIDGET ===== */
#xw8b1-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(90deg, #000 0%, #1a1a00 50%, #000 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    box-shadow: 0 -4px 24px rgba(255, 221, 0, .18);
}

.xw8b1-text {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.xw8b1-text span {
    color: var(--clr-accent);
    font-weight: 800;
}

.xw8b1-btn {
    background: var(--clr-accent);
    color: #000;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 28px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 0 16px rgba(255, 221, 0, .4);
}

.xw8b1-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 0 28px rgba(255, 221, 0, .6);
    color: #000;
}

.xw8b1-close {
    background: none;
    border: none;
    color: #555;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color .2s;
    line-height: 1;
}

.xw8b1-close:hover {
    color: #fff;
}

/* ===== CONTENT BLOCK ===== */
#xcb5r-content {
    background: #181818;
}

.xcb5r-inner {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--clr-border);
}

/* Стилизация голых тегов внутри content */
.xcb5r-inner h2,
.xcb5r-inner h3,
.xcb5r-inner h4 {
    color: #fff;
    font-weight: 800;
    margin: 24px 0 10px;
    line-height: 1.3;
}

.xcb5r-inner h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--clr-accent);
    padding-bottom: 8px;
}

.xcb5r-inner h3 {
    font-size: 1.2rem;
}

.xcb5r-inner h4 {
    font-size: 1.05rem;
    color: var(--clr-accent);
}

.xcb5r-inner p {
    margin-bottom: 14px;
    color: var(--clr-text);
    line-height: 1.7;
}

.xcb5r-inner ul,
.xcb5r-inner ol {
    margin: 12px 0 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.xcb5r-inner li {
    color: var(--clr-text);
    line-height: 1.6;
}

.xcb5r-inner ul li::marker {
    color: var(--clr-accent);
}

.xcb5r-inner ol li::marker {
    color: var(--clr-accent);
    font-weight: 700;
}

.xcb5r-inner a {
    color: var(--clr-accent);
    text-decoration: underline;
}

.xcb5r-inner strong,
.xcb5r-inner b {
    color: #fff;
    font-weight: 700;
}

.xcb5r-inner em,
.xcb5r-inner i {
    color: #ccc;
}

.xcb5r-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 14px;
    display: block;
    overflow-x: auto;
}

.xcb5r-inner table th {
    background: #111;
    color: var(--clr-accent);
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
}

.xcb5r-inner table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
}

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

.xcb5r-inner blockquote {
    border-left: 4px solid var(--clr-accent);
    padding: 12px 18px;
    margin: 16px 0;
    background: rgba(255, 221, 0, .04);
    border-radius: 0 6px 6px 0;
    color: #ccc;
    font-style: italic;
}

.xcb5r-inner hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 24px 0;
}

.xcb5r-inner img {
    border-radius: 8px;
    margin: 12px 0;
    max-width: 100%;
}

/* ===== AUTHOR ===== */
.xa8q2-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding: 18px 20px;
    background: rgba(255, 221, 0, .04);
    border: 1px solid rgba(255, 221, 0, .15);
    border-radius: 10px;
}

.xa8q2-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-accent);
    flex-shrink: 0;
}

.xa8q2-name {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

.xa8q2-bio {
    font-size: 12px;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-top: 2px;
}

.xa8q2-link {
    font-size: 12px;
    color: var(--clr-accent);
    margin-top: 3px;
    display: inline-block;
}

/* ===== BREADCRUMB ===== */
.xbc7n-breadcrumb {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 20px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--clr-text-muted);
    flex-wrap: wrap;
}

.xbc7n-breadcrumb a {
    color: var(--clr-text-muted);
}

.xbc7n-breadcrumb span {
    color: var(--clr-accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .xh7k2-nav {
        display: none;
    }

    .xh7k2-burger {
        display: flex;
    }

    .xe4p1-grid {
        grid-template-columns: 1fr;
    }

    .xj6q8-grid {
        grid-template-columns: 1fr 1fr;
    }

    .xt5m7-grid {
        display: none;
    }

    .xt5m7-dots {
        display: flex;
    }

    .xt5m7-slider-track {
        display: flex;
    }

    .xa3n5-wrap {
        grid-template-columns: 1fr;
    }

    .xft9k-top {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .xft9k-top {
        grid-template-columns: 1fr;
    }

    .xb9r3-hero-btns {
        flex-direction: column;
    }

    .xw-section {
        padding: 36px 14px;
    }

    .xcb5r-inner {
        padding: 20px 14px;
    }

    .xs2w4-reel {
        width: 74px;
        height: 74px;
        font-size: 36px;
    }

    .xw8b1-text {
        display: none;
    }
}

.wp-block-group--xcv,
.elementor-widget-container--xmq,
.site-branding--xnp,
.entry-footer--xkr,
.widget-area--xpl,
.wp-post-image--xdl {
    display: none;
    visibility: hidden;
}

.e-con-inner {
    display: block;
}

.elementor-section-wrap {
    overflow: hidden;
}

body.page-template-default .site-content {
    background: transparent;
}

.lrte {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px 72px;
    background: #252525;
    border: 1px solid #353535;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    color: #ececec;
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
}

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

.lrte h1,
.lrte h2,
.lrte h3,
.lrte h4 {
    line-height: 1.24;
    letter-spacing: -0.02em;
}

.lrte h1 {
    margin: 0 0 24px;
    font-size: clamp(34px, 4.8vw, 52px);
    font-weight: 800;
    color: #ffffff;
}

.lrte h2 {
    margin: 46px 0 16px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #ffdd00;
}

.lrte h3 {
    margin: 28px 0 14px;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: #ffffff;
}

.lrte h4 {
    margin: 22px 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #e4e4e4;
}

.lrte p {
    margin: 0 0 18px;
    color: #d9d9d9;
}

.lrte > h1 + p {
    font-size: 18px;
    color: #f0f0f0;
}

.lrte a {
    color: #ffdd00;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color 0.25s ease, opacity 0.25s ease;
    word-break: break-word;
}

.lrte a:hover {
    color: #ffe766;
    opacity: 1;
}

.lrte strong,
.lrte b {
    color: #ffffff;
    font-weight: 700;
}

.lrte ul,
.lrte ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.lrte li {
    margin-bottom: 10px;
    color: #d9d9d9;
}

.lrte li::marker {
    color: #ffdd00;
}

.lrte table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0 34px;
    background: #1d1d1d;
    border: 1px solid #363636;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.lrte tr:first-child,
.lrte thead tr {
    background: #101010;
}

.lrte th,
.lrte td {
    text-align: left;
    vertical-align: top;
    padding: 14px 16px;
    border-bottom: 1px solid #363636;
}

.lrte th {
    font-size: 13px;
    font-weight: 700;
    color: #ffdd00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lrte td {
    font-size: 15px;
    color: #ececec;
}

.lrte tr:nth-child(even) td,
.lrte tbody tr:nth-child(even) {
    background: #242424;
}

.lrte tr:last-child td,
.lrte tbody tr:last-child td {
    border-bottom: 0;
}

.lrte blockquote {
    margin: 26px 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255, 221, 0, 0.08), rgba(255, 221, 0, 0.03));
    border-left: 4px solid #ffdd00;
    border-radius: 0 16px 16px 0;
}

.lrte blockquote p {
    margin-bottom: 0;
    color: #f3f3f3;
}

.lrte hr {
    border: 0;
    height: 1px;
    margin: 32px 0;
    background: linear-gradient(90deg, transparent, #3d3d3d, transparent);
}

.lrte img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

@media (max-width: 991px) {
    .lrte {
        padding: 34px 18px 56px;
        border-radius: 18px;
        font-size: 15px;
    }

    .lrte h1 {
        margin-bottom: 20px;
    }

    .lrte h2 {
        margin-top: 40px;
    }

    .lrte table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .lrte {
        padding: 26px 14px 46px;
        border-radius: 16px;
        line-height: 1.66;
    }

    .lrte h1 {
        font-size: 30px;
    }

    .lrte h2 {
        font-size: 24px;
        margin-top: 34px;
        margin-bottom: 14px;
    }

    .lrte h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .lrte p,
    .lrte li,
    .lrte td {
        font-size: 15px;
    }

    .lrte ul,
    .lrte ol {
        padding-left: 20px;
        margin-bottom: 18px;
    }

    .lrte blockquote {
        padding: 16px 16px 16px 18px;
        margin: 22px 0;
        border-radius: 0 12px 12px 0;
    }

    .lrte th,
    .lrte td {
        padding: 12px 14px;
    }
}

@media (max-width: 560px) {
    .lrte {
        padding: 22px 12px 40px;
        font-size: 14px;
        border-radius: 14px;
    }

    .lrte h1 {
        font-size: 26px;
    }

    .lrte > h1 + p {
        font-size: 16px;
    }

    .lrte h2 {
        font-size: 22px;
        margin-top: 30px;
    }

    .lrte h3 {
        font-size: 18px;
    }

    .lrte table,
    .lrte thead,
    .lrte tbody,
    .lrte tr,
    .lrte th,
    .lrte td {
        display: block;
        width: 100%;
    }

    .lrte table {
        white-space: normal;
        overflow: hidden;
        border-radius: 14px;
    }

    .lrte thead {
        display: none;
    }

    .lrte tr:first-child {
        display: none;
    }

    .lrte tbody tr,
    .lrte table tr {
        padding: 12px;
        border-bottom: 1px solid #363636;
    }

    .lrte tbody tr:last-child,
    .lrte table tr:last-child {
        border-bottom: 0;
    }

    .lrte td {
        padding: 0;
        border: 0;
        white-space: normal;
    }

    .lrte td:first-child {
        margin-bottom: 4px;
        font-size: 12px;
        font-weight: 700;
        color: #ffdd00;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .lrte td:last-child {
        font-size: 14px;
        color: #ededed;
    }

    .lrte blockquote {
        padding: 14px 14px 14px 16px;
    }
}

@media (max-width: 380px) {
    .lrte h1 {
        font-size: 24px;
    }

    .lrte h2 {
        font-size: 20px;
    }

    .lrte h3 {
        font-size: 17px;
    }

    .lrte p,
    .lrte li,
    .lrte td:last-child {
        font-size: 13px;
    }

    .lrte tbody tr,
    .lrte table tr {
        padding: 10px;
    }
}