:root {
  --c-primary: #5274ff;
  --c-primary-dark: #3a5ce0;
  --c-green: #69d253;
  --c-green-dark: #52b83e;
  --c-bg: #f5f5f5;
  --c-white: #ffffff;
  --c-text: #1a1a2e;
  --c-text-muted: #6b7280;
  --c-border: #e2e6ea;
  --c-header-bg: #ffffff;
  --c-footer-bg: #1a1a2e;
  --c-block-bg: #ffffff;
  --c-shadow: 0 2px 16px rgba(82, 116, 255, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --font-main: "Montserrat", "Roboto", Arial, sans-serif;
  --color-primary: #5274ff;
  --color-green: #69d253;
  --color-bg: #f5f5f5;
  --color-white: #ffffff;
  --color-dark: #1a1a2e;
  --color-text: #2d2d2d;
  --color-muted: #6c757d;
  --color-border: #dee2e6;
  --color-header-bg: #ffffff;
  --color-footer-bg: #1a1a2e;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --font-sans: "Montserrat", "Roboto", Arial, sans-serif;
}

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

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-primary);
  opacity: 0.85;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
}

.xb4f2-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.xq71k-section {
  padding: 56px 0;
}

.btn-primary-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff !important;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  text-decoration: none !important;
  font-family: var(--font-sans);
}
.btn-primary-x:hover {
  background: #3d5be0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff !important;
}

.btn-green-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-green);
  color: #fff !important;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  text-decoration: none !important;
  font-family: var(--font-sans);
}
.btn-green-x:hover {
  background: #54b840;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff !important;
}

.xhdr-root {
  background: var(--color-header-bg);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #f0f0f0;
}

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

.xhdr-logo img {
  height: 44px;
  width: auto;
}

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

.xhdr-nav a {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.xhdr-nav a:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

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

.xhdr-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-muted);
  margin-right: 8px;
  white-space: nowrap;
}
.xhdr-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  animation: xpulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes xpulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.xhdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
}
.xhdr-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.xhdr-mobile-nav {
  display: none;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 16px;
  flex-direction: column;
  gap: 8px;
}
.xhdr-mobile-nav.active {
  display: flex;
}
.xhdr-mobile-nav a {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  display: block;
}
.xhdr-mobile-nav a:hover {
  background: var(--color-bg);
}

.xhero-root {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.xhero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/tiBan.png");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.xhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 26, 46, 0.95) 0%,
    rgba(26, 26, 46, 0.6) 60%,
    rgba(26, 26, 46, 0.2) 100%
  );
}
.xhero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
}
.xhero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 116, 255, 0.2);
  border: 1px solid rgba(82, 116, 255, 0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: #a0b4ff;
  font-weight: 600;
  width: fit-content;
}
.xhero-h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.xhero-h1 span {
  color: var(--color-green);
}
.xhero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 560px;
}
.xhero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.xhero-btns .btn-green-x {
  padding: 14px 36px;
  font-size: 16px;
}
.xhero-btns .btn-primary-x {
  padding: 14px 36px;
  font-size: 16px;
}

.xhero-bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(105, 210, 83, 0.15);
  border: 1px solid rgba(105, 210, 83, 0.35);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  color: #a8f092;
  font-size: 15px;
  font-weight: 700;
  width: fit-content;
  margin-top: 4px;
}

.xbc-root {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}
.xbc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.xbc-inner a {
  color: var(--color-muted);
  font-size: 13px;
}
.xbc-inner span {
  color: var(--color-muted);
  font-size: 13px;
}
.xbc-inner .xbc-current {
  color: var(--color-text);
  font-weight: 600;
  font-size: 13px;
}
.xbc-sep {
  color: var(--color-border);
}

.xmir-root {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 32px;
  margin: 0 16px;
}
.xmir-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.xmir-head h2 {
  font-size: 24px;
  color: var(--color-dark);
}
.xmir-time {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0fff0;
  border: 1px solid #c3e6c0;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 13px;
  color: #2d7a2d;
  font-weight: 600;
}

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

