@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --c-bg: #090f1e;
  --c-header: #141b2e;
  --c-footer: #141b2e;
  --c-btn-login: #1f2841;
  --c-btn-reg: #19ac5a;
  --c-text: #e8eaf0;
  --c-text-muted: #8b95b0;
  --c-accent: #19ac5a;
  --c-accent2: #1f2841;
  --c-border: rgba(255,255,255,0.08);
  --c-card: #111827;
  --c-card2: #0d1525;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; background: var(--c-bg); overflow-x: hidden; width: 100%; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #22d06e; }

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

.xw-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.xw-wrapper { min-height: 100vh; display: flex; flex-direction: column; width: 100%; }

/* ─── BUTTONS ─── */
.xw-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--radius-sm); font-family: 'Open Sans', sans-serif;
  font-weight: 700; font-size: 14px; border: none; cursor: pointer; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.xw-btn--login { background: var(--c-btn-login); color: #c8d0e8; border: 1px solid rgba(255,255,255,0.12); }
.xw-btn--login:hover { background: #263258; color: #fff; }
.xw-btn--reg { background: var(--c-btn-reg); color: #fff; box-shadow: 0 4px 18px rgba(25,172,90,0.35); }
.xw-btn--reg:hover { background: #1dc968; box-shadow: 0 6px 24px rgba(25,172,90,0.5); transform: translateY(-1px); }
.xw-btn--lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius); }
.xw-btn--bonus { background: var(--c-btn-reg); color: #fff; box-shadow: 0 4px 18px rgba(25,172,90,0.35); }
.xw-btn--bonus:hover { background: #1dc968; transform: translateY(-1px); }

/* ─── HEADER ─── */
#xw-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.xw-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.xw-header__logo { flex-shrink: 0; }
.xw-header__logo img { height: 40px; width: auto; }
.xw-header__nav { display: flex; align-items: center; gap: 6px; }
.xw-header__nav a {
  color: #c8d0e8; font-size: 13px; font-weight: 600; padding: 6px 10px;
  border-radius: 6px; transition: all var(--transition); white-space: nowrap;
}
.xw-header__nav a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.xw-header__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.xw-header__online {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--c-text-muted); white-space: nowrap;
}
.xw-header__online-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-accent);
  box-shadow: 0 0 6px var(--c-accent); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.xw-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.xw-burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--transition); display: block; }
.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; background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 16px 20px; flex-direction: column; gap: 8px;
}
.xw-mobile-nav.open { display: flex; }
.xw-mobile-nav a {
  color: #c8d0e8; font-size: 14px; font-weight: 600; padding: 10px 14px;
  border-radius: var(--radius-sm); border: 1px solid var(--c-border);
  transition: all var(--transition);
}
.xw-mobile-nav a:hover { background: rgba(255,255,255,0.07); color: #fff; }

/* ─── HERO ─── */
#xw-hero {
  position: relative; overflow: hidden;
  background: var(--c-bg);
  min-height: 660px; display: flex; align-items: center;
}
.xw-hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.8s ease;
}
.xw-hero__slide.active { opacity: 1; }
.xw-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(9,15,30,0.92) 40%, rgba(9,15,30,0.4) 100%);
}
.xw-hero__content {
  position: relative; z-index: 2;
  max-width: 620px; padding: 60px 0;
}
.xw-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(25,172,90,0.15); border: 1px solid rgba(25,172,90,0.3);
  color: var(--c-accent); font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.xw-hero__title {
  font-size: clamp(28px, 5vw, 48px); font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 16px; text-balance: balance;
}
.xw-hero__title span { color: var(--c-accent); }
.xw-hero__desc { font-size: 16px; color: #a8b4cc; margin-bottom: 32px; line-height: 1.65; }
.xw-hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.xw-hero__bonus {
  background: rgba(25,172,90,0.1); border: 1px solid rgba(25,172,90,0.25);
  border-radius: var(--radius); padding: 14px 20px;
  margin-top: 28px; display: inline-flex; align-items: center; gap: 12px;
}
.xw-hero__bonus-icon { font-size: 28px; }
.xw-hero__bonus-text { font-size: 13px; color: var(--c-text-muted); }
.xw-hero__bonus-text strong { color: #fff; font-size: 20px; display: block; }

.xw-slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.xw-slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all var(--transition); border: none; }
.xw-slider-dot.active { background: var(--c-accent); width: 24px; border-radius: 4px; }

/* ─── BREADCRUMBS ─── */
#xw-breadcrumbs { padding: 14px 0; background: var(--c-card2); border-bottom: 1px solid var(--c-border); }
.xw-breadcrumbs__list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 13px; }
.xw-breadcrumbs__list li { display: flex; align-items: center; gap: 6px; color: var(--c-text-muted); }
.xw-breadcrumbs__list li a { color: var(--c-text-muted); }
.xw-breadcrumbs__list li a:hover { color: var(--c-accent); }
.xw-breadcrumbs__list li:last-child { color: var(--c-text); }
.xw-breadcrumbs__sep { color: rgba(255,255,255,0.2); font-size: 12px; }

