:root {
    --clr-bg: #030535;
    --clr-header: #141F61;
    --clr-btn-login: #141D5F;
    --clr-btn-reg: #449E66;
    --clr-btn-reg-hover: #37865A;
    --clr-btn-login-hover: #1a257a;
    --clr-text: #e8eaf6;
    --clr-text-muted: #a0aac4;
    --clr-gold: #f5c842;
    --clr-gold-dim: #c8a02e;
    --clr-border: rgba(255, 255, 255, 0.08);
    --clr-card: rgba(20, 31, 97, 0.55);
    --clr-card-solid: #111a54;
    --clr-green: #449E66;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --font-heading: 'Montserrat', Arial, sans-serif;
    --font-body: 'Roboto', Arial, sans-serif;
    --trans: 0.28s ease;
}

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

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

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

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

a {
    color: var(--clr-gold);
    text-decoration: none;
    transition: color var(--trans);
}

a:hover {
    color: #fff;
}

ul {
    list-style: none;
}

.xkw-wrap {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 20px;
}

.xkw-section {
    padding: 64px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

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

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

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

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

.btn-gold {
    background: var(--clr-gold);
    color: #0a1040;
}

.btn-gold:hover {
    background: var(--clr-gold-dim);
    color: #0a1040;
}

.btn-lg {
    padding: 14px 34px;
    font-size: 1rem;
}

.x7h-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.x7h-section-sub {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.x3p-heading-group {
    margin-bottom: 40px;
}

.xkw-divider {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-btn-reg));
    border-radius: 2px;
    margin-bottom: 16px;
}

/* ===== HEADER ===== */
.xhd-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--clr-header);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.xhd-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    max-width: 1200px;
    margin-inline: auto;
}

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

.xhd-logo img {
    height: 42px;
    width: auto;
    border-radius: 6px;
}

.xhd-logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.02em;
    margin-left: 10px;
}

.xhd-logo-text span {
    color: var(--clr-gold);
}

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

.xhd-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.875rem;
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background var(--trans), color var(--trans);
    text-decoration: none;
}

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

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

.xhd-online {
    font-size: 0.75rem;
    color: var(--clr-green);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-right: 6px;
}

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

@keyframes xpulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(68, 158, 102, 0.6);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(68, 158, 102, 0);
    }
}

.xhd-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

.xhd-burger.xactive span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.xhd-burger.xactive span:nth-child(2) {
    opacity: 0;
}

.xhd-burger.xactive span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.xhd-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: var(--clr-header);
    padding: 16px 20px 20px;
    border-top: 1px solid var(--clr-border);
}

.xhd-mobile-nav.xactive {
    display: flex;
}

.xhd-mobile-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 9px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--trans);
}

.xhd-mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.xhr-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-header);
}

.xhr-bg {
    position: absolute;
    inset: 0;
    background-image: url('/olimp-banner.png');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transition: opacity 0.6s;
}

.xhr-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 5, 53, 0.92) 0%, rgba(20, 31, 97, 0.7) 60%, rgba(3, 5, 53, 0.4) 100%);
}

.xhr-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 60px 20px;
}

.xhr-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(245, 200, 66, 0.15);
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.xhr-h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.xhr-h1 span {
    color: var(--clr-gold);
}

.xhr-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.xhr-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.xhr-trust {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== PROS CONS ===== */
.xpc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 0;
}

.xpc-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px;
    backdrop-filter: blur(6px);
    transition: transform var(--trans), box-shadow var(--trans);
}

.xpc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.xpc-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.xpc-pros .xpc-card-title {
    color: #6de8a0;
}

.xpc-cons .xpc-card-title {
    color: #f07272;
}

.xpc-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.xpc-pros .xpc-icon {
    background: rgba(109, 232, 160, 0.15);
}

.xpc-cons .xpc-icon {
    background: rgba(240, 114, 114, 0.15);
}

.xpc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.9rem;
    color: var(--clr-text);
    line-height: 1.5;
}