table.xmir-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 0 auto;
}
table.xmir-table thead tr {
  background: linear-gradient(90deg, #5274ff, #6b85ff);
  color: #fff;
}
table.xmir-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
table.xmir-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background 0.15s;
}
table.xmir-table tbody tr:hover {
  background: #f8f9ff;
}
table.xmir-table tbody td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
}
table.xmir-table tbody td a {
  color: var(--color-primary);
  font-weight: 600;
}
.xmir-status-ok {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8f9e8;
  color: #28a745;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
}
.xmir-status-ok::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #28a745;
  border-radius: 50%;
}

.xvid-root {
  background: var(--color-dark);
  padding: 56px 0;
}
.xvid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.xvid-title {
  color: #fff;
  text-align: center;
  font-size: 28px;
  margin-bottom: 8px;
}
.xvid-subtitle {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 15px;
  margin-bottom: 32px;
}
.xvid-frame-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.xvid-frame-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.xslots-root {
  padding: 56px 0;
  background: var(--color-bg);
}
.xslots-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.xslots-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 8px;
}
.xslots-subtitle {
  text-align: center;
  color: var(--color-muted);
  font-size: 15px;
  margin-bottom: 36px;
}
.xslots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.xslot-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  width: 180px;
  flex-shrink: 0;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.xslot-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.xslot-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #e9ecef;
}
.xslot-body {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.xslot-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
}
.xslot-provider {
  font-size: 11px;
  color: var(--color-muted);
  text-align: center;
}
.xslot-btn {
  text-align: center;
}
.xslot-btn a {
  display: inline-block;
  background: var(--color-primary);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    transform 0.2s;
}
.xslot-btn a:hover {
  background: #3d5be0;
  transform: translateY(-1px);
}

.xwheel-root {
  padding: 56px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.xwheel-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}
.xwheel-title {
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
}
.xwheel-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-bottom: 36px;
}

.xwheel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.xwheel-canvas-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}
#xWheelCanvas {
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(82, 116, 255, 0.5),
    0 0 0 6px rgba(255, 255, 255, 0.1);
}
.xwheel-arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 28px solid #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  z-index: 10;
}

.xwheel-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 200px;
}
.xwheel-spin-btn {
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  font-family: var(--font-sans);
  box-shadow: 0 4px 20px rgba(105, 210, 83, 0.4);
}
.xwheel-spin-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(105, 210, 83, 0.5);
}
.xwheel-spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.xwheel-result {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  min-width: 200px;
}
.xwheel-result.active {
  display: flex;
  animation: xfadeIn 0.4s ease;
}
.xwheel-result.win .xwheel-result-icon {
  color: #ffd700;
  font-size: 36px;
}
.xwheel-result.lose .xwheel-result-icon {
  color: #ff6b6b;
  font-size: 36px;
}
.xwheel-result-text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.xwheel-result-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  text-align: center;
}
.xwheel-get-btn {
  display: inline-block;
  background: var(--color-green);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  transition: transform 0.2s;
  text-decoration: none !important;
}
.xwheel-get-btn:hover {
  transform: translateY(-2px);
}

@keyframes xfadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.xreview-root {
  padding: 56px 0;
  background: var(--color-bg);
}
.xreview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.xreview-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 40px 48px;
}

.xreview-content h1,
.xreview-content h2,
.xreview-content h3,
.xreview-content h4 {
  margin-top: 28px;
  margin-bottom: 14px;
  color: var(--color-dark);
}
.xreview-content h1 {
  font-size: 28px;
}
.xreview-content h2 {
  font-size: 22px;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 8px;
}
.xreview-content h3 {
  font-size: 18px;
}
.xreview-content p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: var(--color-text);
}
.xreview-content a {
  color: var(--color-primary);
}
.xreview-content ul,
.xreview-content ol {
  margin: 0 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.xreview-content ul li,
.xreview-content ol li {
  line-height: 1.7;
  color: var(--color-text);
}
.xreview-content strong {
  font-weight: 700;
  color: var(--color-dark);
}
.xreview-content em {
  font-style: italic;
}
.xreview-content blockquote {
  border-left: 4px solid var(--color-primary);
  background: #f0f4ff;
  padding: 14px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  color: var(--color-text);
}
.xreview-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  font-size: 14px;
  border: 1px solid var(--color-border);
}
.xreview-content table th {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
}
.xreview-content table td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  text-align: left;
}
.xreview-content table tr:nth-child(even) td {
  background: #f8f9ff;
}
.xreview-content img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin: 16px auto;
}
.xreview-content hr {
  border: none;
  border-top: 2px solid var(--color-border);
  margin: 28px 0;
}

