:root {
    --cc-purple: #73499e;
    --cc-purple-dark: #5a3480;
    --cc-purple-light: #8b5db8;
    --cc-green: #52cf27;
    --cc-green-dark: #3faa1c;
    --cc-orange: #f3902f;
    --cc-orange-dark: #d97820;
    --cc-bg: #eef0f5;
    --cc-bg-dark: #e0e3ec;
    --cc-white: #ffffff;
    --cc-text: #1a1a2e;
    --cc-text-light: #4a4a6a;
    --cc-text-muted: #7a7a9a;
    --cc-border: #d0d4e0;
    --cc-shadow: rgba(115, 73, 158, 0.12);
    --cc-shadow-md: rgba(115, 73, 158, 0.22);
    --cc-radius: 12px;
    --cc-radius-sm: 8px;
    --cc-radius-lg: 20px;
    --cc-transition: 0.28s cubic-bezier(.4, 0, .2, 1);
    --font-main: 'Roboto Condensed', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--cc-bg);
}

body {
    font-family: var(--font-main);
    background: var(--cc-bg);
    color: var(--cc-text);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--cc-orange);
    text-decoration: none;
    transition: color var(--cc-transition);
}

a:hover {
    color: var(--cc-orange-dark);
}

ul {
    list-style: none;
}

.xw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.xw-section--sm {
    padding: 40px 0;
}

/* ============ BUTTONS ============ */
.xw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 28px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all var(--cc-transition);
    text-decoration: none;
    white-space: nowrap;
}

.xw-btn--primary {
    background: linear-gradient(135deg, #5fe030, var(--cc-green));
    color: #fff;
    box-shadow: 0 4px 18px rgba(82, 207, 39, .35);
}

.xw-btn--primary:hover {
    background: linear-gradient(135deg, var(--cc-green), var(--cc-green-dark));
    box-shadow: 0 6px 24px rgba(82, 207, 39, .5);
    transform: translateY(-2px);
    color: #fff;
}

.xw-btn--secondary {
    background: linear-gradient(135deg, #f9a84a, var(--cc-orange));
    color: #fff;
    box-shadow: 0 4px 18px rgba(243, 144, 47, .30);
}

.xw-btn--secondary:hover {
    background: linear-gradient(135deg, var(--cc-orange), var(--cc-orange-dark));
    box-shadow: 0 6px 24px rgba(243, 144, 47, .45);
    transform: translateY(-2px);
    color: #fff;
}

.xw-btn--outline {
    background: transparent;
    color: var(--cc-white);
    border: 2px solid rgba(255, 255, 255, .5);
}

.xw-btn--outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: #fff;
}

.xw-btn--sm {
    padding: 8px 20px;
    font-size: 13px;
}

.xw-btn--lg {
    padding: 15px 42px;
    font-size: 17px;
}

.xw-btn--icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
}

/* ============ HEADER ============ */
.xw-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--cc-purple-dark) 0%, var(--cc-purple) 60%, var(--cc-purple-light) 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .25);
}

.xw-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.xw-header__logo a {
    display: flex;
    align-items: center;
}

.xw-header__logo img {
    height: 46px;
    width: auto;
}

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

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

.xw-nav__item a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .88);
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    transition: all var(--cc-transition);
}

.xw-nav__item a:hover, .xw-nav__item a.active {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.xw-nav__icon {
    width: 17px;
    height: 17px;
    fill: currentColor;
    flex-shrink: 0;
}

.xw-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.xw-header__status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 6px;
}

.xw-status-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.xw-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cc-green);
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(82, 207, 39, .6);
    animation: xwPulse 1.8s infinite;
}

@keyframes xwPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(82, 207, 39, .6);
    }
    70% {
        box-shadow: 0 0 0 7px rgba(82, 207, 39, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(82, 207, 39, 0);
    }
}

.xw-player-count {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    white-space: nowrap;
}

.xw-player-count span {
    color: #fff;
    font-weight: 700;
}

.xw-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .12);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: background var(--cc-transition);
}