/* ─── SECTION TITLES ─── */
.xw-section { padding: 56px 0; }
.xw-section__title {
  font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: #fff;
  margin-bottom: 8px; position: relative; display: inline-block;
}
.xw-section__title::after {
  content: ''; display: block; width: 48px; height: 3px;
  background: var(--c-accent); border-radius: 2px; margin-top: 8px;
}
.xw-section__subtitle { color: var(--c-text-muted); font-size: 14px; margin-bottom: 36px; margin-top: 4px; }

/* ─── TABLE OF CONTENTS ─── */
#xw-toc { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 40px; }
.xw-toc__title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.xw-toc__title svg { color: var(--c-accent); }
.xw-toc__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px 20px; counter-reset: toc; }
.xw-toc__item { counter-increment: toc; }
.xw-toc__item a {
  display: flex; align-items: center; gap: 10px;
  color: #a8b4cc; font-size: 13px; font-weight: 600;
  padding: 7px 10px; border-radius: 6px; transition: all var(--transition);
}
.xw-toc__item a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 11px; color: var(--c-accent); font-weight: 700; min-width: 22px;
}
.xw-toc__item a:hover { background: rgba(255,255,255,0.05); color: #fff; }

/* ─── ADVANTAGES ─── */
.xw-adv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.xw-adv-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 24px 20px;
  transition: all var(--transition); 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-accent), #0ddb72);
  opacity: 0; transition: opacity var(--transition);
}
.xw-adv-card:hover { border-color: rgba(25,172,90,0.3); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.xw-adv-card:hover::before { opacity: 1; }
.xw-adv-icon { font-size: 32px; margin-bottom: 14px; }
.xw-adv-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.xw-adv-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.55; }

