:root {
  --c-bg: #1b2b38;
  --c-bg-alt: #162330;
  --c-bg-card: #1e3040;
  --c-bg-card2: #243848;
  --c-btn-login: #1b2c3d;
  --c-btn-reg: #dbfc4f;
  --c-btn-reg-hover: #c8e83a;
  --c-accent: #dbfc4f;
  --c-accent2: #a8c73a;
  --c-text: #e8f0f7;
  --c-text-muted: #8ca8bc;
  --c-border: #2a3f52;
  --c-border-bright: #dbfc4f;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --transition: 0.22s ease;
  --font-main: "Montserrat", "Inter", sans-serif;
  --font-body: "Roboto", "Open Sans", sans-serif;
}

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

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

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

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-btn-reg-hover);
}
img {
  max-width: 100%;
  display: block;
}

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

.btn-b9 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-b9:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.btn-login {
  background: var(--c-btn-login);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn-login:hover {
  background: #223549;
  color: var(--c-text);
}
.btn-reg {
  background: var(--c-btn-reg);
  color: #0d1a24;
}
.btn-reg:hover {
  background: var(--c-btn-reg-hover);
  color: #0d1a24;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

.xsite-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(8px);
}
.xhdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
}
.xhdr-logo a {
  display: flex;
  align-items: center;
}
.xhdr-logo img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}
.xhdr-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.xhdr-nav a {
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-main);
  padding: 6px 12px;
  border-radius: 6px;
  transition:
    color var(--transition),
    background var(--transition);
}
.xhdr-nav a:hover {
  color: var(--c-accent);
  background: rgba(219, 252, 79, 0.07);
}
.xhdr-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.xhdr-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  font-family: var(--font-main);
  margin-right: 4px;
}
.xhdr-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 6px #4caf50;
  animation: xpulse 1.8s infinite;
}
@keyframes xpulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.xburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.xburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.3s;
}
.xburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.xburger.active span:nth-child(2) {
  opacity: 0;
}
.xburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.xmobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--c-bg-alt);
  padding: 16px 20px;
  border-top: 1px solid var(--c-border);
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 999;
  animation: xslide 0.2s ease;
}
@keyframes xslide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.xmobile-nav.open {
  display: flex;
}
.xmobile-nav a {
  color: var(--c-text-muted);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-main);
  padding: 10px 8px;
  border-radius: 6px;
  transition: all var(--transition);
  border-bottom: 1px solid var(--c-border);
}
.xmobile-nav a:hover {
  color: var(--c-accent);
  background: rgba(219, 252, 79, 0.06);
}

.xhero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 68px;
}
.xhero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f1c26 0%, #1b2b38 50%, #1a3348 100%);
  z-index: 0;
}
.xhero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.xhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 20, 28, 0.85) 40%,
    rgba(11, 20, 28, 0.2) 100%
  );
  z-index: 1;
}
.xhero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
}
.xhero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(219, 252, 79, 0.12);
  border: 1px solid var(--c-accent);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.xhero h1 {
  font-family: var(--font-main);
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 620px;
  text-wrap: balance;
}
.xhero h1 span {
  color: var(--c-accent);
}
.xhero p {
  font-size: 17px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.6;
}
.xhero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.xhero-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--c-text-muted);
  font-size: 13px;
}
.xstar {
  color: #ffd700;
  font-size: 16px;
}

.xsection {
  padding: 60px 0;
}
.xsection-title {
  font-family: var(--font-main);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-wrap: balance;
}
.xsection-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 28px;
  background: var(--c-accent);
  border-radius: 4px;
  flex-shrink: 0;
}
.xsection-sub {
  color: var(--c-text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.xtable-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.xtable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 360px;
}
.xtable tr:first-child td:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}
.xtable tr:first-child td:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}
.xtable tr:last-child td:first-child {
  border-radius: 0 0 0 var(--radius-sm);
}
.xtable tr:last-child td:last-child {
  border-radius: 0 0 var(--radius-sm) 0;
}
.xtable td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  vertical-align: middle;
}
.xtable tr:last-child td {
  border-bottom: none;
}
.xtable td:first-child {
  color: var(--c-text-muted);
  font-weight: 600;
  font-family: var(--font-main);
  background: var(--c-bg-card);
  width: 40%;
  white-space: nowrap;
}
.xtable td:last-child {
  background: var(--c-bg-card2);
  color: var(--c-text);
  font-weight: 500;
}
.xtable tr:hover td {
  filter: brightness(1.08);
}
.xbadge-green {
  display: inline-block;
  background: rgba(76, 175, 80, 0.18);
  color: #6fd473;
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
}
.xbadge-yellow {
  display: inline-block;
  background: rgba(219, 252, 79, 0.15);
  color: var(--c-accent);
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
}