.xw-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--cc-transition);
}

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

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

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

.xw-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: linear-gradient(160deg, var(--cc-purple-dark), #2a1450);
    flex-direction: column;
    padding: 80px 24px 32px;
    overflow-y: auto;
}

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

.xw-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
}

.xw-mobile-menu__nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .88);
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all var(--cc-transition);
}

.xw-mobile-menu__nav a:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.xw-mobile-menu__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, .12);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--cc-transition);
}

.xw-mobile-menu__close:hover {
    background: rgba(255, 255, 255, .22);
}

.xw-mobile-menu__btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============ HERO ============ */
.xw-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a30 0%, var(--cc-purple-dark) 50%, #0d1a40 100%);
    min-height: 520px;
    display: flex;
    align-items: center;
}

.xw-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('/images/banner-cookie.png');
    background-size: cover;
    background-position: center;
    opacity: .18;
}

.xw-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(26, 10, 48, .92) 0%, rgba(115, 73, 158, .55) 60%, rgba(13, 26, 64, .85) 100%);
}

.xw-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.xw-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 18px;
}

.xw-hero__title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .4);
}

.xw-hero__title span {
    color: var(--cc-green);
}

.xw-hero__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    margin-bottom: 28px;
}

.xw-hero__promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, .08);
    border: 1.5px dashed rgba(255, 255, 255, .3);
    border-radius: var(--cc-radius);
    padding: 12px 20px;
}

.xw-hero__promo-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
}

.xw-hero__promo-code {
    font-size: 20px;
    font-weight: 800;
    color: var(--cc-orange);
    letter-spacing: 2px;
}

.xw-hero__promo-copy {
    background: none;
    border: 1px solid rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .7);
    border-radius: 6px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
    transition: all var(--cc-transition);
}

.xw-hero__promo-copy:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.xw-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.xw-hero__bonus {
    background: linear-gradient(135deg, #1a0a30, #2d1060);
    border: 1.5px solid rgba(255, 255, 255, .15);
    border-radius: var(--cc-radius-lg);
    padding: 32px;
    text-align: center;
}

.xw-hero__bonus-title {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.xw-hero__bonus-amount {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    color: var(--cc-green);
    margin-bottom: 4px;
    text-shadow: 0 0 30px rgba(82, 207, 39, .4);
}

.xw-hero__bonus-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 20px;
}

.xw-hero__bonus-spins {
    font-size: 28px;
    font-weight: 800;
    color: var(--cc-orange);
}

.xw-hero__bonus-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin-top: 16px;
}

/* ============ SECTION TITLES ============ */
.xw-heading {
    text-align: center;
    margin-bottom: 44px;
}

.xw-heading__pre {
    display: inline-block;
    background: linear-gradient(135deg, var(--cc-purple), var(--cc-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.xw-heading__title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--cc-text);
    margin-bottom: 12px;
}

.xw-heading__sub {
    font-size: 16px;
    color: var(--cc-text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============ ADVANTAGES ============ */
.xw-advantages {
    background: var(--cc-bg);
}

.xw-adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.xw-adv-card {
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    padding: 28px 22px;
    box-shadow: 0 2px 16px var(--cc-shadow);
    border: 1px solid var(--cc-border);
    transition: transform var(--cc-transition), box-shadow var(--cc-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.xw-adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px var(--cc-shadow-md);
}

.xw-adv-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--cc-purple), var(--cc-purple-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.xw-adv-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.xw-adv-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--cc-text);
    margin-bottom: 8px;
}

.xw-adv-card__text {
    font-size: 13px;
    color: var(--cc-text-light);
    line-height: 1.55;
}

/* ============ JACKPOTS ============ */
.xw-jackpots {
    background: linear-gradient(135deg, #1a0a30 0%, var(--cc-purple-dark) 100%);
    position: relative;
    overflow: hidden;
}

.xw-jackpots::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(82, 207, 39, .12) 0%, transparent 70%);
    pointer-events: none;
}

.xw-jackpots .xw-heading__pre {
    -webkit-text-fill-color: rgba(255, 255, 255, .6);
    background: none;
    color: rgba(255, 255, 255, .6);
}

.xw-jackpots .xw-heading__title {
    color: #fff;
}

.xw-jackpots .xw-heading__sub {
    color: rgba(255, 255, 255, .65);
}

.xw-jackpot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.xw-jackpot-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--cc-radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: transform var(--cc-transition), border-color var(--cc-transition);
    position: relative;
    overflow: hidden;
}

