:root {
  --c-bg: #020100;
  --c-header: #090111;
  --c-btn-blue: #0b80dc;
  --c-btn-green: #a8c94e;
  --c-text: #e8e4f0;
  --c-text-muted: #9d95b0;
  --c-border: #1e1530;
  --c-card: #0d0820;
  --c-card2: #0a0618;
  --c-gold: #f0c040;
  --c-accent: #1a0f35;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-main: Helvetica, Arial, sans-serif;
  --trans: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-btn-blue); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--c-gold); }

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

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

/* ─── HEADER ─── */
.xw-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header);
  border-bottom: 1px solid #1a0f35;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.xw-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.xw-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.xw-header__nav a {
  color: #ccc4e0;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--trans);
}

.xw-header__nav a:hover {
  color: #fff;
  background: rgba(11,128,220,0.15);
}

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

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

.xw-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4cff91;
  box-shadow: 0 0 6px #4cff91;
  animation: xw-pulse 1.8s infinite;
}

@keyframes xw-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.xw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: var(--trans);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.xw-btn--blue {
  background: var(--c-btn-blue);
  color: #fff;
}

.xw-btn--blue:hover {
  background: #0a6bb8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(11,128,220,0.45);
}

.xw-btn--green {
  background: var(--c-btn-green);
  color: #0a1a00;
}

.xw-btn--green:hover {
  background: #bedd5a;
  color: #0a1a00;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(168,201,78,0.45);
}

.xw-btn--gold {
  background: linear-gradient(135deg, #f0c040, #e09020);
  color: #0a0500;
  font-size: 15px;
  padding: 12px 28px;
}

.xw-btn--gold:hover {
  background: linear-gradient(135deg, #ffe060, #f0a030);
  color: #0a0500;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(240,192,64,0.5);
}

.xw-btn--lg {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.xw-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.xw-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e0d8f0;
  border-radius: 2px;
  transition: var(--trans);
}

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

.xw-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-header);
  border-top: 1px solid #1e1530;
  padding: 16px 20px;
  gap: 4px;
}

.xw-mobile-nav.active { display: flex; }

.xw-mobile-nav a {
  color: #ccc4e0;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  transition: var(--trans);
}

.xw-mobile-nav a:hover {
  background: rgba(11,128,220,0.15);
  color: #fff;
}

/* ─── HERO SLIDER ─── */
.xw-hero {
  position: relative;
  overflow: hidden;
  height: 520px;
  background: #0a0510;
}

.xw-hero__slides {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.xw-hero__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.xw-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,1,0,0.85) 0%, rgba(2,1,0,0.4) 60%, transparent 100%);
}

.xw-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 600px;
}

.xw-hero__tag {
  display: inline-block;
  background: var(--c-btn-green);
  color: #0a1a00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

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

.xw-hero__title span { color: var(--c-gold); }

.xw-hero__sub {
  font-size: 16px;
  color: #c8c0dc;
  margin-bottom: 28px;
  line-height: 1.55;
}

.xw-hero__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.xw-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--trans);
  border: none;
}

.xw-hero__dot.active { background: var(--c-gold); transform: scale(1.2); }

.xw-hero__prev,
.xw-hero__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(9,1,17,0.7);
  border: 1px solid #2a1f45;
  color: #e0d8f0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  font-size: 18px;
}

.xw-hero__prev { left: 16px; }
.xw-hero__next { right: 16px; }
.xw-hero__prev:hover, .xw-hero__next:hover { background: var(--c-btn-blue); border-color: var(--c-btn-blue); }

/* ─── BREADCRUMBS ─── */
.xw-breadcrumbs {
  background: #06030f;
  border-bottom: 1px solid #120d22;
  padding: 10px 0;
}

.xw-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  font-size: 13px;
}

.xw-breadcrumbs__list li {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--c-text-muted);
}

.xw-breadcrumbs__list a { color: var(--c-btn-blue); }
.xw-breadcrumbs__list a:hover { color: var(--c-gold); }

.xw-breadcrumbs__sep {
  color: #3a2f55;
  font-size: 14px;
}

/* ─── TOC ─── */
.xw-toc {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  margin: 0 0 40px;
}

.xw-toc__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.xw-toc__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 6px 20px;
}

.xw-toc__list li a {
  color: #b8b0cc;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid #12092a;
  transition: var(--trans);
}

.xw-toc__list li a::before {
  content: '›';
  color: var(--c-btn-blue);
  font-size: 18px;
  line-height: 1;
}

