/* Admiral X - Main Stylesheet v1.7 */
/* wp-content/themes/admiralx/style.css */

:root {
    --clr-bg: #111111;
    --clr-header: #181818;
    --clr-btn-login: #00B004;
    --clr-btn-reg: #FFFF00;
    --clr-text: #e8e8e8;
    --clr-text-muted: #aaaaaa;
    --clr-border: #2a2a2a;
    --clr-card: #1a1a1a;
    --clr-card2: #1e1e1e;
    --clr-success: #00B004;
    --clr-warning: #FFFF00;
    --clr-error: #e74c3c;
    --clr-accent: #00d400;
    --clr-gold: #f0c040;
    --radius: 10px;
    --radius-sm: 6px;
    --space: 8px;
}

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

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

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: calc(var(--space) * 3);
}

h3 {
    font-size: 1.2rem;
}

p {
    line-height: 1.7;
    margin-bottom: calc(var(--space) * 2);
}

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

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

/* LAYOUT */
.xw3k9-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

.xw3k9-section--sm {
    padding: 32px 0;
}

/* GRID */
.xg-grid {
    display: grid;
    gap: 24px;
}

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

.xg-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.xg-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.xg-grid--auto {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* BUTTONS */
.xb-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    text-decoration: none !important;
    white-space: nowrap;
    letter-spacing: .5px;
}

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

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

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

.xb-btn--login:hover {
    filter: brightness(1.15);
    color: #fff !important;
}

.xb-btn--reg {
    background: var(--clr-btn-reg);
    color: #111 !important;
}

.xb-btn--reg:hover {
    filter: brightness(1.1);
    color: #111 !important;
}

.xb-btn--lg {
    padding: 14px 36px;
    font-size: 1.1rem;
}

.xb-btn--xl {
    padding: 18px 48px;
    font-size: 1.2rem;
    border-radius: var(--radius);
}

.xb-btn--outline {
    background: transparent;
    border: 2px solid var(--clr-btn-login);
    color: var(--clr-btn-login) !important;
}

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

/* HEADER */
.xh-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.xh-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    flex-wrap: nowrap;
}

.xh-logo {
    flex-shrink: 0;
}

.xh-logo img {
    height: 46px;
    width: auto;
    display: block;
    object-fit: contain;
}

.xh-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.xh-nav a {
    color: #ccc;
    font-size: .87rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: color .2s;
    white-space: nowrap;
}

.xh-nav a:hover {
    color: var(--clr-btn-login);
}

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

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

.xh-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-btn-login);
    animation: xpulse 1.5s infinite;
    flex-shrink: 0;
}

@keyframes xpulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .5;
        transform: scale(1.4);
    }
}

/* Burger */
.xh-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: 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.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

.xh-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: var(--clr-header);
    padding: 24px 16px;
    border-top: 1px solid #2a2a2a;
}

.xh-mobile-menu.is-open {
    display: flex;
}

.xh-mobile-menu a {
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    padding: 8px 0;
    border-bottom: 1px solid #222;
}

.xh-mobile-menu a:last-child {
    border-bottom: none;
}

.xh-mobile-menu a:hover {
    color: var(--clr-btn-login);
}

/* HERO */
.xhero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}

.xhero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/admiral-x-banner.png');
    background-size: cover;
    background-position: center;
    filter: brightness(.4);
    z-index: 0;
    transform: scale(1.04);
    transition: transform 10s ease;
}

.xhero:hover .xhero-bg {
    transform: scale(1);
}

.xhero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 130, 0, .2) 0%, rgba(0, 0, 0, .65) 55%, rgba(17, 17, 17, 1) 100%);
    z-index: 1;
}

.xhero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    animation: xfadeup .8s ease both;
}

.xhero-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--clr-btn-login), #006e02);
    color: #fff;
    font-size: .78rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.xhero h1 {
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

.xhero-sub {
    font-size: 1.05rem;
    color: #d0d0d0;
    margin-bottom: 24px;
}

.xhero-bonus {
    display: inline-block;
    background: var(--clr-btn-reg);
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    animation: xglow 2s infinite alternate;
}

@keyframes xglow {
    from {
        box-shadow: 0 0 8px rgba(255, 255, 0, .4);
    }
    to {
        box-shadow: 0 0 28px rgba(255, 255, 0, .9);
    }
}

.xhero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

/* SECTION TITLES */
.xs-title {
    text-align: center;
    margin-bottom: 48px;
}

.xs-title h2 {
    color: #fff;
}

.xs-title p {
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.xs-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-btn-login), var(--clr-btn-reg));
    border-radius: 2px;
    margin: 12px auto 16px;
}