.xauthor-root {
  padding: 40px 0;
  background: var(--color-bg);
}
.xauthor-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.xauthor-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.xauthor-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-primary);
  flex-shrink: 0;
}
.xauthor-body {
  flex: 1;
}
.xauthor-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.xauthor-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-dark);
}
.xauthor-badge {
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.xauthor-bio {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 8px;
  margin-bottom: 14px;
}
.xauthor-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.xauthor-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.xauthor-links a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.xftr-root {
  background: var(--color-footer-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 0;
}
.xftr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.xftr-top {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  margin-bottom: 36px;
}
.xftr-logo-col {
  min-width: 200px;
}
.xftr-logo img {
  height: 40px;
  margin-bottom: 14px;
}
.xftr-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.xftr-nav-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.xftr-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.xftr-nav-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color 0.2s;
}
.xftr-nav-col ul li a:hover {
  color: var(--color-primary);
}

.xftr-providers {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
}
.xftr-providers h4 {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.xftr-prov-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.xftr-prov-tag {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

.xftr-payments {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
}
.xftr-payments h4 {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.xftr-pay-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.xftr-pay-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}

.xftr-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.xftr-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.xftr-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  max-width: 700px;
  line-height: 1.6;
}

.xwig-root {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
  border-top: 2px solid var(--color-green);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.xwig-text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.xwig-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}
.xwig-bonus {
  color: var(--color-green);
  font-size: 16px;
  font-weight: 800;
}
.xwig-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}
.xwig-close:hover {
  color: #fff;
}

.wp-block-unused {
  display: none !important;
}
.elementor-widget-wrap {
}
.entry-content {
}

.xsec-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 8px;
}
.xsec-sub {
  text-align: center;
  color: var(--color-muted);
  font-size: 15px;
  margin-bottom: 36px;
}

@media (max-width: 991px) {
  .xhdr-nav {
    display: none;
  }
  .xhdr-burger {
    display: flex;
  }
  .xmir-root {
    padding: 24px 16px;
    margin: 0 8px;
  }
  .xreview-wrap {
    padding: 28px 20px;
  }
  .xauthor-card {
    flex-direction: column;
    gap: 20px;
  }
  .xftr-top {
    flex-direction: column;
    gap: 24px;
  }
  .xwheel-container {
    gap: 24px;
  }
  .xwheel-canvas-wrap {
    width: 260px;
    height: 260px;
  }
  #xWheelCanvas {
    width: 260px !important;
    height: 260px !important;
  }
}

@media (max-width: 767px) {
  .xhero-inner {
    padding: 56px 16px;
  }
  .xhero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .xhero-btns a {
    width: 100%;
    text-align: center;
  }
  .xslots-grid {
    gap: 12px;
  }
  .xslot-card {
    width: calc(50% - 6px);
  }
  .xwig-root {
    flex-wrap: wrap;
    gap: 8px;
  }
  .xwig-text {
    font-size: 13px;
  }
  .btn-green-x.xwig-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .xmir-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .xwheel-canvas-wrap {
    width: 220px;
    height: 220px;
  }
  #xWheelCanvas {
    width: 220px !important;
    height: 220px !important;
  }
  .xwheel-arrow {
    right: -16px;
  }
}

@media (max-width: 479px) {
  .xslot-card {
    width: 100%;
  }
  .xauthor-card {
    padding: 20px 16px;
  }
}

