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

:root {
  --clr-header: #1d2158;
  --clr-header-d: #171a45;
  --clr-bg: #2d3447;
  --clr-bg-l: #343b52;
  --clr-bg-card: #252b3b;
  --clr-btn-blue: #96a5d1;
  --clr-btn-gold: #eaae16;
  --clr-btn-goldd: #c98f00;
  --clr-text: #e8eaf6;
  --clr-muted: #a0aabf;
  --clr-white: #ffffff;
  --clr-accent: #96a5d1;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-btn-gold);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.text-center {
  text-align: center;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.03em;
}
.section-title span {
  color: var(--clr-btn-gold);
}

.btn-nm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.35rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.2s;
  white-space: nowrap;
}
.btn-nm:active {
  transform: scale(0.96);
}

.btn-login {
  background: var(--clr-btn-blue);
  color: var(--clr-header);
}
.btn-login:hover {
  filter: brightness(1.12);
  color: var(--clr-header);
}

.btn-signup {
  background: var(--clr-btn-gold);
  color: #1a1200;
}
.btn-signup:hover {
  background: #f2bb1e;
  box-shadow: 0 0 18px rgba(234, 174, 22, 0.55);
  color: #1a1200;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-btn-blue);
  color: var(--clr-btn-blue);
}
.btn-outline:hover {
  background: var(--clr-btn-blue);
  color: var(--clr-header);
}

.btn-play {
  background: var(--clr-btn-gold);
  color: #1a1200;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
}
.btn-play:hover {
  background: #f2bb1e;
  color: #1a1200;
}

.nm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-header);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.nm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.nm-header__logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.nm-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}
.nm-nav a {
  color: var(--clr-text);
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
}
.nm-nav a:hover {
  background: rgba(150, 165, 209, 0.18);
  color: var(--clr-white);
}

.nm-header__right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.nm-online {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--clr-muted);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}
.nm-online__dot {
  width: 8px;
  height: 8px;
  background: #4cdc75;
  border-radius: 50%;
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 220, 117, 0.6);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(76, 220, 117, 0);
  }
}