/* TABLE */
.xt-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.xt-casino {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: .93rem;
}

.xt-casino th, .xt-casino td {
    text-align: left;
    padding: 12px 18px;
    border-bottom: 1px solid var(--clr-border);
}

.xt-casino th {
    background: #222;
    color: var(--clr-text-muted);
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    width: 38%;
}

.xt-casino td {
    color: var(--clr-text);
    font-weight: 500;
}

.xt-casino tr:last-child th,
.xt-casino tr:last-child td {
    border-bottom: none;
}

.xt-casino tr:hover td {
    background: rgba(0, 176, 4, .06);
}

.xbadge {
    display: inline-block;
    background: rgba(0, 176, 4, .15);
    color: var(--clr-btn-login);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 700;
}

/* WINNERS */
.xwin-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.xwin-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--clr-card);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    border: 1px solid var(--clr-border);
    transition: background .2s;
}

.xwin-item:hover {
    background: #222;
}

.xwin-rank {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    min-width: 28px;
    color: var(--clr-text-muted);
}

.xwin-rank--1 {
    color: #ffd700;
}

.xwin-rank--2 {
    color: #c0c0c0;
}

.xwin-rank--3 {
    color: #cd7f32;
}

.xwin-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #222, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    border: 2px solid var(--clr-border);
}

.xwin-nick {
    flex: 1;
    font-weight: 600;
    font-size: .9rem;
}

.xwin-game {
    font-size: .75rem;
    color: var(--clr-text-muted);
}

.xwin-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--clr-btn-login);
    font-size: .95rem;
    white-space: nowrap;
}

.xwin-amount--big {
    color: #ffd700;
    font-size: 1.05rem;
}

/* BONUSES */
.xbonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.xbonus-card {
    background: linear-gradient(145deg, #1c1c1c, #222);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid #2a2a2a;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

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

.xbonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 176, 4, .2);
}

.xbonus-icon {
    font-size: 2.6rem;
    margin-bottom: 16px;
    display: block;
}

.xbonus-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-btn-reg);
    margin-bottom: 8px;
}

.xbonus-title {
    font-weight: 700;
    font-size: .98rem;
    color: #fff;
    margin-bottom: 12px;
}

.xbonus-desc {
    font-size: .84rem;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
}