.xw-toc__list li a:hover { color: var(--c-gold); padding-left: 6px; }

/* ─── SECTION TITLES ─── */
.xw-section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #f0e8ff;
  margin-bottom: 8px;
  text-balance: balance;
}

.xw-section-subtitle {
  font-size: 15px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
  line-height: 1.55;
}

.xw-section-head { margin-bottom: 36px; }

.xw-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-btn-blue), var(--c-btn-green));
  border-radius: 2px;
  margin: 10px 0 20px;
}

/* ─── ADVANTAGES ─── */
.xw-advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.xw-adv-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.xw-adv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-btn-blue), var(--c-btn-green));
  opacity: 0;
  transition: var(--trans);
}

.xw-adv-card:hover::before { opacity: 1; }
.xw-adv-card:hover { transform: translateY(-4px); border-color: #2a1f45; box-shadow: 0 8px 32px rgba(11,128,220,0.15); }

.xw-adv-card__icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.xw-adv-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #f0e8ff;
  margin-bottom: 8px;
}

.xw-adv-card__text {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.55;
}

/* ─── JACKPOTS ─── */
.xw-jackpots {
  background: linear-gradient(135deg, #0a050f 0%, #12082a 50%, #0a050f 100%);
  border: 1px solid #1e1530;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.xw-jackpots::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,192,64,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.xw-jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.xw-jackpot-card {
  background: rgba(9,1,17,0.9);
  border: 1px solid #2a1f45;
  border-radius: var(--radius-md);
  padding: 26px 18px;
  transition: var(--trans);
}

.xw-jackpot-card:hover { border-color: var(--c-gold); transform: scale(1.03); }

.xw-jackpot-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}

.xw-jackpot-card__amount {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--c-gold);
  text-shadow: 0 0 20px rgba(240,192,64,0.5);
  font-variant-numeric: tabular-nums;
}

.xw-jackpot-card__game {
  font-size: 13px;
  color: #8a82a0;
  margin-top: 6px;
}

/* ─── MIRRORS TABLE ─── */
.xw-mirrors__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 20px;
}

.xw-mirrors__meta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4cff91;
  box-shadow: 0 0 6px #4cff91;
}

.xw-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}

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

.xw-table thead {
  background: #0d0820;
}

.xw-table thead th {
  padding: 14px 18px;
  text-align: left;
  color: var(--c-text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--c-border);
  white-space: nowrap;
}

.xw-table tbody tr {
  border-bottom: 1px solid #10091e;
  transition: var(--trans);
}

.xw-table tbody tr:last-child { border-bottom: none; }
.xw-table tbody tr:hover { background: rgba(11,128,220,0.06); }

.xw-table tbody td {
  padding: 14px 18px;
  color: var(--c-text);
  vertical-align: middle;
}

.xw-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(76,255,145,0.1);
  color: #4cff91;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(76,255,145,0.2);
}

.xw-status-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4cff91;
}

.xw-mirror-link {
  color: var(--c-btn-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.xw-mirror-link:hover { color: var(--c-gold); }

/* ─── VIDEO ─── */
.xw-video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: #050310;
}

.xw-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ─── LIVE GAMES ─── */
.xw-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.xw-game-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}

.xw-game-card:hover {
  transform: translateY(-4px);
  border-color: #2a1f45;
  box-shadow: 0 8px 28px rgba(11,128,220,0.2);
}

.xw-game-card__thumb {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, #0f082a, #1a0f35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}

.xw-game-card__thumb-img,
.xw-game-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.xw-game-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.xw-game-card__provider {
  font-size: 11px;
  color: var(--c-text-muted);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.xw-game-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #f0e8ff;
  flex: 1;
}

.xw-game-card__btn {
  margin-top: 4px;
  width: 100%;
  text-align: center;
}

/* ─── CONTENT BLOCK ─── */
.xw-content-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  line-height: 1.75;
}

.xw-content-block h1, .xw-content-block h2, .xw-content-block h3,
.xw-content-block h4, .xw-content-block h5, .xw-content-block h6 {
  color: #f0e8ff;
  margin: 28px 0 12px;
  line-height: 1.3;
}

.xw-content-block h1 { font-size: 28px; }
.xw-content-block h2 { font-size: 24px; color: var(--c-gold); }
.xw-content-block h3 { font-size: 20px; }
.xw-content-block h4 { font-size: 17px; }