.xpc-list li:last-child {
    border-bottom: none;
}

.xpc-list-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.xpc-pros .xpc-list-dot {
    background: #6de8a0;
}

.xpc-cons .xpc-list-dot {
    background: #f07272;
}

/* ===== JACKPOTS ===== */
.xjp-section {
    background: linear-gradient(180deg, var(--clr-bg) 0%, rgba(20, 31, 97, 0.3) 50%, var(--clr-bg) 100%);
}

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

.xjp-card {
    background: linear-gradient(135deg, #141f61 0%, #0d1745 100%);
    border: 1px solid rgba(245, 200, 66, 0.25);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans);
}

.xjp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(245, 200, 66, 0.15);
}

.xjp-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.xjp-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 10px;
}

.xjp-game {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.xjp-amount {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--clr-gold);
    letter-spacing: -0.02em;
    animation: xjp-tick 3s ease-in-out infinite;
}

@keyframes xjp-tick {
    0%, 100% {
        text-shadow: 0 0 10px rgba(245, 200, 66, 0.4);
    }
    50% {
        text-shadow: 0 0 25px rgba(245, 200, 66, 0.7);
    }
}

.xjp-play {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--clr-gold);
    color: #0a1040;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--trans), transform var(--trans);
}

.xjp-play:hover {
    background: var(--clr-gold-dim);
    color: #0a1040;
    transform: translateY(-2px);
}

/* ===== TOURNAMENTS ===== */
.xtn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.xtn-card {
    background: var(--clr-card-solid);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans);
    display: flex;
    flex-direction: column;
}

.xtn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.xtn-card-top {
    background: linear-gradient(135deg, #1a2875 0%, #141f61 100%);
    padding: 22px 22px 16px;
    position: relative;
}

.xtn-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(68, 158, 102, 0.2);
    border: 1px solid rgba(68, 158, 102, 0.4);
    color: #6de8a0;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.xtn-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.xtn-desc {
    font-size: 0.83rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.xtn-card-body {
    padding: 18px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.xtn-prize-label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

.xtn-prize-val {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--clr-gold);
}

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

.xtn-timer-label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

.xtn-timer {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: #f07272;
    display: flex;
    gap: 6px;
}

.xtn-timer-seg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.xtn-timer-num {
    background: rgba(240, 114, 114, 0.15);
    border: 1px solid rgba(240, 114, 114, 0.3);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 0.95rem;
    min-width: 34px;
    text-align: center;
}

.xtn-timer-lbl {
    font-size: 0.6rem;
    color: var(--clr-text-muted);
    font-weight: 400;
}

.xtn-join {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--clr-btn-reg);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 11px 0;
    border-radius: 8px;
    text-decoration: none;
    transition: background var(--trans), transform var(--trans);
    margin-top: auto;
}

.xtn-join:hover {
    background: var(--clr-btn-reg-hover);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== APP ===== */
.xap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.xap-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.xap-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 320px;
}

.xap-table th, .xap-table td {
    text-align: left;
    padding: 14px 18px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--clr-border);
    line-height: 1.5;
}

.xap-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-gold);
    background: rgba(245, 200, 66, 0.06);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.xap-table td {
    color: var(--clr-text);
    background: var(--clr-card);
}

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

.xap-table tbody tr {
    transition: background var(--trans);
}

.xap-table tbody tr:hover td {
    background: rgba(20, 31, 97, 0.85);
}

.xap-table td:first-child {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}

.xap-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.xap-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-card-solid);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    color: #fff;
    text-decoration: none;
    transition: background var(--trans), border-color var(--trans), transform var(--trans);
}

.xap-btn:hover {
    background: rgba(20, 31, 97, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateX(4px);
}

.xap-btn-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.xap-btn-text-wrap {
    flex: 1;
}

.xap-btn-sub {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
}

.xap-btn-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.xap-side-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.xap-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.xap-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
}