.xq7r2-hidden-block {
  display: none;
  color: transparent;
  pointer-events: none;
}
.pf93a-fakerow {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.rj22x-spacer {
  margin: 0;
  padding: 0;
  height: 0;
}
.z8k4w-decoration {
}
.page-template-default {
}
.single-post {
}
.wp-singular {
}
.has-post-thumbnail {
}
.elementor-section-wrap {
}

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

.slt-body {
  background: var(--c-bg);
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  cursor: pointer;
  border: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}
.slt-btn-login {
  background: var(--c-primary);
  color: var(--c-white) !important;
  border: 2px solid var(--c-primary);
}
.slt-btn-login:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  color: var(--c-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(82, 116, 255, 0.35);
}
.slt-btn-signup {
  background: var(--c-green);
  color: #fff !important;
  border: 2px solid var(--c-green);
}
.slt-btn-signup:hover {
  background: var(--c-green-dark);
  border-color: var(--c-green-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(105, 210, 83, 0.35);
}
.slt-btn-hero-signup {
  background: var(--c-green);
  color: #fff !important;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
}
.slt-btn-hero-signup:hover {
  background: var(--c-green-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(105, 210, 83, 0.4);
}
.slt-btn-hero-mirror {
  background: transparent;
  color: #fff !important;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.slt-btn-hero-mirror:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  border-color: #fff;
}
.slt-btn-mirror-go {
  background: var(--c-primary);
  color: #fff !important;
  padding: 7px 18px;
  font-size: 13px;
  border-radius: 6px;
}
.slt-btn-mirror-go:hover {
  background: var(--c-primary-dark);
  color: #fff !important;
}
.slt-btn-game {
  background: var(--c-primary);
  color: #fff !important;
  padding: 8px 18px;
  font-size: 13px;
  width: 100%;
  border-radius: 7px;
}
.slt-btn-game:hover {
  background: var(--c-primary-dark);
  color: #fff !important;
}
.slt-btn-spin {
  background: var(--c-primary);
  color: #fff !important;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 8px;
  width: 100%;
}
.slt-btn-spin:hover:not(:disabled) {
  background: var(--c-primary-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(82, 116, 255, 0.35);
}
.slt-btn-spin:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.slt-btn-wheel-get {
  background: var(--c-green);
  color: #fff !important;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 8px;
  width: 100%;
  display: block;
  text-align: center;
}
.slt-btn-wheel-get:hover {
  background: var(--c-green-dark);
  color: #fff !important;
}
.slt-btn-widget-reg {
  background: var(--c-green);
  color: #fff !important;
  font-size: 15px;
  padding: 11px 26px;
  border-radius: 8px;
  flex-shrink: 0;
  text-decoration: none !important;
}
.slt-btn-widget-reg:hover {
  background: var(--c-green-dark);
  color: #fff !important;
}

.slt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header-bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  transition: box-shadow 0.3s;
}
.slt-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
}
.slt-hdr-inner {
  gap: 12px;
  flex-wrap: nowrap;
}
.slt-logo-link {
  display: inline-block;
}
.slt-logo-link img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.slt-nav-link {
  color: var(--c-text) !important;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  transition:
    background 0.18s,
    color 0.18s;
  text-decoration: none;
}
.slt-nav-link:hover {
  background: rgba(82, 116, 255, 0.08);
  color: var(--c-primary) !important;
}
.slt-online-badge {
  background: #f0f4ff;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text);
  gap: 5px;
}
.slt-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  display: inline-block;
  animation: slt-pulse 1.6s infinite;
  flex-shrink: 0;
}
@keyframes slt-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(105, 210, 83, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(105, 210, 83, 0);
  }
}
.slt-online-count {
  color: var(--c-primary);
}
.slt-online-label {
  color: var(--c-text-muted);
}
.slt-burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 4px;
}
.slt-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.25s;
}
.slt-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.slt-burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.slt-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.slt-mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--c-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 12px 0;
  animation: slt-slide-down 0.22s ease;
}
.slt-mobile-nav.is-open {
  display: block;
}
@keyframes slt-slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slt-mobile-nav-list {
  list-style: none;
  padding: 0 16px;
  margin: 0;
}
.slt-mobile-nav-link {
  display: block;
  padding: 11px 12px;
  font-weight: 500;
  color: var(--c-text) !important;
  border-radius: 7px;
  font-size: 15px;
  text-decoration: none;
}
.slt-mobile-nav-link:hover {
  background: #f0f4ff;
  color: var(--c-primary) !important;
}