.xw-jackpot-card:hover {
    transform: translateY(-4px);
    border-color: rgba(82, 207, 39, .4);
}

.xw-jackpot-card__label {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.xw-jackpot-card__game {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 16px;
}

.xw-jackpot-card__amount {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--cc-green);
    text-shadow: 0 0 20px rgba(82, 207, 39, .5);
    font-variant-numeric: tabular-nums;
    margin-bottom: 16px;
}

.xw-jackpot-card__provider {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}

.xw-jackpot-card--featured {
    border-color: rgba(243, 144, 47, .3);
}

.xw-jackpot-card--featured .xw-jackpot-card__amount {
    color: var(--cc-orange);
    text-shadow: 0 0 20px rgba(243, 144, 47, .5);
}

/* ============ MIRRORS ============ */
.xw-mirrors {
    background: var(--cc-bg);
}

.xw-mirror-ts {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 14px;
    color: var(--cc-text-light);
}

.xw-mirror-ts span {
    font-weight: 700;
    color: var(--cc-purple);
}

.xw-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
}

.xw-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--cc-radius);
    overflow: hidden;
    background: var(--cc-white);
    box-shadow: 0 2px 16px var(--cc-shadow);
}

.xw-table thead tr {
    background: linear-gradient(90deg, var(--cc-purple-dark), var(--cc-purple));
}

.xw-table thead th {
    padding: 14px 18px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
    white-space: nowrap;
}

.xw-table tbody tr {
    border-bottom: 1px solid var(--cc-border);
    transition: background var(--cc-transition);
}

.xw-table tbody tr:last-child {
    border-bottom: none;
}

.xw-table tbody tr:hover {
    background: rgba(115, 73, 158, .04);
}

.xw-table td {
    padding: 13px 18px;
    font-size: 14px;
    color: var(--cc-text);
    text-align: left;
}

.xw-table .badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.xw-table .badge--green {
    background: rgba(82, 207, 39, .12);
    color: var(--cc-green-dark);
}

.xw-table .badge--orange {
    background: rgba(243, 144, 47, .12);
    color: var(--cc-orange-dark);
}

/* ============ TOURNAMENTS ============ */
.xw-tournaments {
    background: var(--cc-bg-dark);
}

.xw-tournament-slider {
    position: relative;
    overflow: hidden;
}

.xw-tournament-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.xw-t-card {
    background: var(--cc-white);
    border-radius: var(--cc-radius-lg);
    padding: 24px 20px;
    box-shadow: 0 2px 16px var(--cc-shadow);
    border: 1px solid var(--cc-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--cc-transition), box-shadow var(--cc-transition);
}

.xw-t-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px var(--cc-shadow-md);
}

.xw-t-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--cc-purple), var(--cc-purple-light));
    color: #fff;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    align-self: flex-start;
}

.xw-t-card__name {
    font-size: 16px;
    font-weight: 800;
    color: var(--cc-text);
}

.xw-t-card__desc {
    font-size: 13px;
    color: var(--cc-text-light);
    line-height: 1.5;
    flex: 1;
}

.xw-t-card__prize {
    font-size: 22px;
    font-weight: 800;
    color: var(--cc-green);
}

.xw-t-card__prize-label {
    font-size: 11px;
    color: var(--cc-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.xw-t-card__timer {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.xw-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--cc-purple-dark), var(--cc-purple));
    color: #fff;
    border-radius: var(--cc-radius-sm);
    padding: 6px 10px;
    min-width: 44px;
}

.xw-timer-unit__val {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.xw-timer-unit__label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .7;
    margin-top: 2px;
}