.xbonus-tag {
    position: absolute;
    top: 14px;
    right: -28px;
    background: var(--clr-btn-login);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 36px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

/* Bonus mobile slider */
@media (max-width: 767px) {
    .xbonus-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .xbonus-grid::-webkit-scrollbar {
        display: none;
    }

    .xbonus-card {
        min-width: 82vw;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

/* WHEEL */
.xwheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.xwheel-canvas-wrap {
    position: relative;
    width: 320px;
    height: 320px;
}

#xWheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 0 6px #222, 0 0 0 9px var(--clr-btn-login), 0 8px 40px rgba(0, 176, 4, .35);
    display: block;
}

.xwheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 26px solid var(--clr-btn-reg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
}

.xwheel-result {
    text-align: center;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.xwheel-result p {
    color: var(--clr-text-muted);
    margin: 0;
}

.xwheel-win {
    color: var(--clr-btn-login) !important;
    font-weight: 700;
    font-size: 1.1rem;
    animation: xfadeup .5s ease;
}

.xwheel-lose {
    color: var(--clr-error) !important;
    font-weight: 600;
}

/* REVIEWS */
.xrev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.xrev-card {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--clr-border);
    transition: box-shadow .2s;
}

.xrev-card:hover {
    box-shadow: 0 8px 32px rgba(0, 176, 4, .15);
}

.xrev-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.xrev-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #444);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid var(--clr-btn-login);
    flex-shrink: 0;
}

.xrev-name {
    font-weight: 700;
    font-size: .94rem;
}

.xrev-date {
    font-size: .74rem;
    color: var(--clr-text-muted);
}

.xrev-stars {
    color: #f0c040;
    font-size: .95rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.xrev-text {
    font-size: .87rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* Review form */
.xrev-form-wrap {
    background: var(--clr-card2);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--clr-border);
    max-width: 560px;
    margin: 0 auto;
}

.xrev-form-wrap h3 {
    margin-bottom: 24px;
    text-align: center;
}

.xf-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.xf-label {
    font-size: .84rem;
    color: var(--clr-text-muted);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.xf-input, .xf-textarea {
    background: #1a1a1a;
    border: 1.5px solid #333;
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: 'Open Sans', sans-serif;
    font-size: .92rem;
    padding: 10px 14px;
    width: 100%;
    transition: border-color .2s;
    outline: none;
}

.xf-input:focus, .xf-textarea:focus {
    border-color: var(--clr-btn-login);
}

.xf-textarea {
    resize: vertical;
    min-height: 110px;
}

.xf-success {
    display: none;
    background: rgba(0, 176, 4, .12);
    border: 1px solid var(--clr-btn-login);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    text-align: center;
    color: var(--clr-btn-login);
    font-weight: 600;
    margin-top: 16px;
    animation: xfadeup .4s ease;
}

/* CONTENT BLOCK (raw HTML) */
.xcontent-block h1, .xcontent-block h2, .xcontent-block h3,
.xcontent-block h4, .xcontent-block h5, .xcontent-block h6 {
    color: #fff;
    margin: 1.4em 0 .6em;
}

.xcontent-block p {
    color: var(--clr-text);
    margin-bottom: 1em;
}

.xcontent-block a {
    color: var(--clr-btn-login);
}

.xcontent-block ul, .xcontent-block ol {
    padding-left: 1.6em;
    margin-bottom: 1em;
    color: var(--clr-text);
}

.xcontent-block li {
    margin-bottom: .4em;
    line-height: 1.7;
}

.xcontent-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    background: var(--clr-card);
}

.xcontent-block table th, .xcontent-block table td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
}

.xcontent-block table th {
    background: #222;
    color: var(--clr-text-muted);
    font-size: .85rem;
}

.xcontent-block blockquote {
    border-left: 4px solid var(--clr-btn-login);
    padding: 10px 20px;
    background: rgba(0, 176, 4, .06);
    margin-bottom: 1em;
    color: var(--clr-text-muted);
}

.xcontent-block img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin-bottom: 1em;
}

.xcontent-block strong {
    color: #fff;
}

.xcontent-block em {
    color: var(--clr-text-muted);
}

.xcontent-block hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1.5em 0;
}

/* AUTHOR */
.xauthor-box {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--clr-border);
    margin-bottom: 48px;
}

.xauthor-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2a2a, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    border: 2px solid var(--clr-btn-login);
}

.xauthor-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.xauthor-role {
    font-size: .82rem;
    color: var(--clr-btn-login);
    margin-bottom: 8px;
}

.xauthor-bio {
    font-size: .84rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin: 0;
}

.xauthor-link {
    font-size: .82rem;
    color: var(--clr-btn-login);
    display: inline-block;
    margin-top: 6px;
}

/* FOOTER */
.xf-footer {
    background: var(--clr-header);
    border-top: 1px solid #2a2a2a;
    padding: 48px 0 24px;
    margin-top: auto;
}

.xf-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.xf-logo-wrap img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 16px;
}