.xjackpots-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.xjackpot-card {
  flex: 1 1 200px;
  background: linear-gradient(135deg, var(--c-bg-card) 0%, #1a3a50 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.xjackpot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), #a8e040);
}
.xjackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.xjp-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.xjp-name {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.xjp-amount {
  font-family: var(--font-main);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  color: var(--c-accent);
  letter-spacing: -0.5px;
  transition: all 0.4s;
}
.xjp-label {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 4px;
}

.xmirrors-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.xmirrors-time {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(219, 252, 79, 0.08);
  border: 1px solid rgba(219, 252, 79, 0.2);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--c-accent);
  font-family: var(--font-main);
  font-weight: 600;
}
.xmirrors-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: xpulse 1.5s infinite;
}
.xmtable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.xmtable th {
  background: var(--c-bg-card);
  color: var(--c-text-muted);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 11px 16px;
  text-align: left;
  border-bottom: 2px solid var(--c-accent);
}
.xmtable td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg-card2);
  color: var(--c-text);
}
.xmtable tr:last-child td {
  border-bottom: none;
}
.xmtable tr:hover td {
  background: #2a4055;
}
.xmtable a {
  color: var(--c-accent);
  font-weight: 600;
}
.xstatus-ok {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6fd473;
  font-size: 13px;
  font-weight: 600;
}
.xstatus-ok::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  display: block;
}

.xbonus-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.xbonus-card {
  flex: 1 1 280px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.xbonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.xbonus-top {
  background: linear-gradient(135deg, #162330 0%, #1a3a50 100%);
  padding: 28px 24px 20px;
  text-align: center;
  position: relative;
}
.xbonus-num {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 800;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.xbonus-icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.xbonus-amount {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: 900;
  color: var(--c-accent);
  margin-bottom: 4px;
}
.xbonus-title {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.xbonus-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.xbonus-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--c-border);
}
.xbonus-row:last-of-type {
  border-bottom: none;
}
.xbonus-row-label {
  color: var(--c-text-muted);
}
.xbonus-row-val {
  font-weight: 700;
  color: var(--c-text);
}
.xbonus-footer {
  padding: 16px 24px;
}

.xdemo-wrap {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.xdemo-header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg-alt);
}
.xdemo-title {
  font-family: var(--font-main);
  font-weight: 700;
  color: #fff;
}
.xdemo-badge {
  background: rgba(219, 252, 79, 0.12);
  color: var(--c-accent);
  border: 1px solid rgba(219, 252, 79, 0.3);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-main);
}
.xdemo-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.xdemo-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.xreview-block {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}
.xreview-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}
.xauthor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), #4a8a20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 800;
  color: #0d1a24;
  flex-shrink: 0;
}
.xauthor-info h3 {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.xauthor-info p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.4;
}
.xauthor-info a {
  color: var(--c-accent);
  font-size: 13px;
}
.xreview-content h2 {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  margin-top: 24px;
}
.xreview-content h2:first-child {
  margin-top: 0;
}
.xreview-content h3 {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 10px;
  margin-top: 20px;
}
.xreview-content p {
  color: var(--c-text);
  margin-bottom: 14px;
  line-height: 1.7;
}
.xreview-content ul,
.xreview-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.xreview-content li {
  color: var(--c-text);
  margin-bottom: 6px;
  line-height: 1.65;
}
.xreview-content strong {
  color: #fff;
  font-weight: 700;
}
.xreview-content a {
  color: var(--c-accent);
}
.xreview-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.xreview-content table th {
  background: var(--c-bg-alt);
  color: var(--c-text-muted);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 12px;
  text-transform: uppercase;
}
.xreview-content table td {
  background: var(--c-bg-card2);
  color: var(--c-text);
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-border);
}
.xreview-content blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 10px 18px;
  background: rgba(219, 252, 79, 0.05);
  margin-bottom: 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.xfaq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.xfaq-item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.xfaq-item:hover {
  border-color: rgba(219, 252, 79, 0.35);
}
.xfaq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  gap: 12px;
  transition: background var(--transition);
}
.xfaq-q:hover {
  background: rgba(219, 252, 79, 0.04);
}
.xfaq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(219, 252, 79, 0.1);
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition:
    transform var(--transition),
    background var(--transition);
}
.xfaq-item.open .xfaq-icon {
  transform: rotate(45deg);
  background: rgba(219, 252, 79, 0.2);
}
.xfaq-a {
  display: none;
  padding: 0 22px 18px;
  color: var(--c-text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.xfaq-item.open .xfaq-a {
  display: block;
  animation: xfade 0.2s ease;
}
@keyframes xfade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.xfooter {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
  margin-top: 60px;
}
.xfooter-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.xfooter-col {
  flex: 1 1 180px;
}
.xfooter-logo {
  height: 44px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 12px;
}
.xfooter-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 240px;
}
.xfooter-col h4 {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 800;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}
.xfooter-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.xfooter-col ul li a {
  color: var(--c-text-muted);
  font-size: 13px;
  transition: color var(--transition);
}
.xfooter-col ul li a:hover {
  color: var(--c-accent);
}
.xpayments-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.xpayment-logo {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--c-text-muted);
  white-space: nowrap;
}
.xproviders-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.xprov-logo {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--c-text-muted);
}
.xfooter-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.xfooter-legal {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 700px;
}
.xfooter-copy {
  font-size: 12px;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.xwidget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1b2c3d 0%, #162330 100%);
  border-top: 2px solid var(--c-accent);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}
