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

:root {
  --clr-header: #1a0a2e;
  --clr-header-alt: #230d3d;
  --clr-bg: #0e0620;
  --clr-bg-card: #1c0f35;
  --clr-bg-card2: #160b2b;
  --clr-accent-pink: #f72585;
  --clr-accent-orange: #ff6b35;
  --clr-accent-green: #00c97b;
  --clr-accent-gold: #ffd60a;
  --clr-accent-reg: #00b86e;
  --clr-text: #f0e6ff;
  --clr-text-muted: #a98ec9;
  --clr-border: #3a1f6a;
  --clr-border-light: rgba(247,37,133,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 4px 32px rgba(247,37,133,0.10);
  --shadow-glow: 0 0 24px rgba(247,37,133,0.35);
  --font-head: 'Raleway', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a { color: var(--clr-accent-pink); text-decoration: none; transition: color .2s; }
a:hover { color: var(--clr-accent-gold); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--clr-text);
}

.sr8f2a { display: none; }
.wp-block-spacer { display: block; height: 1px; }
.entry-content-xr7k { visibility: hidden; height: 0; overflow: hidden; position: absolute; }

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

.x-section { padding: 60px 0; }
.x-section--sm { padding: 36px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 22px;
  letter-spacing: .02em;
}

.btn:hover { transform: translateY(-2px); }

.btn--demo {
  background: linear-gradient(135deg, #f72585 0%, #b5179e 100%);
  color: #fff;
  box-shadow: 0 3px 18px rgba(247,37,133,.4);
}
.btn--demo:hover { box-shadow: 0 6px 26px rgba(247,37,133,.6); color: #fff; }

.btn--play {
  background: linear-gradient(135deg, #00c97b 0%, #00a862 100%);
  color: #fff;
  box-shadow: 0 3px 18px rgba(0,201,123,.35);
}
.btn--play:hover { box-shadow: 0 6px 26px rgba(0,201,123,.55); color: #fff; }

.btn--reg {
  background: linear-gradient(135deg, #00b86e 0%, #009957 100%);
  color: #fff;
  box-shadow: 0 3px 16px rgba(0,184,110,.35);
}
.btn--reg:hover { box-shadow: 0 6px 24px rgba(0,184,110,.55); color: #fff; }

.btn--gold {
  background: linear-gradient(135deg, #ffd60a 0%, #f4a200 100%);
  color: #1a0a2e;
  box-shadow: 0 3px 16px rgba(255,214,10,.35);
}
.btn--gold:hover { box-shadow: 0 6px 24px rgba(255,214,10,.55); color: #1a0a2e; }

.btn--lg { padding: 14px 34px; font-size: 1.08rem; border-radius: var(--radius-md); }
.btn--sm { padding: 7px 16px; font-size: .85rem; }

.x-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .22s, box-shadow .22s;
}
.x-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(247,37,133,.18); }

.x-section-title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  color: var(--clr-text);
}
.x-section-title span { color: var(--clr-accent-pink); }
.x-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent-pink), var(--clr-accent-gold));
  border-radius: 4px;
  margin: 10px auto 0;
}

.x-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-header);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}

.x-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 18px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.x-header__logo img {
  height: 76px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

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

.x-header__nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--clr-text-muted);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.x-header__nav a:hover, .x-header__nav a.active { color: var(--clr-text); background: rgba(247,37,133,.12); }
.x-header__nav svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.x-header__online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--clr-text-muted);
  background: rgba(0,201,123,.08);
  border: 1px solid rgba(0,201,123,.2);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}
