@font-face {
  font-family: "Midas Sans";
  src: url("static/fonts/midas-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Midas Sans";
  src: url("static/fonts/midas-sans-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}

:root {
  --fm-bg: #050506;
  --fm-panel: #0d0d11;
  --fm-panel-alt: #12121a;
  --fm-gold: #d8b45b;
  --fm-gold-soft: #f0d88e;
  --fm-text: #f7f7f9;
  --fm-muted: #c8c9d0;
  --fm-border: rgba(216, 180, 91, 0.25);
  --fm-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  --fm-main-pad: clamp(16px, 2.4vw, 28px);
  --fm-rhythm: clamp(16px, 2vw, 24px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 8%, rgba(120, 0, 255, 0.2), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(255, 168, 43, 0.14), transparent 42%),
    var(--fm-bg);
  color: var(--fm-text);
  font-family: "Midas Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.52;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
picture {
  max-width: 100%;
}

.fm-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
}

.fm-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  border-right: 1px solid var(--fm-border);
  background: linear-gradient(170deg, #0f0f13, #07070a);
}

.fm-logo-wrap {
  display: block;
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
}

.fm-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.fm-sidebar-cta {
  display: grid;
  gap: 10px;
}

.fm-btn {
  border: 0;
  border-radius: 999px;
  min-height: 50px;
  min-width: 220px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.fm-btn:hover,
.fm-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(216, 180, 91, 0.33);
  filter: brightness(1.05);
}

.fm-btn:active {
  transform: translateY(0);
}

.fm-btn--primary {
  color: #1a1405;
  background: linear-gradient(180deg, #f5dd91, #d4a942);
}

.fm-btn--dark {
  color: #f4f4f7;
  background: linear-gradient(180deg, #2f2f38, #14151a);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.fm-btn--inline {
  min-height: 50px;
  min-width: 220px;
}

.fm-sidebar-nav {
  display: grid;
  gap: 5px;
  overflow: auto;
  padding-right: 6px;
}

.fm-sidebar-nav a {
  display: block;
  border-radius: 10px;
  padding: 9px 12px;
  color: var(--fm-muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.fm-sidebar-nav a:hover,
.fm-sidebar-nav a:focus-visible {
  background: rgba(216, 180, 91, 0.16);
  color: var(--fm-text);
}

.fm-sidebar-note {
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #d7d8de;
  font-size: 0.86rem;
}

.fm-content-shell {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.fm-main {
  padding: var(--fm-main-pad);
  display: flex;
  flex-direction: column;
  gap: var(--fm-rhythm);
}

.fm-section {
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(160deg, var(--fm-panel), var(--fm-panel-alt));
  box-shadow: var(--fm-shadow);
  padding: clamp(16px, 2.2vw, 24px);
}

.fm-section h2,
.fm-section h3 {
  margin: 0 0 12px;
  font-weight: 600;
}

.fm-section p {
  margin: 0 0 12px;
  color: #e7e8ef;
}

.fm-section p:last-child {
  margin-bottom: 0;
}

.fm-hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(216, 180, 91, 0.35);
  min-height: clamp(340px, 42vw, 540px);
  padding: 0;
  display: grid;
  place-items: center;
}

.fm-hero-media,
.fm-hero-media picture,
.fm-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fm-hero-media img {
  display: block;
  object-fit: cover;
}

.fm-hero-card {
  position: relative;
  z-index: 2;
  width: min(94%, 620px);
  margin: 20px;
  border-radius: 18px;
  border: 1px solid rgba(216, 180, 91, 0.35);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(2px);
  padding: clamp(16px, 2.4vw, 24px);
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.fm-hero-card h1 {
  margin: 0;
  font-size: clamp(1.55rem, 3.1vw, 2.5rem);
  font-weight: 600;
}

.fm-hero-card p {
  margin: 0;
  max-width: 52ch;
  color: #f1f2f6;
}

.fm-accordion-nav {
  padding: 0;
}

.fm-accordion-trigger {
  width: 100%;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  font-family: "Midas Sans", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  padding: 16px 20px;
  background: #13131a;
  color: #f2f2f7;
}

.fm-accordion-trigger[aria-expanded="true"] {
  border-radius: 18px 18px 0 0;
}

.fm-accordion-nav ul {
  margin: 0;
  padding: 14px 20px 20px;
  display: grid;
  gap: 9px;
  background: #111219;
  border-radius: 0 0 18px 18px;
}

.fm-accordion-nav ul[hidden] {
  display: none !important;
}

.fm-accordion-nav li {
  list-style: none;
}

.fm-accordion-nav a {
  color: #f0d997;
}

.fm-slots-grid {
  margin-top: 14px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

#nx-top-games .fm-slots-grid {
  margin-top: 0;
}

.fm-slot-card {
  position: relative;
  padding: 0;
  border-radius: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.fm-slot-card:hover,
.fm-slot-card.is-active {
  transform: translateY(-2px);
}

.fm-slot-image-wrap {
  width: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.fm-slot-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 432 / 580;
  border-radius: inherit;
}

.fm-slot-reveal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.fm-slot-actions {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: grid;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fm-slot-card.is-active .fm-slot-actions,
.fm-slot-card:hover .fm-slot-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fm-slot-card.is-active .fm-slot-reveal,
.fm-slot-card:hover .fm-slot-reveal {
  opacity: 0;
  pointer-events: none;
}

.fm-slot-action {
  min-height: 38px;
  width: 100%;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.fm-slot-action--play {
  color: #1b1405;
  background: linear-gradient(180deg, #f6df97, #d6ab48);
}

.fm-slot-action--demo {
  color: #f8f8fb;
  background: linear-gradient(180deg, #383b48, #1a1c26);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.fm-table-wrap {
  overflow-x: auto;
}

.fm-section :is(p, ul, ol) + .fm-table-wrap {
  margin-top: clamp(14px, 2vw, 24px);
}

.fm-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.95rem;
}

.fm-table th,
.fm-table td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px;
  vertical-align: top;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.fm-table th {
  color: #f3da94;
  text-align: left;
}

.fm-table--wide {
  table-layout: auto;
}

.fm-highlight-box {
  border-radius: 14px;
  border: 1px solid rgba(216, 180, 91, 0.3);
  background: rgba(216, 180, 91, 0.12);
  padding: 14px;
}

.fm-calc-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fm-calc-field {
  display: grid;
  gap: 6px;
}

.fm-calc-field label {
  font-weight: 600;
}

.fm-calc-field input {
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.32);
  color: #f8f8fb;
  padding: 0 12px;
}

[data-calc-result] {
  margin-top: clamp(16px, 2vw, 24px) !important;
  border-radius: 12px;
  border: 1px solid rgba(216, 180, 91, 0.35);
  background: rgba(216, 180, 91, 0.12);
  padding: 12px 14px;
  font-weight: 600;
}

.fm-cols {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fm-cols--security {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.fm-table--security {
  table-layout: auto;
}

.fm-table--security th {
  width: auto;
}

.fm-table--security tr > *:first-child {
  width: 40%;
}

.fm-table--security thead th {
  background: rgba(255, 255, 255, 0.03);
}

.fm-table--security tbody th {
  color: #f3da94;
}

.fm-chip-list,
.fm-check-list,
.fm-number-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.fm-pros-cons {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fm-pros-cons > div {
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.fm-cta-banner {
  position: relative;
  overflow: hidden;
  min-height: clamp(270px, 36vw, 360px);
  padding: 0;
  display: grid;
  place-items: center;
}

.fm-cta-banner picture,
.fm-cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fm-cta-banner img {
  display: block;
  object-fit: cover;
}

.fm-cta-content {
  position: relative;
  z-index: 2;
  width: min(92%, 560px);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(216, 180, 91, 0.33);
  padding: clamp(16px, 2.2vw, 24px);
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.fm-cta-content h3,
.fm-cta-content p {
  margin: 0;
}

.fm-login-stack {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.fm-auth-shot {
  display: block;
  width: 100%;
  max-width: 740px;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
}

.fm-reviews-shell {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
}

.fm-review-arrow {
  width: 42px;
  min-width: 42px;
  height: 82px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(180deg, #282b38, #141622);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.fm-review-viewport {
  min-width: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  padding: 18px;
}

.fm-review-card {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.fm-review-card.is-active {
  display: grid;
  gap: 10px;
}

.fm-review-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  color: #eed695;
  font-size: 0.92rem;
}

.fm-pay-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.fm-pay-grid > .fm-table-wrap {
  margin-top: 0 !important;
  align-self: start;
}

.fm-pay-grid > .fm-table-wrap + .fm-table-wrap {
  margin-top: 0 !important;
  align-self: start;
}

.fm-faq details {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
}

.fm-faq details + details {
  margin-top: 10px;
}

.fm-faq summary {
  cursor: pointer;
  font-weight: 600;
}

.fm-footer {
  margin: 0;
  padding: clamp(14px, 2vw, 22px) var(--fm-main-pad);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 8px;
  background: #0a0a0f;
}

.fm-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.fm-footer a {
  color: #eed695;
}

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

.fm-slot-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.76);
  padding: 14px;
  display: grid;
  place-items: center;
}

.fm-slot-modal__panel {
  width: min(960px, 96vw);
  height: min(86vh, 760px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0f1119;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  padding: 12px;
}

.fm-slot-modal__top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.fm-slot-modal__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #2c3040;
  color: #fff;
  cursor: pointer;
}

.fm-slot-modal__frame {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
  background: #0a0c13;
}

.fm-floating-bonus {
  position: fixed;
  left: calc(290px + 16px);
  right: 16px;
  bottom: 14px;
  z-index: 1300;
  border-radius: 14px;
  border: 1px solid rgba(216, 180, 91, 0.36);
  background: linear-gradient(130deg, #1a111f, #111423 64%, #1b1509);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.44);
  padding: 12px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

[data-floating-bonus-banner][hidden] {
  display: none !important;
}

.fm-floating-bonus.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.fm-floating-bonus p {
  margin: 0;
}

.fm-floating-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 0;
  background: #272a38;
  color: #f6f7fb;
  cursor: pointer;
}

.fm-contact-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.fm-contact-form label {
  display: grid;
  gap: 5px;
  font-weight: 600;
}

.fm-contact-form input,
.fm-contact-form textarea {
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 10px 12px;
}

.fm-page-cover {
  padding: 0;
  overflow: hidden;
}

.fm-page-cover picture,
.fm-page-cover img {
  display: block;
  width: 100%;
  height: auto;
}

body.fm-modal-open {
  overflow: hidden;
}

:where(main, [data-main-content], [role="main"], .cp-main, .rb-main)
  :is(
    table,
    [class*="table"],
    [class*="grid"],
    [class*="review"],
    [class*="banner"],
    [data-review-slider],
    [data-cta-banner],
    [class*="slot"]:not([data-slot-card]):not([class*="slot-card"]):not([class*="slot__card"])
  )
  + :is(p, ul, ol, div, section, article) {
  margin-top: clamp(16px, 2vw, 24px);
}

@media (max-width: 1180px) {
  .fm-layout {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .fm-slots-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fm-floating-bonus {
    left: calc(250px + 12px);
  }
}

@media (max-width: 1023px) {
  .fm-layout {
    grid-template-columns: 1fr;
  }

  .fm-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--fm-border);
    padding: 14px var(--fm-main-pad);
    display: grid;
    gap: 10px;
  }

  .fm-sidebar-nav,
  .fm-sidebar-note {
    display: none;
  }

  .fm-sidebar-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fm-btn {
    min-width: 0;
  }

  .fm-slots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fm-calc-grid,
  .fm-cols,
  .fm-pros-cons,
  .fm-pay-grid {
    grid-template-columns: 1fr;
  }

  .fm-floating-bonus {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 12px 56px 12px 12px;
  }

  .fm-floating-bonus .fm-btn {
    min-width: 0;
    width: 100%;
  }

  .fm-floating-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    z-index: 2;
  }

  .fm-review-arrow {
    width: 28px;
    min-width: 28px;
    height: 62px;
    border-radius: 10px;
  }

  .fm-reviews-shell {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 8px;
  }

  .fm-table {
    font-size: 0.86rem;
  }

  .fm-table th,
  .fm-table td {
    padding: 8px 9px;
  }

  .fm-table-wrap {
    -webkit-overflow-scrolling: touch;
  }

  .fm-table--wide {
    min-width: 680px;
    font-size: 0.84rem;
  }

  .fm-slot-modal {
    padding: 0;
  }

  .fm-slot-modal__panel {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    border: 0;
    padding: 10px;
  }

  .fm-cta-content {
    width: min(94%, 520px);
    padding: 16px;
  }
}

@media (max-width: 767px) {
  .fm-login-stack {
    gap: 12px;
  }

  .fm-auth-shot {
    max-width: none;
    border-radius: 12px;
  }

  .fm-hero {
    min-height: 320px;
  }

  .fm-hero-card {
    width: min(94%, 440px);
    padding: 16px;
  }

  .fm-btn--inline {
    min-height: 48px;
    min-width: 210px;
  }

  .fm-floating-bonus {
    padding-right: 52px;
  }

  .fm-floating-bonus .fm-btn {
    width: 100%;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .fm-slot-card:hover .fm-slot-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .fm-slot-card:hover .fm-slot-reveal {
    opacity: 0;
    pointer-events: none;
  }
}