.xw-slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.xw-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cc-border);
    border: none;
    cursor: pointer;
    transition: all var(--cc-transition);
    padding: 0;
}

.xw-slider-dot.active {
    background: var(--cc-purple);
    width: 22px;
    border-radius: 4px;
}

/* ============ APP ============ */
.xw-app {
    background: linear-gradient(135deg, var(--cc-purple-dark) 0%, #1a0a30 100%);
}

.xw-app .xw-heading__title {
    color: #fff;
}

.xw-app .xw-heading__sub {
    color: rgba(255, 255, 255, .65);
}

.xw-app .xw-heading__pre {
    -webkit-text-fill-color: rgba(255, 255, 255, .6);
    background: none;
}

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

.xw-app-table {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--cc-radius);
    overflow: hidden;
}

.xw-app-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.xw-app-table tr:last-child {
    border-bottom: none;
}

.xw-app-table td {
    padding: 12px 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
}

.xw-app-table td:first-child {
    color: rgba(255, 255, 255, .5);
    font-weight: 600;
    width: 45%;
}

.xw-app-downloads {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.xw-app-downloads__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.xw-app-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .15);
    border-radius: var(--cc-radius);
    color: #fff;
    cursor: pointer;
    transition: all var(--cc-transition);
    text-decoration: none;
}

.xw-app-btn:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
    transform: translateX(4px);
}

.xw-app-btn__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.xw-app-btn__text {
    flex: 1;
}

.xw-app-btn__label {
    font-size: 11px;
    opacity: .65;
    display: block;
}

.xw-app-btn__name {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

.xw-app-btn__arrow {
    opacity: .5;
}

/* ============ SLOT MINI-GAME ============ */
.xw-slot {
    background: var(--cc-bg);
}

.xw-slot-game {
    max-width: 520px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a0a30, var(--cc-purple-dark));
    border: 2px solid rgba(255, 255, 255, .12);
    border-radius: var(--cc-radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .3);
}

.xw-slot-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

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

.xw-reel {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .15);
    border-radius: var(--cc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, .3);
    transition: all .15s;
}

.xw-reel.spinning {
    animation: xwSpin .12s linear infinite;
}

@keyframes xwSpin {
    0% {
        transform: translateY(-6px);
    }
    50% {
        transform: translateY(6px);
    }
    100% {
        transform: translateY(-6px);
    }
}

.xw-slot-result {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.xw-slot-result__msg {
    font-size: 16px;
    font-weight: 700;
}

.xw-slot-result__msg.win {
    color: var(--cc-green);
}

.xw-slot-result__msg.lose {
    color: rgba(255, 255, 255, .6);
}

.xw-slot-balance {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    margin-top: 12px;
}

.xw-slot-balance span {
    color: var(--cc-orange);
    font-weight: 700;
}

/* ============ REVIEW ============ */
.xw-review {
    background: var(--cc-bg-dark);
}

.xw-review__author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    margin-bottom: 28px;
    box-shadow: 0 2px 12px var(--cc-shadow);
    border: 1px solid var(--cc-border);
}

.xw-review__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cc-purple), var(--cc-purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.xw-review__author-info {
    flex: 1;
}

.xw-review__author-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--cc-text);
}

.xw-review__author-title {
    font-size: 13px;
    color: var(--cc-text-light);
    margin-top: 2px;
}

.xw-review__author-links {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.xw-review__author-links a {
    font-size: 12px;
    color: var(--cc-purple);
    font-weight: 600;
}

.xw-review__author-links a:hover {
    color: var(--cc-orange);
}

.xw-content-box {
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    padding: 32px 36px;
    box-shadow: 0 2px 16px var(--cc-shadow);
    border: 1px solid var(--cc-border);
}

.xw-content-box h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--cc-text);
    margin-top: 28px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cc-border);
}

.xw-content-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--cc-text);
    margin-top: 22px;
    margin-bottom: 10px;
}

.xw-content-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--cc-purple);
    margin-top: 18px;
    margin-bottom: 8px;
}