.xap-feature-icon {
    color: var(--clr-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== SLOT GAME ===== */
.xsl-section {
    background: linear-gradient(180deg, var(--clr-bg) 0%, rgba(14, 20, 80, 0.5) 50%, var(--clr-bg) 100%);
}

.xsl-machine {
    max-width: 480px;
    margin-inline: auto;
    background: linear-gradient(145deg, #141f61 0%, #0d1848 100%);
    border: 2px solid rgba(245, 200, 66, 0.4);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    box-shadow: 0 0 40px rgba(245, 200, 66, 0.1), 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.xsl-machine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-btn-reg), var(--clr-gold));
}

.xsl-top-label {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 20px;
}

.xsl-reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    background: #070d36;
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.xsl-reel {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    background: #0d1545;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.1s;
    user-select: none;
}

.xsl-reel.xspinning {
    animation: xreel-spin 0.12s linear infinite;
}

@keyframes xreel-spin {
    0% {
        transform: translateY(0) scaleY(1);
    }
    50% {
        transform: translateY(-4px) scaleY(0.95);
    }
    100% {
        transform: translateY(0) scaleY(1);
    }
}

.xsl-win-row {
    text-align: center;
    min-height: 56px;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: all 0.4s;
    margin-bottom: 16px;
}

.xsl-win-row.xwin {
    background: rgba(68, 158, 102, 0.15);
    border: 1px solid rgba(68, 158, 102, 0.4);
}

.xsl-win-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: #6de8a0;
    display: none;
}

.xsl-win-row.xwin .xsl-win-text {
    display: block;
}

.xsl-win-bonus {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--clr-gold);
    display: none;
}

.xsl-win-row.xwin .xsl-win-bonus {
    display: block;
}

.xsl-credits {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background: #070d36;
    border-radius: 8px;
    padding: 12px 16px;
}

.xsl-credit-item {
    text-align: center;
}

.xsl-credit-label {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.xsl-credit-val {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
}

.xsl-spin-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dim) 100%);
    color: #0a1040;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.05rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform var(--trans), box-shadow var(--trans), opacity var(--trans);
}

.xsl-spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 200, 66, 0.3);
}

.xsl-spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.xsl-get-btn {
    width: 100%;
    padding: 14px;
    background: var(--clr-btn-reg);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    display: none;
    text-align: center;
    margin-top: 10px;
    transition: background var(--trans), transform var(--trans);
}

.xsl-machine.xwin-state .xsl-get-btn {
    display: block;
}

.xsl-get-btn:hover {
    background: var(--clr-btn-reg-hover);
    transform: translateY(-2px);
}

/* ===== FAQ ===== */
.xfq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 820px;
    margin-inline: auto;
}

.xfq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--trans);
}

.xfq-item.xopen {
    border-color: rgba(245, 200, 66, 0.3);
}

.xfq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    transition: color var(--trans);
}

.xfq-item.xopen .xfq-question {
    color: var(--clr-gold);
}

.xfq-arrow {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    transition: transform var(--trans), background var(--trans);
}

.xfq-item.xopen .xfq-arrow {
    transform: rotate(180deg);
    background: rgba(245, 200, 66, 0.15);
    color: var(--clr-gold);
}

.xfq-answer {
    display: none;
    padding: 0 22px 20px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--clr-border);
    padding-top: 16px;
}

.xfq-item.xopen .xfq-answer {
    display: block;
}

/* ===== CONTENT BLOCK ===== */
.xcb-content-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 36px;
    margin: 0 16px;
}

.xcb-content-wrap h1,
.xcb-content-wrap h2,
.xcb-content-wrap h3,
.xcb-content-wrap h4,
.xcb-content-wrap h5,
.xcb-content-wrap h6 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 14px;
    margin-top: 28px;
    line-height: 1.3;
}

.xcb-content-wrap h1 {
    font-size: 1.8rem;
    margin-top: 0;
}

.xcb-content-wrap h2 {
    font-size: 1.45rem;
}

.xcb-content-wrap h3 {
    font-size: 1.2rem;
}