.x-header__online-dot {
  width: 7px;
  height: 7px;
  background: #00c97b;
  border-radius: 50%;
  box-shadow: 0 0 6px #00c97b;
  animation: pulse-green 1.8s infinite;
}
@keyframes pulse-green { 0%,100% { box-shadow: 0 0 4px #00c97b; } 50% { box-shadow: 0 0 12px #00c97b; } }

.x-lang-drop { position: relative; }
.x-lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  font-size: .85rem;
  color: var(--clr-text);
  transition: background .2s;
}
.x-lang-btn:hover { background: rgba(255,255,255,.12); }
.x-lang-btn svg { width: 12px; height: 12px; }

.x-lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--clr-header-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 140px;
  z-index: 200;
  display: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.x-lang-menu.open { display: block; }
.x-lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--clr-text);
  transition: background .18s;
}
.x-lang-menu a:hover { background: rgba(247,37,133,.15); }
.x-lang-flag { font-size: 1.1rem; }

.x-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}
.x-burger span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.x-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.x-burger.open span:nth-child(2) { opacity: 0; }
.x-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.x-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--clr-header-alt);
  border-top: 1px solid var(--clr-border);
  padding: 14px 18px 18px;
  gap: 6px;
}
.x-mobile-nav.open { display: flex; }
.x-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--clr-text-muted);
  transition: background .2s, color .2s;
}
.x-mobile-nav a:hover { background: rgba(247,37,133,.12); color: var(--clr-text); }

.x-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.x-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/sugar-rush-tile.avif');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.x-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,4,22,.88) 0%, rgba(10,4,22,.55) 60%, rgba(10,4,22,.25) 100%);
}
.x-hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 60px 0;
}
.x-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(247,37,133,.18);
  border: 1px solid rgba(247,37,133,.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--clr-accent-pink);
  margin-bottom: 16px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.x-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.x-hero__title em { font-style: normal; color: var(--clr-accent-gold); }
.x-hero__desc {
  font-size: 1.05rem;
  color: rgba(240,230,255,.85);
  margin-bottom: 28px;
  line-height: 1.65;
}
.x-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.x-hero__stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.x-hero__stat { text-align: center; }
.x-hero__stat-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--clr-accent-gold);
}
.x-hero__stat-label { font-size: .78rem; color: var(--clr-text-muted); margin-top: 2px; }

.x-info-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.x-info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: .93rem;
}
.x-info-table td {
  padding: 11px 16px;
  border: 1px solid var(--clr-border);
  text-align: left;
}
.x-info-table tr:nth-child(odd) td { background: rgba(255,255,255,.03); }
.x-info-table tr:hover td { background: rgba(247,37,133,.07); }
.x-info-table td:first-child {
  font-weight: 700;
  color: var(--clr-text-muted);
  width: 42%;
  white-space: nowrap;
}
.x-info-table td:last-child { color: var(--clr-text); }
.x-info-table .x-badge-val {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(247,37,133,.1);
  border: 1px solid rgba(247,37,133,.2);
  border-radius: 6px;
  padding: 2px 8px;
  color: var(--clr-accent-pink);
  font-weight: 700;
}

.x-bonuses__grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.x-bonus-card {
  flex: 1 1 280px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .22s, box-shadow .22s;
}
.x-bonus-card:hover { transform: translateY(-5px); box-shadow: 0 8px 40px rgba(247,37,133,.2); }
.x-bonus-card__casino {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  font-family: var(--font-head);
}
.x-bonus-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--clr-accent-pink), #b5179e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.x-bonus-card__amount {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--clr-accent-gold);
}
.x-bonus-card__label { font-size: .82rem; color: var(--clr-text-muted); margin-top: -10px; }
.x-bonus-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.x-bonus-tag {
  background: rgba(0,201,123,.1);
  border: 1px solid rgba(0,201,123,.25);
  border-radius: 5px;
  padding: 2px 8px;
  font-size: .76rem;
  font-weight: 700;
  color: var(--clr-accent-green);
}

.x-demo-wrap {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
}
.x-demo-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.x-demo-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.x-demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-top: 1px solid var(--clr-border);
  gap: 12px;
  flex-wrap: wrap;
}
.x-demo-footer p { font-size: .85rem; color: var(--clr-text-muted); }