.xw-content-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cc-text-light);
    margin-bottom: 14px;
}

.xw-content-box ul, .xw-content-box ol {
    margin: 0 0 16px 20px;
}

.xw-content-box ul {
    list-style: disc;
}

.xw-content-box ol {
    list-style: decimal;
}

.xw-content-box li {
    font-size: 15px;
    line-height: 1.65;
    color: var(--cc-text-light);
    margin-bottom: 6px;
}

.xw-content-box strong, .xw-content-box b {
    color: var(--cc-text);
    font-weight: 700;
}

.xw-content-box a {
    color: var(--cc-purple);
    font-weight: 600;
}

.xw-content-box a:hover {
    color: var(--cc-orange);
}

.xw-content-box table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 14px;
}

.xw-content-box table th {
    background: var(--cc-purple);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
}

.xw-content-box table td {
    padding: 10px 14px;
    border: 1px solid var(--cc-border);
    color: var(--cc-text-light);
}

.xw-content-box table tr:nth-child(even) td {
    background: rgba(115, 73, 158, .04);
}

.xw-content-box blockquote {
    border-left: 4px solid var(--cc-purple);
    padding: 12px 20px;
    margin: 18px 0;
    background: rgba(115, 73, 158, .05);
    border-radius: 0 var(--cc-radius-sm) var(--cc-radius-sm) 0;
    font-style: italic;
    color: var(--cc-text-light);
}

/* ============ REGISTRATION TABLE ============ */
.xw-reg {
    background: var(--cc-bg);
}

.xw-reg-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.xw-reg-table tr td {
    background: var(--cc-white);
    padding: 16px 22px;
    border: 1px solid var(--cc-border);
}

.xw-reg-table tr td:first-child {
    border-radius: var(--cc-radius) 0 0 var(--cc-radius);
    width: 48px;
    text-align: center;
    background: linear-gradient(135deg, var(--cc-purple), var(--cc-purple-light));
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border: none;
}

.xw-reg-table tr td:last-child {
    border-radius: 0 var(--cc-radius) var(--cc-radius) 0;
}

.xw-reg-table .step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--cc-text);
    margin-bottom: 4px;
}

.xw-reg-table .step-text {
    font-size: 13px;
    color: var(--cc-text-light);
}

/* ============ FAQ ============ */
.xw-faq {
    background: var(--cc-bg-dark);
}

.xw-faq-item {
    background: var(--cc-white);
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow var(--cc-transition);
}

.xw-faq-item:hover {
    box-shadow: 0 4px 16px var(--cc-shadow);
}

.xw-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    cursor: pointer;
    user-select: none;
}

.xw-faq-q__text {
    font-size: 15px;
    font-weight: 700;
    color: var(--cc-text);
    flex: 1;
}

.xw-faq-q__icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--cc-purple), var(--cc-purple-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--cc-transition);
}

.xw-faq-q__icon svg {
    width: 12px;
    height: 12px;
    fill: #fff;
    transition: transform var(--cc-transition);
}

.xw-faq-item.open .xw-faq-q__icon {
    background: linear-gradient(135deg, var(--cc-orange-dark), var(--cc-orange));
}

.xw-faq-item.open .xw-faq-q__icon svg {
    transform: rotate(45deg);
}

.xw-faq-a {
    display: none;
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--cc-text-light);
    line-height: 1.65;
    border-top: 1px solid var(--cc-border);
    padding-top: 14px;
}

.xw-faq-item.open .xw-faq-a {
    display: block;
}

/* ============ FOOTER ============ */
.xw-footer {
    background: linear-gradient(160deg, var(--cc-purple-dark) 0%, #1a0a30 100%);
    padding: 56px 0 24px;
}

.xw-footer__top {
    display: grid;
    grid-template-columns: 260px 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.xw-footer__brand-logo {
    height: 44px;
    width: auto;
    margin-bottom: 14px;
}

.xw-footer__brand-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
    margin-bottom: 16px;
}

.xw-footer__country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 16px;
}