.xcb-content-wrap p {
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--clr-text);
    line-height: 1.7;
}

.xcb-content-wrap a {
    color: var(--clr-gold);
}

.xcb-content-wrap ul,
.xcb-content-wrap ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.xcb-content-wrap ul {
    list-style: disc;
}

.xcb-content-wrap ol {
    list-style: decimal;
}

.xcb-content-wrap li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--clr-text);
    line-height: 1.6;
}

.xcb-content-wrap table {
    width: auto;
    margin-inline: auto;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.xcb-content-wrap table th,
.xcb-content-wrap table td {
    border: 1px solid var(--clr-border);
    padding: 10px 16px;
    font-size: 0.875rem;
    text-align: left;
}

.xcb-content-wrap table th {
    background: rgba(245, 200, 66, 0.08);
    color: var(--clr-gold);
    font-family: var(--font-heading);
    font-weight: 700;
}

.xcb-content-wrap table td {
    background: var(--clr-card);
}

.xcb-content-wrap blockquote {
    border-left: 3px solid var(--clr-gold);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(245, 200, 66, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--clr-text-muted);
}

.xcb-content-wrap strong {
    color: #fff;
    font-weight: 700;
}

.xcb-content-wrap em {
    color: var(--clr-gold);
}

.xcb-content-wrap img {
    border-radius: 8px;
    margin: 12px 0;
}

/* ===== AUTHOR ===== */
.xau-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin: 0 16px;
}

.xau-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-btn-reg));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: #0a1040;
    flex-shrink: 0;
    overflow: hidden;
}

.xau-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 4px;
}

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

.xau-bio {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.xau-link {
    color: var(--clr-gold);
    font-size: 0.82rem;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.xft-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 24px;
}

.xft-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 36px;
}

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

.xft-logo img {
    height: 36px;
    width: auto;
    border-radius: 4px;
}

.xft-logo-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    color: #fff;
}

.xft-logo-name span {
    color: var(--clr-gold);
}

.xft-tagline {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.xft-nav-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 14px;
}

.xft-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.xft-nav-list a {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--trans);
}

.xft-nav-list a:hover {
    color: #fff;
}

.xft-nav-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.xft-payments-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 14px;
}

.xft-payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.xft-payment-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--clr-border);
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.xft-provider-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0;
}

.xft-provider-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.68rem;
    color: var(--clr-text-muted);
    font-family: var(--font-heading);
}

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

.xft-legal {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 780px;
    margin-inline: auto;
    margin-bottom: 14px;
}

.xft-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-heading);
}

.xft-license-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.xft-lic-badge {
    border: 1px solid rgba(245, 200, 66, 0.3);
    border-radius: 5px;
    padding: 5px 14px;
    font-size: 0.72rem;
    color: var(--clr-gold);
    font-family: var(--font-heading);
    font-weight: 600;
}

/* ===== WIDGET ===== */
.xwg-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, var(--clr-header) 0%, #1a2875 50%, var(--clr-header) 100%);
    border-top: 2px solid var(--clr-gold);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.5);
    animation: xwg-slide 0.6s ease forwards;
}