.nm-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nm-burger span {
  display: block;
  height: 3px;
  background: var(--clr-white);
  border-radius: 3px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.nm-burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nm-burger.active span:nth-child(2) {
  opacity: 0;
}
.nm-burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav */
.nm-nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--clr-header-d);
  padding: 1rem 1.5rem;
  gap: 0.5rem;
}
.nm-nav-mobile a {
  color: var(--clr-text);
  font-size: 0.95rem;
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nm-nav-mobile a:last-child {
  border-bottom: none;
}
.nm-nav-mobile.open {
  display: flex;
}

.nm-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-header);
}
.nm-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/mban.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.nm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(29, 33, 88, 0.92) 0%,
    rgba(29, 33, 88, 0.3) 100%
  );
}
.nm-hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
  max-width: 640px;
}
.nm-hero__content h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--clr-white);
  margin-bottom: 1rem;
}
.nm-hero__content h1 span {
  color: var(--clr-btn-gold);
}
.nm-hero__content p {
  font-size: 1.05rem;
  color: var(--clr-text);
  margin-bottom: 1.8rem;
  line-height: 1.65;
}
.nm-hero__btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.nm-jackpots {
  padding: 3.5rem 1.5rem;
  background: var(--clr-bg-l);
}
.nm-jackpots__grid {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.nm-jackpot-card {
  background: var(--clr-bg-card);
  border: 1px solid rgba(150, 165, 209, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
  text-align: center;
  min-width: 190px;
  flex: 1 1 190px;
  max-width: 260px;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.nm-jackpot-card::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 90px;
  height: 90px;
  background: radial-gradient(
    circle,
    rgba(234, 174, 22, 0.2) 0%,
    transparent 70%
  );
}
.nm-jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}
.nm-jackpot-card__icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.nm-jackpot-card__name {
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nm-jackpot-card__amount {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--clr-btn-gold);
  font-variant-numeric: tabular-nums;
}
.nm-jackpot-card__label {
  font-size: 0.78rem;
  color: var(--clr-muted);
  margin-top: 0.25rem;
}

.nm-screenshots {
  padding: 3.5rem 1.5rem;
  background: var(--clr-bg);
}
.nm-screenshots__grid {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.nm-screenshot-item {
  flex: 1 1 280px;
  max-width: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(150, 165, 209, 0.18);
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.nm-screenshot-item:hover {
  transform: scale(1.025);
  border-color: var(--clr-btn-gold);
}
.nm-screenshot-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

/* Swiper overrides (screenshots mobile) */
.nm-swiper-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.nm-swiper-track {
  display: flex;
  transition: transform 0.35s ease;
}
.nm-swiper-slide {
  flex: 0 0 85vw;
  max-width: 340px;
  padding: 0 0.5rem;
}
.nm-swiper-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.nm-swiper-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clr-muted);
  cursor: pointer;
  transition: background 0.2s;
}
.nm-swiper-dot.active {
  background: var(--clr-btn-gold);
}

.nm-video {
  padding: 3.5rem 1.5rem;
  background: var(--clr-bg-l);
}
.nm-video__wrap {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.nm-video__wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.nm-slots {
  padding: 3.5rem 1.5rem;
  background: var(--clr-bg);
}
.nm-slots__grid {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.nm-slot-card {
  background: var(--clr-bg-card);
  border: 1px solid rgba(150, 165, 209, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  flex: 1 1 150px;
  max-width: 190px;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.nm-slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-btn-blue);
}
.nm-slot-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.nm-slot-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
/* Slots swiper mobile */
.nm-slots-swiper .nm-swiper-slide {
  flex: 0 0 70vw;
  max-width: 200px;
}

/* ===================== WHEEL ===================== */
.nm-wheel-section {
  padding: 3.5rem 1.5rem;
  background: var(--clr-bg-l);
}
.nm-wheel__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.nm-wheel-canvas-wrap {
  position: relative;
  width: 300px;
  height: 300px;
}
#nm-wheel-canvas {
  border-radius: 50%;
  box-shadow:
    0 0 0 6px var(--clr-header),
    0 0 0 10px var(--clr-btn-gold),
    var(--shadow);
  display: block;
}
.nm-wheel-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  color: var(--clr-header);
  pointer-events: none;
  font-weight: 900;
}
.nm-wheel-marker {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--clr-btn-gold);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.nm-wheel-result {
  display: none;
  text-align: center;
  background: var(--clr-bg-card);
  border: 2px solid var(--clr-btn-gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  animation: fadeInUp 0.4s ease;
}
.nm-wheel-result.show {
  display: block;
}
.nm-wheel-result__title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--clr-btn-gold);
  margin-bottom: 0.5rem;
}
.nm-wheel-result__text {
  color: var(--clr-text);
  margin-bottom: 1rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nm-review {
  padding: 3.5rem 1.5rem;
  background: var(--clr-bg);
}
.nm-review__body {
  max-width: 860px;
  margin: 0 auto;
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}
.nm-review__body h2,
.nm-review__body h3,
.nm-review__body h4 {
  color: var(--clr-white);
  margin: 1.6rem 0 0.75rem;
  line-height: 1.3;
}
.nm-review__body h2 {
  font-size: 1.4rem;
  border-left: 4px solid var(--clr-btn-gold);
  padding-left: 0.75rem;
}
.nm-review__body h3 {
  font-size: 1.15rem;
  color: var(--clr-btn-blue);
}
.nm-review__body h4 {
  font-size: 1rem;
}
.nm-review__body p {
  margin-bottom: 1rem;
  color: var(--clr-text);
  line-height: 1.7;
}
.nm-review__body ul,
.nm-review__body ol {
  margin: 0.75rem 0 1rem 1.4rem;
  color: var(--clr-text);
}
.nm-review__body ul li,
.nm-review__body ol li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}
.nm-review__body ul li::marker {
  color: var(--clr-btn-gold);
}
.nm-review__body a {
  color: var(--clr-btn-blue);
}
.nm-review__body a:hover {
  color: var(--clr-btn-gold);
}
.nm-review__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem auto;
  font-size: 0.93rem;
  overflow-x: auto;
  display: block;
}
.nm-review__body th {
  background: var(--clr-header);
  color: var(--clr-white);
  padding: 0.65rem 0.9rem;
  text-align: left;
  border: 1px solid rgba(150, 165, 209, 0.3);
  font-weight: 700;
}
.nm-review__body td {
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(150, 165, 209, 0.2);
  color: var(--clr-text);
  text-align: left;
}
.nm-review__body tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.04);
}
.nm-review__body blockquote {
  border-left: 4px solid var(--clr-btn-gold);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  background: rgba(234, 174, 22, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--clr-muted);
}
.nm-review__body strong {
  color: var(--clr-white);
}
.nm-review__body hr {
  border: none;
  border-top: 1px solid rgba(150, 165, 209, 0.15);
  margin: 1.5rem 0;
}

