:root {
  --c-bg: #090f1e;
  --c-header: #141b2e;
  --c-btn-login: #1f2841;
  --c-btn-reg: #19ac5a;
  --c-text: #e8eaf0;
  --c-text-muted: #8b94b3;
  --c-border: #1e2a47;
  --c-card: #111827;
  --c-card-hover: #162036;
  --c-accent: #19ac5a;
  --c-accent2: #1f8aff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.45);
  --transition: .25s ease;
}

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

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

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #22d972; }
ul { list-style: none; }

.x9k2m { display: none; }
.qw7np { visibility: hidden; height: 0; overflow: hidden; }
.zr4lp { position: absolute; left: -9999px; }

.wp-block-group { display: block; }
.entry-content { display: block; }
.elementor-section { display: block; }

.b3f7t { font-size: 11px; color: transparent;display: none; }

.wc { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.x-hdr {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.x-hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.x-hdr__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

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

.x-hdr__nav a {
  color: var(--c-text);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.x-hdr__nav a:hover { background: rgba(255,255,255,.07); color: #fff; }

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

.x-hdr__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.x-hdr__online-dot {
  width: 8px; height: 8px;
  background: var(--c-accent);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn:active { transform: translateY(0); }

.btn--login {
  background: var(--c-btn-login);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
}
.btn--reg {
  background: var(--c-btn-reg);
  color: #fff;
  box-shadow: 0 0 16px rgba(25,172,90,.35);
}
.btn--reg:hover { box-shadow: 0 0 24px rgba(25,172,90,.55); color: #fff; }
.btn--lg { padding: 14px 36px; font-size: 16px; border-radius: 10px; }
.btn--sm { padding: 7px 14px; font-size: 13px; }

.m-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  order: 3;
}
.m-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all .3s ease;
}
.m-burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.m-burger.is-open span:nth-child(2) { opacity: 0; }
.m-burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.m-menu {
  display: none;
  flex-direction: column;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 12px 20px 16px;
  gap: 6px;
}
.m-menu.is-open { display: flex; }
.m-menu a {
  color: var(--c-text);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.m-menu a:hover { background: rgba(255,255,255,.07); }

.x-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.x-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/1win-title-img.jpeg');
  background-size: cover;
  background-position: center;
  filter: brightness(.55);
  z-index: 0;
}
.x-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,15,30,.9) 0%, rgba(9,15,30,.4) 100%);
  z-index: 1;
}
.x-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}
.x-hero__badge {
  display: inline-block;
  background: rgba(25,172,90,.2);
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.x-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}
.x-hero h1 span { color: var(--c-accent); }
.x-hero__desc {
  font-size: 16px;
  color: rgba(232,234,240,.85);
  margin-bottom: 28px;
  line-height: 1.6;
}
.x-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.x-crumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
}
.x-crumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--c-text-muted);
}
.x-crumbs__list a { color: var(--c-text-muted); }
.x-crumbs__list a:hover { color: var(--c-accent); }
.x-crumbs__sep { color: var(--c-border); font-size: 10px; }
.x-crumbs__current { color: var(--c-text); }

.x-section { padding: 50px 0; }
.x-section + .x-section { border-top: 1px solid var(--c-border); }

.x-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.x-subtitle { font-size: 15px; color: var(--c-text-muted); margin-bottom: 32px; }

.x-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.x-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.x-table th,
.x-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--c-border);
  vertical-align: top;
}
.x-table th {
  background: rgba(31,40,65,.8);
  color: var(--c-text-muted);
  font-weight: 600;
  white-space: nowrap;
  width: 40%;
}
.x-table td { background: var(--c-card); color: var(--c-text); }
.x-table tr:hover td { background: var(--c-card-hover); }
.x-table .x-table__val--green { color: var(--c-accent); font-weight: 700; }

.x-bonuses {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.x-bonus-card {
  flex: 1;
  min-width: 260px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.x-bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent2));
}
.x-bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.x-bonus-card__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-accent);
  margin-bottom: 10px;
}
.x-bonus-card__title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.x-bonus-card__desc {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  line-height: 1.55;
}
.x-bonus-card .btn { width: 100%; }