.xw-footer__social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.xw-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    color: rgba(255, 255, 255, .7);
    transition: all var(--cc-transition);
    text-decoration: none;
}

.xw-footer__social-link:hover {
    background: var(--cc-purple);
    color: #fff;
    transform: translateY(-2px);
}

.xw-footer__social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.xw-footer__heading {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.xw-footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.xw-footer__links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    transition: color var(--cc-transition);
}

.xw-footer__links a:hover {
    color: var(--cc-orange);
}

.xw-footer__mid {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 28px;
}

.xw-footer__mid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    margin-bottom: 20px;
}

.xw-footer__mid-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    width: 100%;
    margin-bottom: -12px;
}

.xw-provider-badge, .xw-payment-badge, .xw-trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--cc-radius-sm);
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .65);
    transition: all var(--cc-transition);
    white-space: nowrap;
}

.xw-provider-badge:hover, .xw-payment-badge:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.xw-trust-badge {
    font-size: 11px;
}

.xw-footer__license {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.xw-license-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
}

.xw-license-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: 4px 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
}

.xw-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
}

.xw-footer__copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
    max-width: 640px;
}

.xw-footer__copyright a {
    color: rgba(255, 255, 255, .55);
}

.xw-footer__legal {
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    max-width: 640px;
    line-height: 1.6;
}

.xw-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--cc-orange);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

/* ============ PROMO WIDGET ============ */
.xw-widget {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 990;
    max-width: 520px;
    width: calc(100% - 32px);
    background: linear-gradient(135deg, #1a0a30, var(--cc-purple-dark));
    border: 1.5px solid rgba(255, 255, 255, .18);
    border-radius: var(--cc-radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .4), 0 0 0 1px rgba(115, 73, 158, .3);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: xwSlideUp .5s cubic-bezier(.4, 0, .2, 1) forwards;
}

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

.xw-widget__promo {
    flex: 1;
}

.xw-widget__label {
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.xw-widget__code {
    font-size: 22px;
    font-weight: 800;
    color: var(--cc-orange);
    letter-spacing: 2px;
}

.xw-widget__bonus {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    margin-top: 2px;
}

.xw-widget__copy {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .8);
    border-radius: var(--cc-radius-sm);
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--cc-transition);
    white-space: nowrap;
}

.xw-widget__copy:hover {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.xw-widget__cta {
    flex-shrink: 0;
}

.xw-widget__close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: var(--cc-purple);
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--cc-transition);
}

.xw-widget__close:hover {
    background: var(--cc-orange);
}

.xw-widget.hidden {
    display: none;
}

/* ============ UTILITIES ============ */
.xw-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cc-border), transparent);
    margin: 0;
}

.xw-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.xw-tag--purple {
    background: rgba(115, 73, 158, .12);
    color: var(--cc-purple);
}

.xw-tag--green {
    background: rgba(82, 207, 39, .12);
    color: var(--cc-green-dark);
}

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

.xw-mt-4 {
    margin-top: 16px;
}

.xw-mt-8 {
    margin-top: 32px;
}

.xw-mb-4 {
    margin-bottom: 16px;
}

/* ============ FADE-IN ANIMATION ============ */
.xw-fadein {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s cubic-bezier(.4, 0, .2, 1), transform .55s cubic-bezier(.4, 0, .2, 1);
}

.xw-fadein.visible {
    opacity: 1;
    transform: none;
}

/* ============ UNUSED / WP DECOY ============ */
.wp-block-image {
    display: block;
}

.wp-block-paragraph {
    margin-bottom: 1em;
}

.entry-content .alignleft {
    float: left;
    margin-right: 1.5em;
}