.xw-content-block p {
  margin-bottom: 16px;
  color: #c8c0dc;
}

.xw-content-block ul, .xw-content-block ol {
  margin: 12px 0 18px 24px;
  color: #c0b8d8;
}

.xw-content-block li { margin-bottom: 8px; line-height: 1.6; }

.xw-content-block a { color: var(--c-btn-blue); font-weight: 600; }
.xw-content-block a:hover { color: var(--c-gold); }

.xw-content-block blockquote {
  border-left: 3px solid var(--c-btn-blue);
  background: rgba(11,128,220,0.06);
  padding: 14px 20px;
  margin: 20px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #b0a8c8;
  font-style: italic;
}

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

.xw-content-block table th {
  background: #0d0820;
  padding: 12px 16px;
  text-align: left;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.xw-content-block table td {
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  color: #c0b8d8;
}

.xw-content-block table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.xw-content-block strong { color: #f0e8ff; }
.xw-content-block em { color: #c8b8e8; }
.xw-content-block code {
  background: #0d0820;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  color: #a8c94e;
}

/* ─── REVIEWS ─── */
.xw-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.xw-review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--trans);
}

.xw-review-card:hover { border-color: #2a1f45; box-shadow: 0 4px 18px rgba(11,128,220,0.12); }

.xw-review-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.xw-review-card__avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
  flex-shrink: 0;
}

.xw-review-card__meta-name {
  font-size: 15px;
  font-weight: 700;
  color: #f0e8ff;
}

.xw-review-card__stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}

.xw-review-card__text {
  font-size: 14px;
  color: #b0a8c8;
  line-height: 1.6;
}

/* ─── REVIEW FORM ─── */
.xw-review-form-wrap {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.xw-review-form-wrap .xw-section-title {
  font-size: 20px;
  margin-bottom: 22px;
}

.xw-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.xw-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.xw-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.4px;
}

.xw-form-group input,
.xw-form-group textarea {
  background: #080515;
  border: 1px solid #1e1530;
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-size: 15px;
  font-family: var(--font-main);
  padding: 12px 16px;
  transition: var(--trans);
  outline: none;
  width: 100%;
}

.xw-form-group input:focus,
.xw-form-group textarea:focus {
  border-color: var(--c-btn-blue);
  box-shadow: 0 0 0 3px rgba(11,128,220,0.12);
}

.xw-form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.xw-form-success {
  display: none;
  background: rgba(76,255,145,0.1);
  border: 1px solid rgba(76,255,145,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: #4cff91;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}

.xw-form-success.show { display: block; animation: xw-fadein 0.4s ease; }

@keyframes xw-fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ─── AUTHOR ─── */
.xw-author-block {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 40px;
}

.xw-author-block__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-btn-blue);
  flex-shrink: 0;
}

.xw-author-block__name {
  font-size: 18px;
  font-weight: 700;
  color: #f0e8ff;
  margin-bottom: 4px;
}

.xw-author-block__role {
  font-size: 13px;
  color: var(--c-btn-green);
  font-weight: 600;
  margin-bottom: 12px;
}

.xw-author-block__bio {
  font-size: 14px;
  color: #b0a8c8;
  line-height: 1.65;
  margin-bottom: 14px;
}

.xw-author-block__socials {
  display: flex;
  gap: 10px;
}

.xw-author-block__social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11,128,220,0.12);
  border: 1px solid rgba(11,128,220,0.25);
  color: var(--c-btn-blue);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: var(--trans);
}

.xw-author-block__social-link:hover {
  background: var(--c-btn-blue);
  color: #fff;
}

/* ─── FOOTER ─── */
.xw-footer {
  background: var(--c-header);
  border-top: 1px solid #1a0f35;
  padding-top: 48px;
  padding-bottom: 20px;
}

.xw-footer__top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #1e1530;
  margin-bottom: 28px;
}

.xw-footer__logo img { height: 40px; width: auto; margin-bottom: 14px; }

.xw-footer__desc {
  font-size: 13px;
  color: #7a7090;
  line-height: 1.65;
}

.xw-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5a5070;
  margin-bottom: 14px;
}

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

.xw-footer__links a {
  font-size: 14px;
  color: #7a7090;
  transition: var(--trans);
}

.xw-footer__links a:hover { color: #e0d8f0; }

.xw-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.xw-footer__badge {
  background: #0d0820;
  border: 1px solid #1e1530;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: #7a7090;
  font-weight: 600;
  white-space: nowrap;
}

.xw-footer__payments-title,
.xw-footer__providers-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5a5070;
  margin-bottom: 14px;
  margin-top: 24px;
}

