:root {
  --color-bg: #010a40;
  --color-header: #091682;
  --color-btn-primary: #a5d1f9;
  --color-btn-secondary: #e19c23;
  --color-text: #f7f9ff;
  --muted: #c9d4f5;
  --card: #101d69;
  --line: #5065b2;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Sofia Sans", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
.b7x2-wrapper {
  display: grid;
  gap: 0;
  min-height: 100vh;
}
a {
  color: #d9ecff;
  transition: 0.25s;
}
a:hover {
  color: #fff;
}
.site-header {
  background: var(--color-header);
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 6px 22px #0009;
}
.brand-logo img,
.footer-logo {
  display: block;
  width: 105px;
  height: auto;
}
.desktop-nav {
  display: none;
  grid-auto-flow: column;
  gap: 18px;
}
.desktop-nav a {
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.header-actions {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: end;
  gap: 7px;
}
.players {
  display: none;
  color: #bcffd2;
  font-size: 14px;
}
.button {
  border: 0;
  border-radius: 10px;
  padding: 9px 14px;
  text-decoration: none;
  font:
    700 16px "Sofia Sans",
    sans-serif;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.22s,
    filter 0.22s,
    box-shadow 0.22s;
}
.button:hover {
  transform: scale(1.045);
  filter: brightness(1.08);
  box-shadow: 0 8px 20px #0007;
}
.login-btn {
  background: var(--color-btn-secondary);
  color: #010a40;
}
.primary-btn,
.sticky-widget a {
  background: var(--color-btn-primary);
  color: #010a40;
}
.burger {
  background: transparent;
  border: 0;
  display: grid;
  gap: 4px;
  padding: 6px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 23px;
  height: 2px;
  background: #fff;
  transition: 0.25s;
}
.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.desktop-nav.active {
  display: grid;
  position: absolute;
  top: 64px;
  left: 10px;
  right: 10px;
  background: #091682;
  padding: 18px;
  border-radius: 12px;
  grid-auto-flow: row;
  box-shadow: 0 10px 25px #0008;
}
.k3m8-hero {
  display: grid;
  min-height: 520px;
  background:
    linear-gradient(90deg, #010a40f5 5%, #010a4099 54%, #010a4022),
    url("/woban.jpeg") center/cover;
}
.hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  max-width: 760px;
  padding: 48px 20px;
}
.eyebrow {
  color: #a5d1f9;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0;
}
.hero-copy h1 {
  font-size: clamp(2.25rem, 8vw, 4.6rem);
  line-height: 1.02;
  margin: 0;
}
.hero-copy p {
  font-size: clamp(1.2rem, 4vw, 1.55rem);
  margin: 0;
}
.hero-actions {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
}
.bonus-badge {
  background: #ffffff1c;
  border: 1px solid #a5d1f9;
  border-radius: 10px;
  padding: 10px;
  color: #fff;
}
.p2n6-content {
  display: grid;
  gap: 38px;
  padding: 34px 16px 105px;
  max-width: 1250px;
  width: 100%;
  margin: auto;
}
.content-block {
  display: grid;
  gap: 18px;
}
.content-block h1,
.content-block h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  line-height: 1.1;
}
.card {
  background: linear-gradient(145deg, #152778, #0b1859);
  border: 1px solid #5065b2;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 25px #0004;
}
.pros-grid,
.jackpot-grid,
.security-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pros h3 {
  color: #9dffb8;
}
.cons h3 {
  color: #ffb6b6;
}
.pros p,
.cons p {
  margin: 6px 0;
}
.jackpot-card {
  display: grid;
  gap: 10px;
  text-align: center;
}
.jackpot-card strong {
  color: #a5d1f9;
  font-size: 1.8rem;
}
.screenshots,
.bonus-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  overflow-x: auto;
  gap: 14px;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.screen-card,
.bonus-card {
  scroll-snap-align: start;
}
.screen-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.screen-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.bonus-card {
  display: grid;
  gap: 12px;
}
.bonus-card em {
  font-style: normal;
  color: #010a40;
  background: #a5d1f9;
  border-radius: 20px;
  padding: 3px 10px;
  width: max-content;
  font-size: 13px;
  font-weight: 800;
}
.bonus-card h3,
.bonus-card p {
  margin: 0;
}
.bonus-card strong {
  font-size: 1.3rem;
  color: #fff;
}
.video-box {
  width: min(100%, 800px);
  margin: auto;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.video-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.slot-wrap {
  text-align: center;
}
.slot-machine {
  display: grid;
  justify-items: center;
  gap: 18px;
  background: #091682;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(100%, 420px);
}
.reel {
  background: #fff;
  color: #010a40;
  border-radius: 12px;
  font-size: 3.2rem;
  padding: 10px;
  min-height: 90px;
  display: grid;
  place-items: center;
}
.reel.spinning {
  animation: reelspin 0.16s linear infinite;
}
@keyframes reelspin {
  from {
    transform: translateY(-7px);
    filter: blur(1px);
  }
  to {
    transform: translateY(7px);
    filter: blur(1px);
  }
}
.slot-result {
  min-height: 29px;
  font-weight: 700;
}
.security-grid .card h3 {
  margin: 0;
  color: #a5d1f9;
}
.security-grid .card p {
  margin-bottom: 0;
}
.lx7q-author-card {
  border-left: 5px solid #e19c23;
}
.lx7q-author-card h3 {
  margin: 0;
}
.faq {
  display: grid;
  gap: 10px;
}
.faq details {
  background: #101d69;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
}
.faq summary {
  font-weight: 800;
  cursor: pointer;
}
.faq p {
  margin: 10px 0 0;
}
.m4k2-content-body {
  display: grid;
  gap: 10px;
}
.m4k2-content-body h2 {
  font-size: 1.55rem;
  margin-top: 12px;
}
.m4k2-content-body p {
  margin: 0;
}
.info-page {
  min-height: 60vh;
  padding-top: 48px;
}
.contact-form {
  display: grid;
  gap: 14px;
  max-width: 650px;
}
.contact-form label {
  display: grid;
  gap: 5px;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #7790df;
  background: #fff;
  color: #010a40;
}
.site-footer {
  background: #091682;
  padding: 35px 16px 115px;
}
.footer-grid {
  max-width: 1200px;
  margin: auto;
}
.footer-grid h3 {
  margin: 0 0 9px;
}
.footer-grid p {
  margin: 9px 0;
}
.footer-grid a {
  display: block;
  margin: 4px 0;
}
.badge-list,
.responsible-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}
.badge-list b,
.license {
  border: 1px solid #778ad1;
  border-radius: 7px;
  padding: 5px;
  text-align: center;
  font-size: 13px;
}
.responsible-links {
  max-width: 1200px;
  margin: 25px auto 15px;
}
.responsible-links a {
  font-size: 14px;
}
.responsible-links strong {
  background: #e19c23;
  color: #010a40;
  border-radius: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
}
.legal,
.copyright {
  text-align: center;
  font-size: 14px;
  color: #dae2ff;
  max-width: 900px;
  margin: 10px auto;
}
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(90deg, #091682, #010a40);
  border-top: 1px solid #647bd8;
  padding: 10px 13px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.sticky-widget a {
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}
.sticky-close {
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 24px;
  cursor: pointer;
}
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.elementor-widget-wrap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.wp-block-group {
  display: none;
}
.q0x9 {
  filter: saturate(1.2);
}
@media (min-width: 480px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }
  .brand-logo img {
    width: 125px;
  }
  .header-actions {
    gap: 10px;
  }
  .button {
    padding: 10px 16px;
  }
  .screenshots,
  .bonus-grid {
    grid-auto-columns: 60%;
  }
}
@media (min-width: 768px) {
  .site-header {
    padding: 12px 28px;
    grid-template-columns: auto 1fr auto;
  }
  .burger {
    display: none;
  }
  .desktop-nav {
    display: grid;
  }
  .players {
    display: inline;
  }
  .k3m8-hero {
    min-height: 580px;
  }
  .hero-copy {
    padding: 72px 7vw;
  }
  .p2n6-content {
    padding: 52px 30px 100px;
  }
  .pros-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jackpot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .screenshots,
  .bonus-grid {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
  .responsible-links {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1024px) {
  .jackpot-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .p2n6-content {
    gap: 55px;
  }
  .site-header {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
@media (min-width: 1280px) {
  .hero-copy {
    padding-left: max(8vw, calc((100vw - 1150px) / 2));
  }
  .site-header {
    padding-left: max(6vw, calc((100vw - 1200px) / 2));
    padding-right: max(6vw, calc((100vw - 1200px) / 2));
  }
}
@media (max-width: 319px) {
  body {
    font-size: 16px;
  }
  .header-actions .button {
    padding: 8px 6px;
    font-size: 13px;
  }
  .brand-logo img {
    width: 78px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


.content-review-styled {
  background: linear-gradient(145deg, #152778, #0b1859);
  border: 1px solid #5065b2;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.content-review-styled .m4k2-content-body {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  color: #e6ebff;
}

.content-review-styled .m4k2-content-body h2,
.content-review-styled .m4k2-content-body h3,
.content-review-styled .m4k2-content-body h4 {
  color: #ffffff;
  margin-top: 26px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.content-review-styled .m4k2-content-body p,
.content-review-styled .m4k2-content-body li {
  color: #dce4ff;
  line-height: 1.75;
}

.content-review-styled .m4k2-content-body a {
  color: #a5d1f9;
}

.content-review-styled .m4k2-content-body blockquote {
  margin: 20px 0;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border-left: 4px solid #e19c23;
  border-radius: 0 10px 10px 0;
}

.content-review-styled .m4k2-content-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  margin: 20px 0;
}

.content-review-styled .m4k2-content-body th,
.content-review-styled .m4k2-content-body td {
  min-width: 130px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.screenshots-section .screenshots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: initial;
  grid-auto-columns: initial;
  overflow: visible;
  gap: 16px;
  padding-bottom: 0;
}

.screenshots-section .screen-card {
  min-width: 0;
}

.screenshots-section .screen-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 767px) {
  .content-review-styled {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .content-review-styled .lx7q-author-card {
    padding: 16px;
  }

  .content-review-styled .m4k2-content-body {
    overflow-x: hidden;
  }

  .content-review-styled .m4k2-content-body table {
    min-width: 620px;
  }

  .screenshots-section .screenshots {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .screenshots-section .screen-card {
    width: 100%;
    max-width: 100%;
  }

  .screenshots-section .screen-card img {
    aspect-ratio: 16 / 9;
  }
}


.b7x2-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.p2n6-content {
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

.p2n6-content > .content-block,
.p2n6-content > .r5j9-review-text {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.content-review-styled {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.info-page.p2n6-content {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
}

@media (max-width: 767px) {
  .p2n6-content,
  .info-page.p2n6-content {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .p2n6-content > .content-block,
  .p2n6-content > .r5j9-review-text,
  .content-review-styled {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .slot-machine,
  .pros-grid,
  .jackpot-grid,
  .security-grid,
  .bonus-grid,
  .screenshots {
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 420px) {
  .p2n6-content,
  .info-page.p2n6-content {
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
  }
}


.p2n6-content {
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

.p2n6-content > .content-block,
.p2n6-content > .r5j9-review-text {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

@media (max-width: 767px) {
  .p2n6-content {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
  }
}


.slot-claim[hidden] {
  display: none !important;
}

.slot-claim:not([hidden]) {
  display: inline-flex !important;
}