/* ─── PROS/CONS ─── */
.xw-procon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.xw-procon-col {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 26px;
}
.xw-procon-col--pros { border-top: 3px solid var(--c-accent); }
.xw-procon-col--cons { border-top: 3px solid #e05252; }
.xw-procon-head { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.xw-procon-head svg { flex-shrink: 0; }
.xw-procon-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.xw-procon-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--c-text); line-height: 1.5; }
.xw-procon-list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; background-size: 10px; background-repeat: no-repeat; background-position: center; }
.xw-procon-col--pros .xw-procon-list li::before { background-color: rgba(25,172,90,0.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2319ac5a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.xw-procon-col--cons .xw-procon-list li::before { background-color: rgba(224,82,82,0.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23e05252' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }

/* ─── WINNERS ─── */
.xw-winners-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--c-border); }
.xw-winners-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.xw-winners-table thead tr { background: var(--c-card2); }
.xw-winners-table th {
  text-align: left; padding: 14px 18px; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border);
}
.xw-winners-table tbody tr { transition: background var(--transition); border-bottom: 1px solid var(--c-border); }
.xw-winners-table tbody tr:last-child { border-bottom: none; }
.xw-winners-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.xw-winners-table td { padding: 12px 18px; font-size: 13px; color: var(--c-text); }
.xw-winners-table td:first-child { font-weight: 700; color: var(--c-text-muted); width: 48px; }
.xw-winners-table td.top1 { color: #ffd700; }
.xw-winners-table td.top2 { color: #c0c0c0; }
.xw-winners-table td.top3 { color: #cd7f32; }
.xw-winners-amount { color: var(--c-accent) !important; font-weight: 700 !important; }
.xw-winners-game { font-size: 12px; color: var(--c-text-muted); }

/* ─── LIVE GAMES SLIDER ─── */
.xw-games-slider { position: relative; padding: 0 50px; width: 100%; }
.xw-games-viewport { overflow: hidden; width: 100%; }
.xw-games-track {
  display: flex; gap: 16px;
  transition: transform 0.4s ease;
  will-change: transform;
}
.xw-game-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
}
.xw-game-card:hover { border-color: rgba(25,172,90,0.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.35); }
.xw-games-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-card); border: 1px solid var(--c-border);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); z-index: 2;
}
.xw-games-btn:hover { background: var(--c-accent); border-color: var(--c-accent); }
.xw-games-btn--prev { left: 0; }
.xw-games-btn--next { right: 0; }
.xw-games-btn:disabled { opacity: 0.3; cursor: default; }
.xw-games-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.xw-games-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; cursor: pointer; transition: all var(--transition); }
.xw-games-dot.active { background: var(--c-accent); width: 24px; border-radius: 4px; }
.xw-game-thumb {
  width: 100%; aspect-ratio: 16/10;
  background: linear-gradient(135deg, #141b2e 0%, #1f2841 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.xw-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.xw-game-thumb-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--c-accent); font-size: 40px;
}
.xw-game-thumb-placeholder span { font-size: 12px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; }
.xw-game-live-badge {
  position: absolute; top: 10px; left: 10px;
  background: #e05252; color: #fff; font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px;
}
.xw-game-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.xw-game-name { font-weight: 700; font-size: 15px; color: #fff; }
.xw-game-provider { font-size: 12px; color: var(--c-text-muted); }

/* ─── SLOT MINI GAME ─── */
#xw-slot { background: var(--c-card2); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 40px 32px; text-align: center; }
.xw-slot__subtitle { color: var(--c-text-muted); font-size: 14px; margin-bottom: 32px; }
.xw-slot__reels {
  display: flex; justify-content: center; gap: 12px; margin-bottom: 28px;
}
.xw-slot__reel {
  width: 88px; height: 88px; background: var(--c-card);
  border: 2px solid var(--c-border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; overflow: hidden; position: relative;
  box-shadow: inset 0 2px 12px rgba(0,0,0,0.4);
}
.xw-slot__reel.spinning { animation: reelSpin 0.15s linear infinite; }
@keyframes reelSpin { 0%{transform:translateY(0);} 50%{transform:translateY(-10px);} 100%{transform:translateY(0);} }
.xw-slot__result {
  min-height: 52px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; margin-bottom: 20px;
}
.xw-slot__win { color: var(--c-accent); font-size: 18px; font-weight: 800; animation: fadeInUp 0.5s ease; }
.xw-slot__lose { color: var(--c-text-muted); font-size: 15px; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(10px);} to{opacity:1;transform:translateY(0);} }

/* ─── CONTENT BLOCK ─── */
#xw-content { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 36px; }
#xw-content h2 { font-size: 22px; font-weight: 800; color: #fff; margin: 28px 0 14px; }
#xw-content h2:first-child { margin-top: 0; }
#xw-content h3 { font-size: 18px; font-weight: 700; color: #e8eaf0; margin: 22px 0 12px; }
#xw-content h4 { font-size: 15px; font-weight: 700; color: #c8d0e8; margin: 16px 0 8px; }
#xw-content p { color: var(--c-text); line-height: 1.75; margin-bottom: 14px; }
#xw-content ul,#xw-content ol { margin: 0 0 16px 20px; display: flex; flex-direction: column; gap: 8px; }
#xw-content li { color: var(--c-text); line-height: 1.6; }
#xw-content ul li::marker { color: var(--c-accent); }
#xw-content ol li::marker { color: var(--c-accent); font-weight: 700; }
#xw-content a { color: var(--c-accent); text-decoration: underline; }
#xw-content strong { color: #fff; font-weight: 700; }
#xw-content em { color: #c8d0e8; }
#xw-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
#xw-content .xw-table-wrap { overflow-x: auto; border-radius: var(--radius-sm); margin: 20px 0; }
#xw-content table th { background: var(--c-card2); text-align: left; padding: 12px 16px; font-size: 13px; color: var(--c-text-muted); font-weight: 700; border: 1px solid var(--c-border); }
#xw-content table td { padding: 10px 16px; font-size: 13px; color: var(--c-text); border: 1px solid var(--c-border); }
#xw-content table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
#xw-content blockquote { border-left: 3px solid var(--c-accent); padding: 12px 20px; background: rgba(25,172,90,0.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: #c8d0e8; margin: 16px 0; }
#xw-content img { border-radius: var(--radius-sm); max-width: 100%; margin: 16px 0; }
#xw-content hr { border: none; border-top: 1px solid var(--c-border); margin: 24px 0; }

/* ─── FAQ ─── */
.xw-faq-list { display: flex; flex-direction: column; gap: 8px; }
.xw-faq-item { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color var(--transition); }
.xw-faq-item.open { border-color: rgba(25,172,90,0.3); }
.xw-faq-q {
  width: 100%; background: none; border: none; padding: 18px 22px;
  text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: #fff; font-size: 14px; font-weight: 700; font-family: 'Open Sans', sans-serif;
}
.xw-faq-q:hover { background: rgba(255,255,255,0.03); }
.xw-faq-icon { color: var(--c-accent); flex-shrink: 0; width: 20px; height: 20px; transition: transform var(--transition); }
.xw-faq-item.open .xw-faq-icon { transform: rotate(45deg); }
.xw-faq-a { display: none; padding: 0 22px 18px; color: var(--c-text-muted); font-size: 13px; line-height: 1.7; }
.xw-faq-item.open .xw-faq-a { display: block; }

/* ─── REVIEWS ─── */
.xw-reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 40px; }
.xw-review-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 22px;
}
.xw-review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.xw-review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #1f2841, #253255);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.xw-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.xw-review-name { font-weight: 700; font-size: 14px; color: #fff; }
.xw-review-date { font-size: 11px; color: var(--c-text-muted); margin-top: 2px; }
.xw-review-stars { display: flex; gap: 3px; margin-bottom: 10px; }
.xw-review-stars svg { color: #ffd700; }
.xw-review-text { font-size: 13px; color: var(--c-text-muted); line-height: 1.65; }

.xw-review-form {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 28px;
}
.xw-review-form h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 22px; }
.xw-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.xw-form-group label { font-size: 13px; font-weight: 600; color: var(--c-text-muted); }
.xw-form-group input,
.xw-form-group textarea {
  background: var(--c-bg); border: 1px solid var(--c-border);
  color: var(--c-text); border-radius: var(--radius-sm); padding: 11px 14px;
  font-family: 'Open Sans', sans-serif; font-size: 14px;
  transition: border-color var(--transition); outline: none; width: 100%;
}
.xw-form-group input:focus,
.xw-form-group textarea:focus { border-color: var(--c-accent); }
.xw-form-group textarea { resize: vertical; min-height: 100px; }
.xw-form-success { display: none; background: rgba(25,172,90,0.1); border: 1px solid rgba(25,172,90,0.3); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--c-accent); font-size: 14px; font-weight: 600; margin-top: 14px; }
.xw-form-success.visible { display: block; animation: fadeInUp 0.4s ease; }