@keyframes xwg-slide {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.xwg-text {
    display: flex;
    flex-direction: column;
}

.xwg-label {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.xwg-bonus {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.05rem;
    color: #fff;
}

.xwg-bonus span {
    color: var(--clr-gold);
}

.xwg-btn {
    background: var(--clr-btn-reg);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.9rem;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--trans), transform var(--trans);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.xwg-btn:hover {
    background: var(--clr-btn-reg-hover);
    color: #fff;
    transform: translateY(-2px);
}

.xwg-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: color var(--trans);
}

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

body {
    padding-bottom: 76px;
}

/* ===== MISC / ANIMATIONS ===== */
.xfade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.xfade-in.xvisible {
    opacity: 1;
    transform: translateY(0);
}

.xa9m2-el {
    display: none;
}

.xb3n7-wrap {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.xrating-stars {
    color: var(--clr-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.xrating-text {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .xjp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    .xhd-nav {
        display: none;
    }

    .xhd-burger {
        display: flex;
    }

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

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

    .xtn-grid {
        grid-template-columns: 1fr;
        overflow: hidden;
    }

    .xtn-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .xtn-slider-inner {
        display: flex;
        gap: 16px;
        min-width: max-content;
        padding: 4px 4px 16px;
    }

    .xtn-slider-inner .xtn-card {
        min-width: 280px;
        scroll-snap-align: start;
    }

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

    .xft-nav-cols {
        grid-template-columns: 1fr 1fr;
    }

    .xau-card {
        flex-direction: column;
        text-align: center;
    }

    .xcb-content-wrap {
        padding: 22px 18px;
        margin: 0;
    }

    .xwg-widget {
        flex-wrap: wrap;
        padding: 10px 14px;
    }

    .xwg-bonus {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .xhd-actions {
        gap: 6px;
    }

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

    .xhr-h1 {
        font-size: 1.7rem;
    }

    .xhr-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .xsl-machine {
        padding: 20px 16px;
    }

    .xft-nav-cols {
        grid-template-columns: 1fr;
    }
}

/* WordPress camouflage elements */
.wp-block-group {
    display: contents;
}

.entry-content {
    display: contents;
}

.elementor-section {
    display: contents;
}

.wp-content-noscript {
    display: none;
}

@media (max-width: 768px) {
    #tournaments {
        padding: 38px 0;
    }

    #tournaments .x3p-heading-group {
        margin-bottom: 24px;
        text-align: center;
    }

    #tournaments .xkw-divider {
        margin: 0 auto 14px;
        width: 46px;
        height: 3px;
    }

    #tournaments .x7h-section-title {
        font-size: 1.45rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    #tournaments .x7h-section-sub {
        max-width: 320px;
        margin: 0 auto;
        font-size: .88rem;
        line-height: 1.45;
    }

    #tournaments .xtn-slider {
        overflow: visible;
    }

    #tournaments .xtn-slider-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        min-width: 0;
        padding: 0;
    }

    #tournaments .xtn-card {
        width: 100%;
        min-width: 0;
        border-radius: 14px;
    }

    #tournaments .xtn-card-top {
        padding: 18px 16px 14px;
    }

    #tournaments .xtn-status {
        font-size: .66rem;
        padding: 3px 9px;
        margin-bottom: 10px;
    }

    #tournaments .xtn-title {
        font-size: 1rem;
        line-height: 1.28;
    }

    #tournaments .xtn-desc {
        font-size: .82rem;
        line-height: 1.55;
    }

    #tournaments .xtn-card-body {
        padding: 16px;
        gap: 13px;
    }

    #tournaments .xtn-prize-row,
    #tournaments .xtn-timer-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        align-items: start;
    }

    #tournaments .xtn-prize-label,
    #tournaments .xtn-timer-label {
        font-size: .72rem;
        text-transform: uppercase;
        letter-spacing: .04em;
    }

    #tournaments .xtn-prize-val {
        font-size: 1.25rem;
    }

    #tournaments .xtn-timer {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 7px;
    }

    #tournaments .xtn-timer-seg {
        min-width: 0;
    }

    #tournaments .xtn-timer-num {
        width: 100%;
        min-width: 0;
        padding: 6px 4px;
        font-size: .9rem;
    }

    #tournaments .xtn-timer-lbl {
        font-size: .56rem;
    }

    #tournaments .xtn-join {
        min-height: 44px;
        padding: 12px 14px;
        font-size: .85rem;
        border-radius: 10px;
    }
}

@media (max-width: 380px) {
    #tournaments .xtn-card-top,
    #tournaments .xtn-card-body {
        padding-left: 14px;
        padding-right: 14px;
    }

    #tournaments .xtn-timer {
        gap: 5px;
    }

    #tournaments .xtn-timer-num {
        font-size: .82rem;
    }
}