.x-jackpots__grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.x-jackpot-card {
  flex: 1 1 300px;
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .22s;
}
.x-jackpot-card:hover { transform: translateY(-5px); }
.x-jackpot-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, #d4a017, #f0bc2e); 
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.x-jackpot-card--mini::before { background: linear-gradient(135deg, #a8dadc, #457b9d); }
.x-jackpot-card--major::before { background: linear-gradient(135deg, var(--clr-accent-pink), #b5179e); }
.x-jackpot-card--mega::before { background: linear-gradient(135deg, var(--clr-accent-gold), #ff6b35); }
.x-jackpot-card--mini { border: 2px solid #457b9d; box-shadow: 0 4px 24px rgba(69,123,157,.2); }
.x-jackpot-card--major { border: 2px solid var(--clr-accent-pink); box-shadow: 0 4px 24px rgba(247,37,133,.2); }
.x-jackpot-card--mega { border: 2px solid var(--clr-accent-gold); box-shadow: 0 4px 24px rgba(255,214,10,.25); }
.x-jackpot-card__title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
.x-jackpot-card--mini .x-jackpot-card__title { color: #a8dadc; }
.x-jackpot-card--major .x-jackpot-card__title { color: var(--clr-accent-pink); }
.x-jackpot-card--mega .x-jackpot-card__title { color: var(--clr-accent-gold); }
.x-jackpot-card__amount {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.x-jackpot-card--mini .x-jackpot-card__amount { color: #a8dadc; }
.x-jackpot-card--major .x-jackpot-card__amount { color: var(--clr-accent-pink); }
.x-jackpot-card--mega .x-jackpot-card__amount { color: var(--clr-accent-gold); }
.x-jackpot-card__currency { font-size: .8rem; color: var(--clr-text-muted); margin-bottom: 18px; }
.x-jackpot-card__winners { display: flex; flex-direction: column; gap: 8px; }
.x-jackpot-winner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: .84rem;
}
.x-jackpot-winner__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent-pink), var(--clr-accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.x-jackpot-winner__name { flex: 1; font-weight: 600; }
.x-jackpot-winner__win { font-weight: 800; color: var(--clr-accent-gold); font-size: .82rem; }

.x-review-content {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.x-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(247,37,133,.06);
  border: 1px solid rgba(247,37,133,.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.x-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent-pink), #b5179e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.x-author-info__name { font-weight: 800; font-size: 1rem; font-family: var(--font-head); }
.x-author-info__role { font-size: .82rem; color: var(--clr-text-muted); margin-top: 2px; line-height: 1.5; }
.x-author-info__link { font-size: .8rem; color: var(--clr-accent-pink); margin-top: 4px; display: inline-block; }

.x-review-content .x-content-body h2 { font-size: 1.4rem; margin: 28px 0 12px; color: var(--clr-accent-gold); }
.x-review-content .x-content-body h3 { font-size: 1.2rem; margin: 22px 0 10px; color: var(--clr-text); }
.x-review-content .x-content-body h4 { font-size: 1.05rem; margin: 18px 0 8px; }
.x-review-content .x-content-body p { margin-bottom: 16px; color: rgba(240,230,255,.88); line-height: 1.7; }
.x-review-content .x-content-body ul,
.x-review-content .x-content-body ol { margin: 12px 0 18px 22px; }
.x-review-content .x-content-body li { margin-bottom: 7px; line-height: 1.65; color: rgba(240,230,255,.88); }
.x-review-content .x-content-body strong { color: var(--clr-text); font-weight: 700; }
.x-review-content .x-content-body em { color: var(--clr-accent-pink); font-style: italic; }
.x-review-content .x-content-body a { color: var(--clr-accent-pink); border-bottom: 1px solid rgba(247,37,133,.3); }
.x-review-content .x-content-body a:hover { color: var(--clr-accent-gold); }
.x-review-content .x-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: .9rem;
}
.x-review-content .x-content-body table th,
.x-review-content .x-content-body table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  text-align: left;
}
.x-review-content .x-content-body table th { background: rgba(247,37,133,.1); font-weight: 700; }
.x-review-content .x-content-body table tr:nth-child(even) td { background: rgba(255,255,255,.03); }
.x-review-content .x-content-body blockquote {
  border-left: 4px solid var(--clr-accent-pink);
  padding: 12px 20px;
  background: rgba(247,37,133,.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 18px 0;
  font-style: italic;
  color: rgba(240,230,255,.85);
}

.x-strategies__grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.x-strat-card {
  flex: 1 1 280px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}
.x-strat-card:hover { transform: translateY(-5px); box-shadow: 0 8px 40px rgba(247,37,133,.2); }
.x-strat-card__img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
}
.x-strat-card__body { padding: 20px 18px 22px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.x-strat-card__title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; }
.x-strat-card__desc { font-size: .88rem; color: var(--clr-text-muted); line-height: 1.6; flex: 1; }

.x-reviews__grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.x-review-card {
  flex: 1 1 280px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s;
}
.x-review-card:hover { transform: translateY(-3px); }
.x-review-card__head { display: flex; align-items: center; gap: 12px; }
.x-review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #f72585, #b5179e); }
.av2 { background: linear-gradient(135deg, #ffd60a, #f4a200); color: #1a0a2e; }
.av3 { background: linear-gradient(135deg, #00c97b, #009957); }
.av4 { background: linear-gradient(135deg, #4361ee, #3a0ca3); }
.av5 { background: linear-gradient(135deg, #ff6b35, #d62839); }
.av6 { background: linear-gradient(135deg, #7b2d8b, #f72585); }
.x-review-card__name { font-weight: 700; font-size: .95rem; }
.x-review-card__date { font-size: .76rem; color: var(--clr-text-muted); }
.x-review-stars { display: flex; gap: 2px; color: var(--clr-accent-gold); font-size: 1rem; }
.x-review-text { font-size: .88rem; line-height: 1.65; color: rgba(240,230,255,.85); }

.x-review-form-wrap {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  max-width: 560px;
  margin: 40px auto 0;
}
.x-review-form-wrap h3 { font-size: 1.25rem; margin-bottom: 22px; text-align: center; }
.x-form { display: flex; flex-direction: column; gap: 16px; }
.x-form__field { display: flex; flex-direction: column; gap: 6px; }
.x-form__label { font-size: .88rem; font-weight: 600; color: var(--clr-text-muted); }
.x-form__input,
.x-form__textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--clr-text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.x-form__input:focus,
.x-form__textarea:focus {
  border-color: var(--clr-accent-pink);
  box-shadow: 0 0 0 3px rgba(247,37,133,.15);
}
.x-form__textarea { min-height: 110px; resize: vertical; }
.x-form__input::placeholder,
.x-form__textarea::placeholder { color: rgba(169,142,201,.5); }
.x-form__success {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(0,201,123,.1);
  border: 1px solid rgba(0,201,123,.3);
  border-radius: var(--radius-sm);
  color: var(--clr-accent-green);
  font-weight: 700;
}

.x-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 24px;
}
.x-footer__top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--clr-border);
}
.x-footer__brand { flex: 1 1 220px; }
.x-footer__logo {display: block; width: fit-content;}
.x-footer__logo img { height: 76px; width: auto;  margin-bottom: 14px; }
.x-footer__brand p { font-size: .86rem; color: var(--clr-text-muted); line-height: 1.65; }
.x-footer__nav { flex: 1 1 160px; }
.x-footer__nav h4 { font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--clr-text-muted); margin-bottom: 14px; }
.x-footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.x-footer__nav ul a { font-size: .87rem; color: var(--clr-text-muted); transition: color .2s; }
.x-footer__nav ul a:hover { color: var(--clr-accent-pink); }
.x-footer__trust { flex: 1 1 220px; }
.x-footer__trust h4 { font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--clr-text-muted); margin-bottom: 14px; }
.x-footer__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.x-footer__badge {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.x-footer__payments { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.x-pay-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--clr-text);
}
.x-footer__bottom {
  text-align: center;
  font-size: .8rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}
.x-footer__bottom a { color: var(--clr-accent-pink); }

.x-widget {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: linear-gradient(135deg, #1a0a2e 0%, #230d3d 100%);
  border: 1px solid rgba(247,37,133,.4);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 40px rgba(247,37,133,.3), 0 2px 16px rgba(0,0,0,.6);
  max-width: calc(100vw - 30px);
  animation: widget-in .5s ease;
}
@keyframes widget-in { from { transform: translateX(-50%) translateY(80px); opacity: 0; } to { transform: translateX(-50%) translateY(0); opacity: 1; } }
.x-widget__text {
  font-size: .88rem;
  font-weight: 700;
  color: var(--clr-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}
.x-widget__text span { color: var(--clr-accent-gold); }
.x-widget__close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
  transition: color .2s;
  flex-shrink: 0;
}
.x-widget__close:hover { color: var(--clr-text); }

.x-wave-sep {
  height: 48px;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}
.x-wave-sep svg { width: 100%; height: 100%; }

.x-faq { display: flex; flex-direction: column; gap: 12px; }
.x-faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.x-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: .97rem;
  transition: background .2s;
}
.x-faq-q:hover { background: rgba(247,37,133,.07); }
.x-faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--clr-accent-pink); transition: transform .3s; }
.x-faq-item.open .x-faq-q svg { transform: rotate(180deg); }
.x-faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: .9rem;
  color: rgba(240,230,255,.85);
  line-height: 1.7;
  border-top: 1px solid var(--clr-border);
}
.x-faq-item.open .x-faq-a { display: block; padding-top: 14px; }

.x-bonuses-slider-wrap { position: relative; overflow: hidden; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.x-fade-in { animation: fadeInUp .5s ease both; }
.x-fade-in-d1 { animation-delay: .1s; }
.x-fade-in-d2 { animation-delay: .2s; }
.x-fade-in-d3 { animation-delay: .3s; }

.x-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(247,37,133,.1);
  border: 1px solid rgba(247,37,133,.2);
  border-radius: 5px;
  padding: 3px 9px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--clr-accent-pink);
}

.wpr-header-sticky-placeholder { display: none; }
.elementor-hidden-desktop { display: none; }
.eael-flip-box-front { display: none; }
.post-thumbnail-wrap { display: none; }
.wp-caption-text { display: none; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.x-spacer-qr9w2 { height: 0; overflow: hidden; display: none; }
.f8n2-block, .k2j7-item, .m4p1-section { display: none !important; }

@media (max-width: 900px) {
.x-header__nav a {padding: 4px 8px}
.x-header__nav a[href="#demo"]{display: none;}
}

@media (max-width: 768px) {
  .x-header__nav { display: none; }
  .x-burger { display: flex; }
  .x-section { padding: 40px 0; }
  .x-hero { min-height: 420px; }
  .x-hero__content { padding: 40px 0; }
  .x-hero__stats { gap: 16px; }
  .x-jackpots__grid, .x-bonuses__grid, .x-strategies__grid { gap: 14px; }
  .x-jackpot-card, .x-bonus-card, .x-strat-card, .x-review-card { flex: 1 1 100%; }
  .x-review-form-wrap { padding: 22px 16px; }
  .x-review-content { padding: 24px 18px; }
  .x-footer__top { gap: 28px; }
  .x-widget__text { max-width: 140px; }
  .x-demo-footer { flex-direction: column; align-items: flex-start; }
  .x-content-body a {word-break: break-all;}
}

@media (max-width: 480px) {
  .x-header__inner { padding: 8px 12px; }
  .x-hero__title { font-size: 1.7rem; }
  .x-hero__btns { flex-direction: column; }
  .x-bonuses__grid { display: block; overflow-x: auto; white-space: nowrap; padding-bottom: 10px; scrollbar-width: thin; }
  .x-bonus-card { display: inline-flex; min-width: 270px; white-space: normal; vertical-align: top; }
  .x-section-title { font-size: 1.35rem; }
  .x-jackpot-card__amount { font-size: 1.7rem; }
}