.entry-content .alignright {
    float: right;
    margin-left: 1.5em;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.elementor-widget-container {
    position: relative;
}

.vc_column_inner {
    display: block;
}

.wpb_content_element {
    margin-bottom: 24px;
}

.has-large-font-size {
    font-size: 36px;
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .xw-tournament-track {
        grid-template-columns: repeat(3, 1fr);
    }

    .xw-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .xw-app-grid {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .xw-header__nav {
        display: none;
    }

    .xw-burger {
        display: flex;
    }

    .xw-hero__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .xw-hero__btns {
        justify-content: center;
    }

    .xw-hero__promo {
        margin: 0 auto 28px;
    }

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

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

    .xw-tournament-track {
        grid-template-columns: 1fr;
    }

    .xw-tournament-track.slider-mode {
        display: flex;
    }

    .xw-slider-dots {
        display: flex;
    }

    .xw-app-grid {
        grid-template-columns: 1fr;
    }

    .xw-footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .xw-widget {
        padding: 12px 16px;
        gap: 10px;
    }

    .xw-widget__code {
        font-size: 18px;
    }

    .xw-widget__cta .xw-btn {
        padding: 9px 16px;
        font-size: 13px;
    }

    .xw-content-box {
        padding: 20px 18px;
    }

    .xw-section {
        padding: 44px 0;
    }
}

@media (max-width: 480px) {
    .xw-adv-grid {
        grid-template-columns: 1fr;
    }

    .xw-jackpot-grid {
        grid-template-columns: 1fr;
    }

    .xw-reels {
        gap: 8px;
    }

    .xw-reel {
        width: 68px;
        height: 68px;
        font-size: 34px;
    }

    .xw-header__status {
        display: none;
    }
}

.xw-tournaments {
    position: relative;
    padding: 72px 0;
    background: radial-gradient(circle at 15% 10%, rgba(115, 73, 158, .12), transparent 35%),
    radial-gradient(circle at 90% 85%, rgba(243, 144, 47, .1), transparent 30%),
    #e8eaf1;
    overflow: hidden;
}

.xw-tournaments .xw-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.xw-tournaments .xw-heading {
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
}

.xw-tournaments .xw-heading__pre {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(115, 73, 158, .1);
    border: 1px solid rgba(115, 73, 158, .2);
    border-radius: 999px;
    color: #73499e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.xw-tournaments .xw-heading__title {
    margin: 0 0 12px;
    color: #1a1a2e;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    font-weight: 800;
}

.xw-tournaments .xw-heading__sub {
    max-width: 600px;
    margin: 0 auto;
    color: #5d5d74;
    font-size: 16px;
    line-height: 1.65;
}

.xw-tournament-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.xw-tournament-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
    width: 100%;
}

.xw-t-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 26px 22px 22px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(115, 73, 158, .18);
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(26, 26, 46, .04),
    0 12px 30px rgba(90, 52, 128, .1);
    overflow: hidden;
    transition: transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.xw-t-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #73499e, #8b5db8, #f3902f);
}

.xw-t-card:hover {
    transform: translateY(-6px);
    border-color: rgba(115, 73, 158, .4);
    box-shadow: 0 4px 8px rgba(26, 26, 46, .05),
    0 18px 42px rgba(90, 52, 128, .18);
}

.xw-t-card__badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    min-height: 28px;
    margin-bottom: 16px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #73499e, #8b5db8);
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(115, 73, 158, .25);
}

.xw-t-card__badge svg {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
}

.xw-t-card__name {
    min-height: 48px;
    margin: 0 0 10px;
    color: #1a1a2e;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.xw-t-card__desc {
    flex: 1;
    margin: 0 0 20px;
    color: #5d5d74;
    font-size: 14px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.xw-t-card__prize-label {
    margin: 0 0 3px;
    color: #7a7a92;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.xw-t-card__prize {
    margin: 0 0 18px;
    color: #45b921;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 5px 18px rgba(82, 207, 39, .16);
}

.xw-t-card__timer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
    margin: 0 0 18px;
}

.xw-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 62px;
    padding: 8px 5px;
    background: linear-gradient(145deg, #4b286f, #73499e);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12),
    0 5px 12px rgba(90, 52, 128, .18);
}