/* ─── AUTHOR ─── */
#xw-author {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 28px;
  display: flex; gap: 24px; align-items: flex-start;
}
.xw-author__photo {
  width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover;
  border: 2px solid var(--c-accent);
}
.xw-author__name { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.xw-author__role { font-size: 12px; font-weight: 700; color: var(--c-accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.xw-author__bio { font-size: 13px; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 16px; }
.xw-author__socials { display: flex; gap: 10px; }
.xw-author__social-link {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--c-border);
  color: var(--c-text-muted); font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 6px; transition: all var(--transition);
}
.xw-author__social-link:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ─── FOOTER ─── */
#xw-footer {
  background: var(--c-footer); border-top: 1px solid var(--c-border);
  padding: 48px 0 24px; margin-top: auto;
}
.xw-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.xw-footer__logo img { height: 36px; margin-bottom: 14px; }
.xw-footer__desc { font-size: 12px; color: var(--c-text-muted); line-height: 1.7; }
.xw-footer__col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-text-muted); margin-bottom: 16px; }
.xw-footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.xw-footer__links a { color: #8b95b0; font-size: 13px; transition: color var(--transition); }
.xw-footer__links a:hover { color: var(--c-accent); }
.xw-footer__divider { height: 1px; background: var(--c-border); margin-bottom: 28px; }
.xw-footer__payments { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.xw-footer__payment-badge {
  background: rgba(255,255,255,0.06); border: 1px solid var(--c-border);
  border-radius: 6px; padding: 6px 14px; font-size: 11px; font-weight: 700;
  color: var(--c-text-muted); white-space: nowrap;
}
.xw-footer__providers { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.xw-footer__provider-badge {
  background: rgba(255,255,255,0.04); border: 1px solid var(--c-border);
  border-radius: 5px; padding: 4px 10px; font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.35); white-space: nowrap;
}
.xw-footer__bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.xw-footer__copy { font-size: 12px; color: var(--c-text-muted); line-height: 1.7; max-width: 640px; }
.xw-footer__legal { font-size: 11px; color: rgba(255,255,255,0.3); line-height: 1.7; margin-top: 6px; }
.xw-footer__age {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.4); flex-shrink: 0;
}

/* ─── WIDGET ─── */
#xw-widget {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: linear-gradient(90deg, #0d1525 0%, #111827 100%);
  border-top: 1px solid rgba(25,172,90,0.3);
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}
.xw-widget__text { font-size: 13px; color: var(--c-text-muted); }
.xw-widget__text strong { color: var(--c-accent); font-size: 16px; }
.xw-widget__close {
  background: none; border: none; color: var(--c-text-muted);
  cursor: pointer; font-size: 18px; padding: 4px; line-height: 1;
  transition: color var(--transition); margin-left: 4px;
}
.xw-widget__close:hover { color: #fff; }

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

/* ─── WP COMPAT ─── */
.wp-block-image { display: block; }
.entry-content { display: block; }
.wp-post-nav { display: none; }
.elementor-section { display: block; }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ─── MISC ─── */
.d-none { display: none !important; }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .xw-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .xw-container { padding: 0 14px; }
  .xw-header__nav { display: none; }
  .xw-header__online { display: none; }
  .xw-burger { display: flex; }
  #xw-hero { min-height: auto; }
  .xw-hero__content { padding: 36px 0; max-width: 100%; }
  .xw-procon-grid { grid-template-columns: 1fr; }
  .xw-game-card { flex: 0 0 calc(50% - 8px); }
  .xw-games-slider { padding: 0 44px; }
  .xw-footer__top { grid-template-columns: 1fr; gap: 24px; }
  #xw-author { flex-direction: column; }
  .xw-slot__reel { width: 72px; height: 72px; font-size: 36px; }
  #xw-slot { padding: 28px 16px; }
  #xw-widget { flex-wrap: wrap; gap: 10px; text-align: center; }
  #xw-toc { padding: 20px 16px; }
  .xw-toc__grid { grid-template-columns: 1fr 1fr; gap: 6px 12px; }
  #xw-content { padding: 20px 16px; }
  .xw-adv-grid { grid-template-columns: 1fr 1fr; }
  .xw-reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .xw-container { padding: 0 12px; }
  .xw-game-card { flex: 0 0 calc(100% - 0px); }
  .xw-games-slider { padding: 0 40px; }
  .xw-adv-grid { grid-template-columns: 1fr 1fr; }
  .xw-slot__reels { gap: 8px; }
  .xw-slot__reel { width: 64px; height: 64px; font-size: 30px; }
  .xw-toc__grid { grid-template-columns: 1fr; }
  .xw-hero__buttons { flex-direction: column; }
  .xw-hero__buttons .xw-btn--lg { width: 100%; justify-content: center; }
  .xw-hero__bonus { flex-direction: column; text-align: center; width: 100%; }
  #xw-author { gap: 16px; }
  .xw-review-form { padding: 20px 16px; }
  .xw-procon-col { padding: 18px 16px; }
  #xw-content { padding: 16px 14px; }
  .xw-footer__bottom { flex-direction: column; }
}

/* ─── UNUSED STYLES FOR UNIQUENESS ─── */
.xqr7k2 { display: none; visibility: hidden; position: absolute; left: -9999px; }
.zx9m4p { color: transparent; pointer-events: none; }
.wp-block-group { display: block; }
.has-text-align-center { text-align: center; }
.elementor-widget-container { display: block; }
.e-con-inner { display: block; }
.entry-title { display: block; }
.site-branding { display: flex; align-items: center; }