.x-bonus-slider-wrap { position: relative; }
.x-bonus-slider {
  display: flex;
  gap: 16px;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.x-bonus-slider .x-bonus-card { scroll-snap-align: start; }
.x-slider-nav {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.x-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}
.x-slider-dot.is-active { background: var(--c-accent); }

.x-games {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.x-game-card {
  flex: 0 0 calc(16.666% - 14px);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.x-game-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.x-game-card__img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.x-game-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.x-game-card:hover .x-game-card__img img { transform: scale(1.06); }
.x-game-card__body { padding: 12px; }
.x-game-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.x-game-card .btn { width: 100%; font-size: 12px; padding: 7px; }

.x-games-slider {
  display: flex;
  gap: 16px;
  overflow: hidden;
  scroll-snap-type: x mandatory;
}
.x-games-slider .x-game-card { scroll-snap-align: start; }

.x-demo {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.x-demo__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(20,27,46,.9);
  border-bottom: 1px solid var(--c-border);
}
.x-demo__title { font-size: 15px; font-weight: 700; color: #fff; }
.x-demo__iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}
.x-demo__placeholder {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #0d1426 0%, #131d35 100%);
  color: var(--c-text-muted);
  font-size: 15px;
}

.x-slot-game {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.x-slot-game__reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}
.x-reel {
  width: 80px;
  height: 80px;
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
  position: relative;
}
.x-reel.is-spinning { animation: reel-spin .6s steps(4) infinite; }
@keyframes reel-spin { 0%{transform:translateY(0)} 25%{transform:translateY(-10px)} 50%{transform:translateY(5px)} 75%{transform:translateY(-5px)} 100%{transform:translateY(0)} }
.x-slot-game__result {
  display: none;
  background: rgba(25,172,90,.12);
  border: 1px solid var(--c-accent);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 16px 0;
  animation: fadeIn .4s ease;
}
.x-slot-game__result.is-win { display: block; }
.x-slot-game__result.is-lose { display: block; background: rgba(255,60,60,.08); border-color: rgba(255,60,60,.3); }
.x-slot-game__result p { font-weight: 700; font-size: 16px; margin-bottom: 10px; }
.x-slot-game__result.is-win p { color: var(--c-accent); }
.x-slot-game__result.is-lose p { color: #ff6060; }

.x-wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 28px 20px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.x-wheel-canvas-wrap {
  position: relative;
  width: 280px;
  height: 280px;
}
#x-wheel-canvas {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(25,172,90,.25);
}
.x-wheel-pointer {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 24px solid #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}
.x-wheel-result {
  display: none;
  width: 100%;
  background: rgba(25,172,90,.12);
  border: 1px solid var(--c-accent);
  border-radius: var(--radius-sm);
  padding: 16px;
  animation: fadeIn .4s ease;
}
.x-wheel-result.is-win { display: block; }
.x-wheel-result.is-lose { display: block; background: rgba(255,60,60,.08); border-color: rgba(255,60,60,.3); }
.x-wheel-result p { font-weight: 700; font-size: 15px; margin-bottom: 10px; }
.x-wheel-result.is-win p { color: var(--c-accent); }
.x-wheel-result.is-lose p { color: #ff6060; }

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

.x-review {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.x-review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(20,27,46,.7);
  border-bottom: 1px solid var(--c-border);
}
.x-review__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-btn-login);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--c-accent);
  flex-shrink: 0;
}
.x-review__author-name { font-weight: 700; color: #fff; font-size: 15px; }
.x-review__author-bio { font-size: 13px; color: var(--c-text-muted); margin-top: 2px; line-height: 1.4; }
.x-review__author-link { font-size: 12px; color: var(--c-accent); }
.x-review__body { padding: 28px 24px; }

.x-review__body h2,
.x-review__body h3,
.x-review__body h4 { color: #fff; font-weight: 700; margin: 20px 0 10px; line-height: 1.3; }
.x-review__body h2 { font-size: 22px; }
.x-review__body h3 { font-size: 18px; }
.x-review__body h4 { font-size: 16px; }
.x-review__body p { color: var(--c-text); line-height: 1.7; margin-bottom: 14px; }
.x-review__body strong, .x-review__body b { color: #fff; font-weight: 700; }
.x-review__body em, .x-review__body i { font-style: italic; color: rgba(232,234,240,.8); }
.x-review__body a { color: var(--c-accent); text-decoration: underline; }
.x-review__body a:hover { color: #22d972; }
.x-review__body ul, .x-review__body ol { padding-left: 20px; margin-bottom: 14px; }
.x-review__body ul { list-style: disc; }
.x-review__body ol { list-style: decimal; }
.x-review__body li { color: var(--c-text); line-height: 1.7; margin-bottom: 6px; }
.x-review__body table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 14px; }
.x-review__body table th, .x-review__body table td { border: 1px solid var(--c-border); padding: 10px 14px; text-align: left; }
.x-review__body table th { background: rgba(31,40,65,.8); color: var(--c-text-muted); font-weight: 600; }
.x-review__body table td { background: var(--c-card); }
.x-review__body blockquote { border-left: 3px solid var(--c-accent); padding: 10px 16px; margin: 16px 0; color: rgba(232,234,240,.75); background: rgba(25,172,90,.07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.x-review__body hr { border: none; border-top: 1px solid var(--c-border); margin: 20px 0; }
.x-review__body img { max-width: 100%; border-radius: var(--radius-sm); margin: 10px 0; }
.x-review__body pre { background: rgba(0,0,0,.4); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 14px; overflow-x: auto; font-size: 13px; margin-bottom: 14px; }
.x-review__body code { background: rgba(0,0,0,.3); padding: 2px 6px; border-radius: 4px; font-size: 13px; }

.x-faq { display: flex; flex-direction: column; gap: 8px; }
.x-faq__item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.x-faq__item.is-open { border-color: rgba(25,172,90,.4); }
.x-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}
.x-faq__q-text { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.4; }
.x-faq__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(25,172,90,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  color: var(--c-accent);
  font-size: 18px;
  font-weight: 300;
}
.x-faq__item.is-open .x-faq__icon { transform: rotate(45deg); background: rgba(25,172,90,.3); }
.x-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.x-faq__item.is-open .x-faq__a { max-height: 400px; }
.x-faq__a-inner { padding: 0 20px 18px; font-size: 14px; color: var(--c-text-muted); line-height: 1.7; }

.x-ftr {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}
.x-ftr__top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--c-border);
}
.x-ftr__brand { flex: 0 0 220px; }
.x-ftr__logo { margin-bottom: 12px; }
.x-ftr__logo a{ display: block;width: fit-content; }
.x-ftr__logo img { height: 40px; width: auto; object-fit: contain; }
.x-ftr__tagline { font-size: 13px; color: var(--c-text-muted); line-height: 1.5; }
.x-ftr__cols {
  display: flex;
  gap: 40px;
  flex: 1;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.x-ftr__col h4 { font-size: 13px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }
.x-ftr__col ul { display: flex; flex-direction: column; gap: 8px; }
.x-ftr__col a { font-size: 14px; color: var(--c-text-muted); }
.x-ftr__col a:hover { color: var(--c-text); }

.x-ftr__providers {
  margin-bottom: 20px;
}
.x-ftr__providers-label { font-size: 12px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.x-ftr__providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.x-ftr__provider-tag {
  font-size: 11px;
  padding: 3px 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  color: var(--c-text-muted);
}

.x-ftr__payments { margin-bottom: 24px; }
.x-ftr__payments-label { font-size: 12px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.x-ftr__payments-list { display: flex; flex-wrap: wrap; gap: 8px; }
.x-pay-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
}

.x-ftr__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.x-ftr__copyright { font-size: 12px; color: var(--c-text-muted); line-height: 1.6; }
.x-ftr__copyright a { color: var(--c-text-muted); }
.x-ftr__legal { font-size: 11px; color: rgba(139,148,179,.6); line-height: 1.6; max-width: 600px; }

.x-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #0d2a1a 0%, #0f1e35 100%);
  border-top: 2px solid var(--c-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
}
.x-widget__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.x-widget__label { font-size: 11px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .07em; }
.x-widget__bonus { font-size: 15px; font-weight: 800; color: #fff; }
.x-widget__bonus span { color: var(--c-accent); }
.x-widget .btn { flex-shrink: 0; }
.x-widget__close {
  background: transparent;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 20px;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}
.x-widget__close:hover { color: var(--c-text); }
.x-widget.is-hidden { display: none; }

body.widget-active { padding-bottom: 70px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 1024px) {
  .x-game-card { flex: 0 0 calc(33.333% - 11px); }
  .x-hdr__nav a {padding: 6px 7px;}
  .x-hdr__inner {gap: 12px;}
}

@media (max-width: 768px) {

  .x-hdr__nav { display: none; }
  .m-burger { display: flex; }
  .x-hdr__online { display: none; }
  .x-hdr__actions { gap: 6px; }
  .x-hdr__actions .btn { padding: 8px 12px; font-size: 13px; }
  .x-ftr__cols {justify-content: space-between;}
  .x-hero { min-height: 360px; }
  .x-hero__content { padding: 40px 0; }
  
  .x-bonuses { gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; flex-wrap: nowrap; padding-bottom: 8px; }
  .x-bonus-card { min-width: 280px; scroll-snap-align: start; }
  .x-slider-nav { display: flex; }
  
  .x-games { gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; flex-wrap: nowrap; padding-bottom: 8px; }
  .x-game-card { flex: 0 0 160px; scroll-snap-align: start; }
  
  .x-ftr__top { flex-direction: column; gap: 28px; }
  .x-ftr__brand { flex: none; }
  
  .x-slot-game__reels { gap: 8px; }
  .x-reel { width: 68px; height: 68px; font-size: 32px; }
  
  .x-wheel-canvas-wrap { width: 240px; height: 240px; }
  #x-wheel-canvas { width: 240px; height: 240px; }
  
  .x-widget { flex-wrap: wrap; }
  .x-widget__bonus { font-size: 13px; }
  
  .x-review__body { padding: 18px 16px; }
  .x-review__author { padding: 14px 16px; }
}
@media (max-width: 600px) {
.x-ftr__cols {flex-direction: column;}
}
@media (max-width: 480px) {
  .x-hdr__inner { height: 58px; }
  .x-hdr__logo img { height: 34px; }
  .x-game-card { flex: 0 0 140px; }
  .x-hero h1 { font-size: 24px; }
  .x-title { font-size: 20px; }
}

.wp-post-image { display: block; max-width: 100%; }
.wp-caption { max-width: 100%; }
.alignnone { display: block; }
.size-full { width: 100%; }
.wp-image-1 { opacity: 1; }
.updated { display: none; }
.published { display: none; }
.post-edit-link { display: none; }
.elementor-invisible { opacity: 1; }
.elementor-widget-container { display: block; }
.e-global__color { display: none; }