.xw-timer-unit__val {
    display: block;
    font-size: 21px;
    line-height: 1;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.xw-timer-unit__label {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .68);
    font-size: 8px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.xw-t-card .xw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: auto !important;
    padding: 10px 18px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.xw-t-card .xw-btn--primary {
    background: linear-gradient(135deg, #5dde30, #45bb20);
    box-shadow: 0 7px 18px rgba(82, 207, 39, .28);
}

.xw-t-card .xw-btn--secondary {
    background: linear-gradient(135deg, #f7a849, #e27a1f);
    box-shadow: 0 7px 18px rgba(243, 144, 47, .28);
}

.xw-t-card .xw-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(52, 30, 75, .22);
}

.xw-slider-dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.xw-slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    background: #bec1ce;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: width .25s ease,
    background .25s ease,
    transform .25s ease;
}

.xw-slider-dot:hover {
    background: #8b5db8;
    transform: scale(1.15);
}

.xw-slider-dot.active {
    width: 28px;
    background: linear-gradient(90deg, #73499e, #f3902f);
}

@media (max-width: 1024px) {
    .xw-tournaments {
        padding: 60px 0;
    }

    .xw-tournament-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .xw-t-card__name {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .xw-tournaments {
        padding: 48px 0;
    }

    .xw-tournaments .xw-container {
        padding: 0 16px;
    }

    .xw-tournaments .xw-heading {
        margin-bottom: 28px;
    }

    .xw-tournaments .xw-heading__title {
        font-size: 28px;
    }

    .xw-tournaments .xw-heading__sub {
        font-size: 15px;
    }

    .xw-tournament-slider {
        margin: 0;
        overflow: hidden;
        touch-action: pan-y;
    }

    .xw-tournament-track {
        display: flex;
        align-items: stretch;
        gap: 0;
        width: 100%;
        transition: transform .4s cubic-bezier(.4, 0, .2, 1);
        will-change: transform;
    }

    .xw-t-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        padding: 24px 20px 20px;
        border-radius: 18px;
        transform: none;
    }

    .xw-t-card:hover {
        transform: none;
    }

    .xw-t-card__name {
        min-height: auto;
        font-size: 19px;
    }

    .xw-t-card__desc {
        min-height: auto;
        font-size: 14px;
    }

    .xw-t-card__prize {
        font-size: 29px;
    }

    .xw-slider-dots {
        display: flex;
    }
}

@media (max-width: 480px) {
    .xw-tournaments {
        padding: 40px 0;
    }

    .xw-tournaments .xw-container {
        padding: 0 12px;
    }

    .xw-tournaments .xw-heading {
        margin-bottom: 24px;
        text-align: left;
    }

    .xw-tournaments .xw-heading__pre {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .xw-tournaments .xw-heading__title {
        font-size: 25px;
        line-height: 1.2;
    }

    .xw-tournaments .xw-heading__sub {
        margin: 0;
        font-size: 14px;
        line-height: 1.55;
    }

    .xw-t-card {
        padding: 22px 16px 18px;
        border-radius: 16px;
    }

    .xw-t-card__badge {
        margin-bottom: 14px;
        padding: 5px 10px;
        font-size: 10px;
    }

    .xw-t-card__name {
        font-size: 18px;
    }

    .xw-t-card__desc {
        margin-bottom: 17px;
        font-size: 13px;
    }

    .xw-t-card__prize {
        margin-bottom: 16px;
        font-size: 27px;
    }

    .xw-t-card__timer {
        gap: 5px;
        margin-bottom: 16px;
    }

    .xw-timer-unit {
        min-height: 57px;
        padding: 7px 3px;
        border-radius: 8px;
    }

    .xw-timer-unit__val {
        font-size: 18px;
    }

    .xw-timer-unit__label {
        font-size: 7px;
        letter-spacing: .4px;
    }

    .xw-t-card .xw-btn {
        min-height: 45px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .xw-t-card {
        padding-left: 13px;
        padding-right: 13px;
    }

    .xw-t-card__timer {
        gap: 4px;
    }

    .xw-timer-unit {
        min-height: 54px;
    }

    .xw-timer-unit__val {
        font-size: 17px;
    }
}