.nm-author {
  padding: 3rem 1.5rem;
  background: var(--clr-bg-l);
}
.nm-author__card {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(150, 165, 209, 0.18);
}
.nm-author__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--clr-btn-gold);
}
.nm-author__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.3rem;
}
.nm-author__role {
  font-size: 0.82rem;
  color: var(--clr-btn-gold);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nm-author__bio {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.nm-author__links {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.nm-author__links a {
  font-size: 0.83rem;
  background: rgba(150, 165, 209, 0.15);
  border: 1px solid rgba(150, 165, 209, 0.3);
  color: var(--clr-btn-blue);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  transition:
    background var(--transition),
    color var(--transition);
}
.nm-author__links a:hover {
  background: var(--clr-btn-blue);
  color: var(--clr-header);
}

.nm-footer {
  background: var(--clr-header);
  padding: 2.5rem 1.5rem 1.2rem;
}
.nm-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(150, 165, 209, 0.18);
}
.nm-footer__logo img {
  height: 42px;
  width: auto;
  margin-bottom: 0.65rem;
}
.nm-footer__desc {
  font-size: 0.83rem;
  color: var(--clr-muted);
  max-width: 280px;
  line-height: 1.6;
}
.nm-footer__col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nm-footer__col ul {
  list-style: none;
}
.nm-footer__col ul li {
  margin-bottom: 0.4rem;
}
.nm-footer__col ul li a {
  font-size: 0.85rem;
  color: var(--clr-muted);
}
.nm-footer__col ul li a:hover {
  color: var(--clr-btn-gold);
}

.nm-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.nm-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(150, 165, 209, 0.2);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  color: var(--clr-text);
  font-weight: 500;
}
.nm-badge--pay {
  border-color: rgba(76, 220, 117, 0.3);
  color: #9effc0;
}
.nm-badge--prov {
  border-color: rgba(150, 165, 209, 0.35);
  color: var(--clr-accent);
}

.nm-footer__bottom {
  text-align: center;
  font-size: 0.78rem;
  color: var(--clr-muted);
  line-height: 1.7;
}
.nm-footer__bottom p {
  margin-bottom: 0.3rem;
}

.nm-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--clr-header);
  border-top: 3px solid var(--clr-btn-gold);
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
}
.nm-widget__text {
  font-size: 0.9rem;
  color: var(--clr-text);
  line-height: 1.4;
}
.nm-widget__text strong {
  color: var(--clr-btn-gold);
  display: block;
  font-size: 1.05rem;
}
.nm-widget a.btn-nm {
  text-decoration: none;
}

.wp-block-group,
.entry-content,
.elementor-section,
.wp-post-image,
.wp-caption,
.alignright,
.alignleft,
.wp-block-image,
.wp-block-columns {
}
.wpseo-score,
.yoast-seo-score {
  display: none;
  visibility: hidden;
}
[data-elementor-type],
[data-elementor-id] {
}

.a8f2c1 {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: -9999px;
}
.b3x9r7 {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: -9999px;
}
.c5w2q8 {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: -9999px;
}

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
.nm-jackpot-card__amount {
  background: linear-gradient(
    90deg,
    var(--clr-btn-gold) 25%,
    #fff5a0 50%,
    var(--clr-btn-gold) 75%
  );
  background-size: 400px 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2.4s infinite linear;
}
@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nm-hero__content {
  animation: float-in 0.8s ease both;
}

@media (max-width: 900px) {
  .nm-nav {
    display: none;
  }
  .nm-burger {
    display: flex;
  }
  .nm-author__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nm-author__links {
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .nm-screenshots__grid {
    display: none;
  }
  .nm-screenshots .nm-swiper-wrap {
    display: block;
  }
  .nm-slots__grid {
    display: none;
  }
  .nm-slots .nm-swiper-wrap {
    display: block;
  }
  .nm-widget {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
@media (min-width: 701px) {
  .nm-screenshots .nm-swiper-wrap {
    display: none;
  }
  .nm-slots .nm-swiper-wrap {
    display: none;
  }
}
@media (max-width: 480px) {
  .nm-hero {
    min-height: 380px;
  }
  .nm-wheel-canvas-wrap {
    width: 260px;
    height: 260px;
  }
  #nm-wheel-canvas {
    width: 260px !important;
    height: 260px !important;
  }
}
body {
  padding-bottom: 70px;
}