.slt-hero {
  position: relative;
  overflow: hidden;
  height: 480px;
  background: #111;
}
@media (max-width: 767px) {
  .slt-hero {
    height: 340px;
  }
}
.slt-hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.slt-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.slt-hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.slt-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 30, 0.72) 0%,
    rgba(10, 10, 30, 0.28) 100%
  );
  z-index: 1;
}
.slt-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slt-hero-title {
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  max-width: 640px;
}
.slt-hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  margin-top: 12px;
  max-width: 520px;
  line-height: 1.5;
}
.slt-slider-prev,
.slt-slider-next {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.slt-slider-prev {
  left: 16px;
}
.slt-slider-next {
  right: 16px;
}
.slt-slider-prev:hover,
.slt-slider-next:hover {
  background: rgba(255, 255, 255, 0.32);
}
.slt-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.slt-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  border: none;
  padding: 0;
}
.slt-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.slt-breadcrumbs {
  padding: 8px 0;
}
.slt-bc-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  background: none;
  padding: 0;
  margin: 0;
  list-style: none;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--c-text-muted);
  margin: 0 4px;
  float: none;
}
.breadcrumb-item a {
  color: var(--c-primary);
  font-size: 13px;
}
.breadcrumb-item.active {
  color: var(--c-text-muted);
  font-size: 13px;
}

.slt-block {
  background: var(--c-block-bg);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--c-shadow);
  border: 1px solid var(--c-border);
}
@media (max-width: 575px) {
  .slt-block {
    padding: 18px 14px;
  }
}
.slt-block-title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
}
.slt-block-sub {
  color: var(--c-text-muted);
  margin-top: 6px;
  font-size: 14px;
}
.slt-block-header {
  border-bottom: 2px solid var(--c-border);
  padding-bottom: 14px;
  margin-bottom: 4px;
}

.slt-mirrors-time {
  font-size: 13px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.slt-time-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  display: inline-block;
  animation: slt-pulse 1.6s infinite;
  flex-shrink: 0;
}
.slt-mirrors-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 0;
}
.slt-mirrors-table thead tr {
  background: #f0f4ff;
}
.slt-mirrors-table th {
  padding: 11px 14px;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  border-bottom: 2px solid var(--c-border);
  white-space: nowrap;
}
.slt-mirrors-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}
.slt-mirrors-table tbody tr:hover {
  background: #f7f9ff;
}
.slt-mirrors-table tbody tr:last-child td {
  border-bottom: none;
}
.slt-mirror-url {
  font-family: monospace;
  font-size: 13px;
  color: var(--c-primary);
  font-weight: 600;
}
.slt-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.slt-status--ok {
  background: #e6f9e0;
  color: #2e7d32;
}
.slt-status--warn {
  background: #fff8e1;
  color: #f57f17;
}
.slt-mirrors-note {
  font-size: 12px;
  color: var(--c-text-muted);
  margin: 0;
}

.slt-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}
.slt-yt-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.slt-games-slider {
  position: relative;
  overflow: hidden;
}
.slt-games-track {
  display: flex;
  gap: 16px;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slt-game-card {
  flex: 0 0 calc(16.66% - 14px);
  min-width: 160px;
  background: #f8f9ff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition:
    transform 0.22s,
    box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .slt-game-card {
    flex: 0 0 calc(33.33% - 11px);
    min-width: 140px;
  }
}
@media (max-width: 575px) {
  .slt-game-card {
    flex: 0 0 calc(50% - 8px);
    min-width: 130px;
  }
}
.slt-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(82, 116, 255, 0.14);
}
.slt-game-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}
.slt-game-body {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.slt-game-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.3;
}
.slt-game-provider {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 2px;
}
.slt-games-prev,
.slt-games-next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .slt-games-prev,
  .slt-games-next {
    display: flex;
  }
}
.slt-games-prev {
  left: 0;
}
.slt-games-next {
  right: 0;
}

.slt-wheel-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.slt-wheel-canvas-wrap {
  position: relative;
  flex-shrink: 0;
}
#js-wheel-canvas {
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(82, 116, 255, 0.18);
}
.slt-wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: var(--c-primary);
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.slt-wheel-side {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  text-align: center;
}
.slt-wheel-result {
  padding: 16px;
  background: #f0f9f0;
  border-radius: 10px;
  border: 2px solid var(--c-green);
}
.slt-wheel-win {
  font-weight: 700;
  font-size: 15px;
  color: #2e7d32;
  line-height: 1.4;
}
.slt-wheel-hint {
  font-size: 12px;
  color: var(--c-text-muted);
  margin: 0;
}