.xw-footer__payments,
.xw-footer__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.xw-footer__pay-badge,
.xw-footer__prov-badge {
  background: #0d0820;
  border: 1px solid #1e1530;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  color: #6a6080;
  font-weight: 600;
  white-space: nowrap;
}

.xw-footer__legal {
  font-size: 12px;
  color: #4a4060;
  line-height: 1.65;
  text-align: center;
}

.xw-footer__legal a { color: #6a5090; }
.xw-footer__legal a:hover { color: #9a80c0; }

.xw-footer__copyright {
  font-size: 13px;
  color: #5a5070;
  text-align: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #12091e;
}

/* ─── BOTTOM WIDGET ─── */
.xw-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #060220 0%, #0d0438 100%);
  border-top: 2px solid var(--c-btn-green);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
  transform: translateY(0);
  transition: var(--trans);
}

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

.xw-widget__text {
  font-size: 14px;
  color: #d8d0f0;
  font-weight: 600;
}

.xw-widget__bonus {
  font-size: 14px;
  color: var(--c-gold);
  font-weight: 800;
}

.xw-widget__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-btn-green);
  color: #0a1a00;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--trans);
  white-space: nowrap;
}

.xw-widget__btn:hover {
  background: #bedd5a;
  color: #0a1a00;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(168,201,78,0.5);
}

.xw-widget__close {
  background: none;
  border: none;
  color: #7a7090;
  cursor: pointer;
  font-size: 20px;
  padding: 4px;
  line-height: 1;
  transition: var(--trans);
  flex-shrink: 0;
}

.xw-widget__close:hover { color: #e0d8f0; }

/* ─── GAMES SLIDER ─── */
.xw-games-slider {
  display: none;
  overflow: hidden;
  position: relative;
}

.xw-games-slider-inner {
  display: flex;
  gap: 0;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.xw-games-slider-inner .xw-game-card {
  min-width: 100%;
  flex-shrink: 0;
}

.xw-slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.xw-slider-btn {
  background: #0d0820;
  border: 1px solid #2a1f45;
  color: #e0d8f0;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--trans);
}

.xw-slider-btn:hover { background: var(--c-btn-blue); border-color: var(--c-btn-blue); }

/* ─── FAQ ─── */
.xw-faq { margin-top: 40px; }

.xw-faq-item {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.xw-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  color: #e8e0f8;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--trans);
  font-family: var(--font-main);
}

.xw-faq-question:hover { background: rgba(11,128,220,0.06); }

.xw-faq-icon {
  font-size: 20px;
  color: var(--c-btn-blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

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

.xw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.xw-faq-item.open .xw-faq-answer {
  max-height: 400px;
}

.xw-faq-answer-inner {
  padding: 4px 20px 18px;
  font-size: 14px;
  color: #b0a8c8;
  line-height: 1.65;
}

/* ─── WP DECOY ELEMENTS ─── */
.wc-block-components-notices { display: none; }
.elementor-invisible { display: none !important; }
.wp-block-latest-posts { display: none !important; }
.wpcf7-response-output { display: none; }
.widget_block { display: none; }

/* ─── ANIMATIONS ─── */
.xw-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.xw-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .xw-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

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

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

  .xw-hero { height: 380px; }
  .xw-hero__content { padding: 0 24px; max-width: 100%; }
  .xw-hero__title { font-size: 22px; }

  .xw-games-grid { display: none; }
  .xw-games-slider { display: block; }

  .xw-author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .xw-author-block__socials { justify-content: center; }

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

  .xw-content-block { padding: 24px 20px; }
  .xw-jackpots { padding: 32px 20px; }
  .xw-review-form-wrap { padding: 22px 18px; }

  .xw-widget {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 16px;
  }

  .xw-widget__text { text-align: center; width: 100%; }

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

@media (max-width: 480px) {
  .xw-hero { height: 320px; }
  .xw-hero__prev, .xw-hero__next { width: 34px; height: 34px; font-size: 14px; }

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

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

/* unused decoy styles */
.elmt-v3-q7 { font-size: 14px; line-height: 1.4; }
.woocommerce-cart-nonce { display: none; }
.elementor-widget-wrap-edited { pointer-events: auto; }
.wp-post-thumbnail-wrap { position: relative; }
.uagb-r7k9 { width: 100%; }