.xwidget-text {
  font-size: 14px;
  color: var(--c-text);
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.4;
}
.xwidget-text strong {
  color: var(--c-accent);
}
.xwidget-close {
  position: absolute;
  right: 10px;
  top: 8px;
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
  transition: color var(--transition);
}
.xwidget-close:hover {
  color: #fff;
}
.xwidget-btn-wrap {
  flex-shrink: 0;
}

.xsep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
  margin: 8px 0;
}

.xslider-wrap {
  position: relative;
  overflow: hidden;
}
.xslider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.xslider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.xslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  border: none;
  transition:
    background var(--transition),
    transform var(--transition);
}
.xslider-dot.active {
  background: var(--c-accent);
  transform: scale(1.3);
}
.xslider-arrows {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  justify-content: flex-end;
}
.xslider-arrow {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
}
.xslider-arrow:hover {
  background: var(--c-accent);
  color: #0d1a24;
  border-color: var(--c-accent);
}

.xwp-pingback {
  display: none;
}
.xwp-noscript {
  display: none;
}
.xgtm-noscript {
  display: none;
}
.single-post .entry-content p {
  margin-bottom: 1em;
}
.wp-block-group {
  display: none;
}
.elementor-widget-wrap {
  display: none;
}
.post-thumbnail {
  display: none;
}

@media (max-width: 900px) {
  .xhdr-nav {
    display: none;
  }
  .xburger {
    display: flex;
  }
  .xhero {
    min-height: 440px;
  }
  .xreview-block {
    padding: 24px 20px;
  }
  .xfooter-grid {
    flex-direction: column;
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .xhdr-inner {
    padding: 0 14px;
    height: 60px;
  }
  .xmobile-nav {
    top: 60px;
  }
  .xhero {
    margin-top: 60px;
  }
  .xhero-content {
    padding: 48px 14px;
  }
  .xbonus-grid {
    flex-direction: column;
  }
  .xjackpots-grid {
    flex-direction: column;
  }
  .xwidget {
    justify-content: center;
  }
  .xwidget-close {
    top: 6px;
    right: 8px;
  }
  .xsection {
    padding: 40px 0;
  }
  .xfooter-bottom {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .xhdr-logo img {
    height: 34px;
  }
  .btn-b9 {
    padding: 9px 14px;
    font-size: 13px;
  }
}