.xf-desc {
    font-size: .84rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.xf-col-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.xf-col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.xf-col-links a {
    font-size: .87rem;
    color: #888;
    transition: color .2s;
}

.xf-col-links a:hover {
    color: var(--clr-btn-login);
}

.xf-brands {
    margin-bottom: 32px;
}

.xf-brands-title {
    font-size: .76rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

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

.xf-logo-badge {
    background: #222;
    border: 1px solid #333;
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: .76rem;
    font-weight: 700;
    color: #999;
    white-space: nowrap;
}

.xf-bottom {
    border-top: 1px solid #222;
    padding-top: 24px;
    text-align: center;
}

.xf-copy {
    font-size: .78rem;
    color: #666;
    line-height: 1.7;
}

.xf-legal {
    font-size: .7rem;
    color: #555;
    margin-top: 12px;
    line-height: 1.6;
}

/* STICKY WIDGET */
.xwidget {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #1a1a1a, #222);
    border: 1px solid #333;
    border-radius: 50px;
    padding: 10px 20px 10px 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .7);
    animation: xwidgetslide .6s ease .5s both;
    max-width: calc(100vw - 32px);
}

@keyframes xwidgetslide {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.xwidget-text {
    font-size: .82rem;
    color: #ccc;
    white-space: nowrap;
}

.xwidget-bonus {
    color: var(--clr-btn-reg);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.xwidget-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 2px 0 2px 8px;
    transition: color .2s;
    flex-shrink: 0;
}

.xwidget-close:hover {
    color: #ccc;
}

/* UNUSED / WP COMPAT */
.xu-hidden-element {
    display: none !important;
}

.xu-wp-compat {
    font-size: 0;
    visibility: hidden;
    position: absolute;
}

.entry-content, .post-content, .page-content {
}

.elementor-section {
}

.wp-block {
}

.hentry, .entry {
}

.single-post .post-thumbnail {
}

.site-header .site-branding {
}

.ast-container {
}

.fl-builder-content {
}

.elementor-widget-container {
}

.yoast-seo-settings {
    display: none;
}

.x9f2a-unused {
    color: transparent;
    pointer-events: none;
}

.b7k3m-filler {
    height: 0;
    overflow: hidden;
}

.q1w2e3-noop {
    opacity: 0;
    position: fixed;
    pointer-events: none;
}

.wp-caption, .wp-caption-text {
}

.sticky {
}

.bypostauthor {
}

.alignleft {
    float: left;
    margin-right: 1em;
}

.alignright {
    float: right;
    margin-left: 1em;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* IO ANIMATION */
.xio-hidden {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.xio-visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .xh-burger {
        display: flex;
    }

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

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

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

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

@media (max-width: 767px) {
    .xhero {
        min-height: 380px;
    }

    .xhero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .xauthor-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .xwheel-canvas-wrap {
        width: 260px;
        height: 260px;
    }

    #xWheelCanvas {
        width: 260px !important;
        height: 260px !important;
    }

    .xwidget {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: var(--radius);
    }
}

@media (max-width: 480px) {
    .xh-inner {
        padding: 8px 12px;
    }

    .xb-btn {
        padding: 8px 16px;
        font-size: .82rem;
    }

    .xrev-form-wrap {
        padding: 24px;
    }

    .xhero-bonus {
        font-size: 1.1rem;
    }
}

.qbvwv {
    max-width: 980px;
    margin: 48px auto;
    padding: 42px;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    color: #e8e8e8;
}

.qbvwv h1 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.2;
    margin-bottom: 22px;
    font-weight: 800;
    color: #ffffff;
}

.qbvwv h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
    color: #ffffff;
}

.qbvwv h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 70px;
    height: 2px;
    background: #00b004;
    border-radius: 2px;
}

.qbvwv p {
    font-size: 16px;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 18px;
}

.qbvwv ul,
.qbvwv ol {
    margin: 20px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.qbvwv li {
    padding: 12px 14px 12px 40px;
    position: relative;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    color: #e8e8e8;
    line-height: 1.6;
}

.qbvwv li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 18px;
    width: 9px;
    height: 9px;
    background: #00b004;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 176, 4, 0.15);
}

.qbvwv a {
    color: #00b004;
    font-weight: 700;
    text-decoration: underline;
}

.qbvwv a:hover {
    color: #00d400;
}

.qbvwv strong {
    color: #ffffff;
}

.qbvwv em {
    color: #aaaaaa;
}

.qbvwv blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    background: rgba(0, 176, 4, 0.08);
    border-left: 4px solid #00b004;
    border-radius: 0 12px 12px 0;
    color: #cccccc;
}

.qbvwv table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.qbvwv th,
.qbvwv td {
    padding: 14px 16px;
    border: 1px solid #2a2a2a;
    text-align: left;
    color: #e8e8e8;
}

.qbvwv th {
    background: #181818;
    color: #00b004;
    font-weight: 700;
}

.qbvwv tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.qbvwv img {
    max-width: 100%;
    height: auto;
    margin: 22px auto;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

@media (max-width: 768px) {
    .qbvwv {
        margin: 28px 12px;
        padding: 26px 18px;
    }

    .qbvwv h1 {
        font-size: 28px;
    }

    .qbvwv h2 {
        font-size: 22px;
    }

    .qbvwv p {
        font-size: 15px;
    }

    .qbvwv li {
        font-size: 15px;
        padding: 10px 12px 10px 34px;
    }

    .qbvwv table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .qbvwv th,
    .qbvwv td {
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .qbvwv {
        margin: 20px 10px;
        padding: 22px 14px;
    }

    .qbvwv h1 {
        font-size: 24px;
    }

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

    .qbvwv p,
    .qbvwv li {
        font-size: 14px;
    }
}