*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: #111111;
}
body {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  background: #111111;
  color: #e8e8e8;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
a {
  color: #00b004;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #00d805;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.xb3k9 {
  display: none;
}
.qr72m {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.wp-block-group {
  display: block;
}
.entry-content {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.btn-login {
  background: #00b004;
  color: #fff;
}
.btn-login:hover {
  background: #00c505;
  color: #fff;
}
.btn-register {
  background: #ffff00;
  color: #111111;
}
.btn-register:hover {
  background: #e8e800;
  color: #111111;
  filter: brightness(1.05);
}
.btn-bonus {
  background: #ffff00;
  color: #111111;
  font-size: 15px;
  padding: 12px 28px;
}
.btn-bonus:hover {
  background: #e8e800;
  color: #111111;
}
.btn-play {
  background: #00b004;
  color: #fff;
  font-size: 13px;
  padding: 8px 18px;
}
.btn-play:hover {
  background: #00c505;
  color: #fff;
}
.btn-spin {
  background: #ffff00;
  color: #111111;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.btn-spin:hover {
  background: #e8e800;
  color: #111111;
}
.btn-get {
  background: #00b004;
  color: #fff;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 8px;
  margin-top: 14px;
}
.btn-get:hover {
  background: #00c505;
  color: #fff;
}
.btn-submit {
  background: #00b004;
  color: #fff;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  width: 100%;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
}
.btn-submit:hover {
  background: #00c505;
  transform: translateY(-1px);
}

.site-header {
  background: #181818;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #2a2a2a;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.header-logo img {
  height: 44px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-nav a {
  color: #c8c8c8;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 5px;
  transition:
    color 0.2s,
    background 0.2s;
}
.header-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #aaa;
  white-space: nowrap;
}
.online-dot {
  width: 8px;
  height: 8px;
  background: #00b004;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 176, 4, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(0, 176, 4, 0);
  }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8e8e8;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #181818;
  border-top: 1px solid #2a2a2a;
  padding: 12px 20px 16px;
}
.mobile-nav a {
  color: #c8c8c8;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid #252525;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav.open {
  display: flex;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/xban.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.9) 0%,
    rgba(17, 17, 17, 0.55) 60%,
    rgba(17, 17, 17, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: #ffff00;
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 640px;
  text-wrap: balance;
}
.hero-content h1 span {
  color: #ffff00;
}
.hero-sub {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 540px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-bonus-info {
  margin-top: 20px;
  font-size: 13px;
  color: #999;
}

.section {
  padding: 64px 20px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-wrap: balance;
}
.section-subtitle {
  color: #aaa;
  font-size: 15px;
  margin-bottom: 36px;
}
.section--dark {
  background: #0d0d0d;
}
.section--alt {
  background: #131313;
}

.pros-cons-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.pros-box,
.cons-box {
  flex: 1 1 280px;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pros-box {
  background: linear-gradient(135deg, #0a2010 0%, #0f2a15 100%);
  border: 1px solid #1a4020;
}
.cons-box {
  background: linear-gradient(135deg, #1e0a0a 0%, #2a0f0f 100%);
  border: 1px solid #3a1515;
}
.pros-box h3 {
  color: #00b004;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cons-box h3 {
  color: #e05555;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #d0d0d0;
}
.pc-item .ic {
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.jackpot-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
}
.jackpot-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.jackpot-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 24px 20px;
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 176, 4, 0.18);
}
.jackpot-card-name {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 6px;
  font-weight: 500;
}
.jackpot-card-amount {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #ffff00;
  letter-spacing: 0.5px;
}
.jackpot-card-label {
  font-size: 11px;
  color: #555;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.jackpot-updated {
  font-size: 12px;
  color: #555;
  margin-top: 20px;
  text-align: center;
}

.mirror-date-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #888;
}
.mirror-date-bar .live-dot {
  width: 8px;
  height: 8px;
  background: #00b004;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}
.mirror-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.mirror-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.mirror-table thead tr {
  background: #181818;
}
.mirror-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  color: #888;
  font-weight: 600;
  border-bottom: 2px solid #252525;
  white-space: nowrap;
}
.mirror-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #1e1e1e;
  font-size: 14px;
  color: #ccc;
  vertical-align: middle;
}
.mirror-table tr:hover td {
  background: #161616;
}
.mirror-table .status-ok {
  color: #00b004;
  font-weight: 600;
  font-size: 13px;
}
.mirror-table .mirror-link {
  color: #ffffff;
  font-weight: 600;
}
.mirror-table .mirror-link:hover {
  color: #00d805;
  text-decoration: underline;
}

.games-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.game-card {
  background: #1a1a1a;
  border: 1px solid #252525;
  border-radius: 12px;
  overflow: hidden;
  flex: 1 1 160px;
  max-width: 200px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-align: center;
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.game-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}
.game-card-info {
  padding: 12px 10px;
}
.game-card-name {
  font-size: 13px;
  font-weight: 600;
  color: #e8e8e8;
  margin-bottom: 8px;
}

.slot-machine {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}
.slot-reels {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.slot-reel {
  width: 80px;
  height: 100px;
  background: #111;
  border: 2px solid #2a2a2a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
  position: relative;
}
.slot-reel.spinning .slot-symbol {
  animation: reel-spin 0.15s linear infinite;
}
@keyframes reel-spin {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.slot-result {
  min-height: 60px;
  margin-bottom: 16px;
}
.slot-result-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #00b004;
  animation: fade-in 0.4s ease;
}
.slot-result-text.win {
  color: #ffff00;
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-block {
  max-width: 860px;
  margin: 0 auto;
}
.content-block h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 28px 0 12px;
}
.content-block h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #e0e0e0;
  margin: 22px 0 10px;
}
.content-block h4 {
  font-size: 17px;
  font-weight: 600;
  color: #ccc;
  margin: 18px 0 8px;
}
.content-block p {
  margin-bottom: 14px;
  color: #bbb;
  line-height: 1.7;
}
.content-block ul,
.content-block ol {
  margin: 12px 0 16px 22px;
  color: #bbb;
  line-height: 1.7;
}
.content-block li {
  margin-bottom: 6px;
}
.content-block a {
  color: #00b004;
  text-decoration: underline;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.content-block table th {
  background: #1a1a1a;
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
  color: #888;
  border: 1px solid #252525;
}
.content-block table td {
  padding: 10px 14px;
  border: 1px solid #252525;
  font-size: 14px;
  color: #ccc;
}
.content-block blockquote {
  border-left: 3px solid #00b004;
  padding: 10px 18px;
  background: #151515;
  margin: 14px 0;
  color: #bbb;
  font-style: italic;
}
.content-block strong,
.content-block b {
  color: #e8e8e8;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #161616;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 32px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #00b004;
}
.author-info a {
  color: #00b004;
  font-weight: 600;
  font-size: 15px;
}
.author-info p {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

.reviews-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.review-card {
  background: #1a1a1a;
  border: 1px solid #252525;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 260px;
  max-width: 340px;
  transition: box-shadow 0.2s;
}
.review-card:hover {
  box-shadow: 0 4px 20px rgba(0, 176, 4, 0.1);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #2a2a2a;
}
.review-name {
  font-weight: 700;
  font-size: 15px;
  color: #e8e8e8;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.review-stars svg {
  width: 14px;
  height: 14px;
  fill: #ffff00;
}
.review-text {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

.review-form {
  background: #161616;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 28px 24px;
  max-width: 560px;
}
.review-form h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}
.form-field input,
.form-field textarea {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 7px;
  padding: 12px 14px;
  color: #e8e8e8;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: #00b004;
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  display: none;
  background: #0a2010;
  border: 1px solid #1a4020;
  border-radius: 8px;
  padding: 14px 18px;
  color: #00b004;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

.site-footer {
  background: #181818;
  border-top: 1px solid #222;
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 36px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: #666;
  max-width: 280px;
  line-height: 1.6;
}
.footer-nav-title {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav-links a {
  font-size: 14px;
  color: #666;
  transition: color 0.2s;
}
.footer-nav-links a:hover {
  color: #00b004;
}
.footer-payments {
  margin-bottom: 28px;
}
.footer-payments-title,
.footer-providers-title {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.payment-logos,
.provider-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.payment-logo,
.provider-logo {
  background: #222;
  border: 1px solid #2a2a2a;
  border-radius: 5px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-copyright {
  font-size: 12px;
  color: #444;
  line-height: 1.6;
}
.footer-legal {
  font-size: 11px;
  color: #333;
  max-width: 700px;
  line-height: 1.6;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #181818;
  border-top: 2px solid #ffff00;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.widget-text {
  font-size: 14px;
  color: #ccc;
  font-weight: 500;
}
.widget-text strong {
  color: #ffff00;
}
.widget-close {
  background: none;
  border: none;
  color: #555;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
}
.widget-close:hover {
  color: #aaa;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid #252525;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  background: #161616;
  transition: background 0.2s;
  font-weight: 600;
  font-size: 15px;
  color: #e8e8e8;
  gap: 12px;
}
.faq-question:hover {
  background: #1a1a1a;
}
.faq-icon {
  font-size: 18px;
  color: #00b004;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s ease;
}
.faq-answer-inner {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}

body {
  padding-bottom: 72px;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .games-grid {
    gap: 12px;
  }
  .game-card {
    flex: 1 1 140px;
    max-width: 160px;
  }
  .jackpot-grid {
    gap: 10px;
  }
  .jackpot-card {
    flex: 1 1 140px;
    max-width: 160px;
  }
  .footer-top {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .hero-section {
    min-height: 380px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .pros-cons-grid {
    flex-direction: column;
  }
  .games-grid {
    gap: 10px;
  }
  .game-card {
    flex: 1 1 130px;
    max-width: calc(50% - 5px);
  }
  .game-card img {
    height: 80px;
  }
  .slot-reels {
    gap: 5px;
  }
  .slot-reel {
    width: 68px;
    height: 86px;
    font-size: 38px;
  }
  .reviews-grid {
    flex-direction: column;
  }
  .review-card {
    max-width: 100%;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .sticky-widget {
    flex-wrap: wrap;
    gap: 8px;
  }
  .widget-text {
    font-size: 12px;
  }
}

.lf-qk29 {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 13px;
  color: #777;
  display: inline-block;
  margin: 2px;
}
.wc-pla {
  display: block;
  clear: both;
}
.elementor-widget-container {
  display: block;
}
.wp-caption {
  max-width: 100%;
}
.aligncenter {
  margin: 0 auto;
  display: block;
}
.alignleft {
  float: left;
  margin-right: 16px;
}
.yoast-breadcrumb {
  font-size: 12px;
  color: #555;
  padding: 4px 0;
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.has-text-color {
  color: inherit;
}
.has-background {
  background: inherit;
}