.slt-content-body {
  line-height: 1.75;
}
.slt-content-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text);
  margin: 24px 0 10px;
}
.slt-content-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--c-text);
  margin: 18px 0 8px;
}
.slt-content-body p {
  margin: 0 0 14px;
  color: var(--c-text);
}
.slt-content-body ul,
.slt-content-body ol {
  padding-left: 22px;
  margin: 0 0 14px;
}
.slt-content-body li {
  margin-bottom: 6px;
  color: var(--c-text);
}
.slt-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.slt-content-body th {
  background: #f0f4ff;
  padding: 10px 14px;
  font-weight: 600;
  text-align: left;
  border: 1px solid var(--c-border);
}
.slt-content-body td {
  padding: 9px 14px;
  border: 1px solid var(--c-border);
}
.slt-content-body a {
  color: var(--c-primary);
  text-decoration: underline;
}
.slt-content-body strong,
.slt-content-body b {
  font-weight: 600;
}
.slt-content-body blockquote {
  border-left: 4px solid var(--c-primary);
  padding: 10px 16px;
  background: #f0f4ff;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  color: var(--c-text);
}
.slt-content-body img {
  border-radius: 8px;
  margin: 12px 0;
}
.slt-content-body hr {
  border: none;
  border-top: 2px solid var(--c-border);
  margin: 24px 0;
}

.slt-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.slt-faq-item {
  border: 1px solid var(--c-border) !important;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
}
.slt-faq-btn {
  background: #f8f9ff !important;
  color: var(--c-text) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  box-shadow: none !important;
  padding: 14px 18px !important;
}
.slt-faq-btn:not(.collapsed) {
  background: #f0f4ff !important;
  color: var(--c-primary) !important;
}
.slt-faq-body {
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.65;
  padding: 14px 18px;
  background: #fff;
}

.slt-author-photo {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 3px solid var(--c-border);
  flex-shrink: 0;
}
.slt-author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
}
.slt-author-title {
  font-size: 13px;
  color: var(--c-primary);
  font-weight: 500;
  margin-top: 2px;
}
.slt-author-bio {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.slt-author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none !important;
}
.slt-author-link--linkedin {
  background: #e8f0fe;
  color: #0077b5 !important;
}
.slt-author-link--linkedin:hover {
  background: #0077b5;
  color: #fff !important;
}

.slt-footer {
  margin-top: 48px;
}
.slt-footer-top {
  background: var(--c-footer-bg);
  padding: 48px 0 32px;
}
.slt-footer-bottom {
  background: #111322;
  padding: 16px 0;
}
.slt-footer-brand {
  max-width: 280px;
}
.slt-footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}
.slt-footer-contacts {
  font-size: 13px;
  margin: 0;
}
.slt-footer-nav-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 10px;
}
.slt-footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.slt-footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6) !important;
  transition: color 0.2s;
  text-decoration: none !important;
}
.slt-footer-link:hover {
  color: var(--c-primary) !important;
}
.slt-pay-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.slt-provider-badge {
  display: inline-block;
  background: rgba(82, 116, 255, 0.15);
  color: #a0b4ff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 5px;
  border: 1px solid rgba(82, 116, 255, 0.2);
}
.slt-copyright {
  font-size: 12px;
  color: #888aaa;
}
.slt-legal {
  font-size: 11px;
  color: #666888;
  line-height: 1.5;
  max-width: 700px;
}

.slt-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
  border-top: 2px solid var(--c-primary);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.slt-widget.is-visible {
  transform: translateY(0);
}
.slt-widget-bonus {
  font-weight: 700;
  font-size: 15px;
  color: var(--c-green);
}
.slt-widget-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
.slt-widget-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 22px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}
.slt-widget-close:hover {
  color: #fff;
}

.slt-fade-in {
  animation: slt-fadeIn 0.5s ease both;
}
@keyframes slt-fadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 575px) {
  .slt-hdr-right .slt-btn-login,
  .slt-hdr-right .slt-btn-signup {
    padding: 8px 12px;
    font-size: 12px;
  }
  .slt-hdr-inner {
    gap: 6px;
  }
  .slt-wheel-wrap {
    flex-direction: column;
  }
  .slt-widget {
    padding: 10px 12px;
  }
  .slt-widget-inner {
    flex-wrap: wrap;
  }
}
