:root {
  --clr-header: #1d2158;
  --clr-header-dark: #181b47;
  --clr-bg: #2d3447;
  --clr-bg2: #252a3a;
  --clr-btn-login: #96a5d1;
  --clr-btn-reg: #eaae16;
  --clr-btn-reg-hover: #d49c10;
  --clr-text: #e8eaf6;
  --clr-text-muted: #a9b3c9;
  --clr-accent: #96a5d1;
  --clr-gold: #eaae16;
  --clr-card: #232840;
  --clr-border: #3a4060;
  --font-main: "Roboto", sans-serif;
  --radius: 10px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  font-size: 16px;
  min-width: 320px;
}

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

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

.ndm-x7k2 {
  display: none;
}
.ndm-z9q1 {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.ndm-wp-class {
  font-size: 0;
  line-height: 0;
}

.ndm-wp-placeholder {
  display: none;
  color: #fff;
  padding: 0;
}
.entry-content .wp-block {
  display: none;
}
.wp-site-blocks {
  display: none;
}
.ndm-fake-sidebar {
  display: none;
}

#ndm-hdr-8f3 {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

#ndm-hdr-8f3 .ndm-hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 12px;
}

.ndm-logo-wrap a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ndm-logo-wrap img {
  height: 40px;
  width: auto;
}
.ndm-logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ndm-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.ndm-nav-links li a {
  color: #c5cadf;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}
.ndm-nav-links li a:hover {
  background: rgba(150, 165, 209, 0.15);
  color: #fff;
}

.ndm-hdr-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ndm-online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: #afc3e8;
  white-space: nowrap;
}
.ndm-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 6px #3ddc84;
  animation: ndm-pulse 1.6s infinite;
}
@keyframes ndm-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.ndm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    opacity var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.ndm-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.ndm-btn:active {
  transform: translateY(0);
}

.ndm-btn-login {
  background: var(--clr-btn-login);
  color: #1a1e3a;
}
.ndm-btn-login:hover {
  background: #aab5dc;
  color: #1a1e3a;
}

.ndm-btn-reg {
  background: var(--clr-btn-reg);
  color: #1a1200;
}
.ndm-btn-reg:hover {
  background: var(--clr-btn-reg-hover);
  color: #1a1200;
}

.ndm-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 4px;
}
.ndm-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.ndm-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ndm-burger.active span:nth-child(2) {
  opacity: 0;
}
.ndm-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ndm-mobile-menu {
  display: flex;
  flex-direction: column;
  background: #1a1f4e;
  padding: 0 20px;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease,
    opacity 0.35s ease;
}

.ndm-mobile-menu.open {
  max-height: 500px;
  padding: 16px 20px;
  opacity: 1;
}

.ndm-mobile-menu a {
  color: #c5cadf;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.95rem;
}

.ndm-mobile-menu a:last-child {
  border-bottom: none;
}

.ndm-hero-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ndm-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/noBan.png");
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.ndm-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(29, 33, 88, 0.92) 40%,
    rgba(29, 33, 88, 0.45) 100%
  );
}

.ndm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}
.ndm-hero-badge {
  display: inline-block;
  background: rgba(234, 174, 22, 0.15);
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.ndm-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  max-width: 580px;
}
.ndm-hero-title span {
  color: var(--clr-gold);
}
.ndm-hero-sub {
  font-size: 1.05rem;
  color: #c5cadf;
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.65;
}
.ndm-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ndm-hero-btns .ndm-btn {
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 10px;
}
.ndm-hero-bonus-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.ndm-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.ndm-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  position: relative;
  display: inline-block;
}
.ndm-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--clr-gold);
  border-radius: 2px;
  margin-top: 6px;
}
.ndm-section-sub {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
  margin-top: 6px;
}

.ndm-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--clr-border),
    transparent
  );
  margin: 0 20px;
}

#ndm-toc-9b2 {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.ndm-toc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.ndm-toc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 0.88rem;
  color: var(--clr-accent);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}
.ndm-toc-link:hover {
  background: rgba(150, 165, 209, 0.1);
  border-color: var(--clr-accent);
  color: #fff;
  transform: translateY(-2px);
}
.ndm-toc-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

#ndm-adv-3c1 {
  background: var(--clr-bg);
}

.ndm-adv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}
.ndm-adv-card {
  flex: 1 1 260px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.ndm-adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--clr-gold);
  border-radius: 2px 0 0 2px;
  opacity: 0;
  transition: opacity var(--transition);
}
.ndm-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  border-color: rgba(150, 165, 209, 0.4);
}
.ndm-adv-card:hover::before {
  opacity: 1;
}
.ndm-adv-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.ndm-adv-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.ndm-adv-text {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

#ndm-games-4d5 {
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg2) 100%);
}
.ndm-games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}
.ndm-game-card {
  flex: 1 1 160px;
  max-width: 200px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  text-align: center;
}
.ndm-game-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.ndm-game-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #1e2340;
}
.ndm-game-info {
  padding: 12px;
}
.ndm-game-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.ndm-game-btn {
  width: 100%;
  background: var(--clr-btn-reg);
  color: #1a1200;
  font-size: 0.8rem;
  padding: 7px 10px;
  border-radius: 6px;
  font-weight: 700;
  transition:
    background var(--transition),
    transform var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  display: block;
  text-decoration: none;
}
.ndm-game-btn:hover {
  background: var(--clr-btn-reg-hover);
  transform: scale(1.03);
  color: #1a1200;
}

.ndm-games-slider-wrap {
  position: relative;
  overflow: hidden;
}
.ndm-games-slider {
  display: flex;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.ndm-games-slider .ndm-game-card {
  flex: 0 0 160px;
  max-width: 160px;
}
.ndm-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--clr-header);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition);
  user-select: none;
}
.ndm-slider-btn:hover {
  background: var(--clr-btn-login);
}
.ndm-slider-prev {
  left: -18px;
}
.ndm-slider-next {
  right: -18px;
}

#ndm-wheel-5e6 {
  background: var(--clr-bg2);
}
.ndm-wheel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.ndm-wheel-canvas-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}
#ndm-wheel-canvas {
  border-radius: 50%;
  box-shadow:
    0 0 0 6px var(--clr-header),
    0 0 0 10px var(--clr-border),
    0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.05s linear;
}
.ndm-wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 24px solid var(--clr-gold);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  z-index: 5;
}
.ndm-wheel-side {
  text-align: center;
  max-width: 280px;
}
.ndm-wheel-side h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.ndm-wheel-side p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}
#ndm-spin-btn {
  background: var(--clr-btn-reg);
  color: #1a1200;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(234, 174, 22, 0.3);
  width: 100%;
}
#ndm-spin-btn:hover:not(:disabled) {
  background: var(--clr-btn-reg-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 174, 22, 0.4);
}
#ndm-spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ndm-wheel-result {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  text-align: center;
  display: none;
  animation: ndm-fadein 0.4s ease;
}
.ndm-wheel-result.win {
  display: block;
  background: linear-gradient(
    135deg,
    rgba(61, 220, 132, 0.12),
    rgba(61, 220, 132, 0.05)
  );
  border: 1px solid rgba(61, 220, 132, 0.4);
}
.ndm-wheel-result.lose {
  display: block;
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.3);
}
.ndm-wheel-result .ndm-result-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.ndm-wheel-result.win .ndm-result-title {
  color: #3ddc84;
}
.ndm-wheel-result.lose .ndm-result-title {
  color: #ff7070;
}
.ndm-wheel-result p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}
.ndm-result-claim {
  display: inline-block;
  margin-top: 12px;
  background: var(--clr-btn-reg);
  color: #1a1200;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--transition);
}
.ndm-result-claim:hover {
  background: var(--clr-btn-reg-hover);
  color: #1a1200;
}

@keyframes ndm-fadein {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#ndm-review-6f7 {
  background: var(--clr-bg);
}
.ndm-review-inner {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-top: 24px;
}

.ndm-review-inner h1,
.ndm-review-inner h2,
.ndm-review-inner h3,
.ndm-review-inner h4,
.ndm-review-inner h5,
.ndm-review-inner h6 {
  color: #fff;
  margin-top: 24px;
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: 700;
}
.ndm-review-inner h1 {
  font-size: 1.7rem;
}
.ndm-review-inner h2 {
  font-size: 1.4rem;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 6px;
}
.ndm-review-inner h3 {
  font-size: 1.15rem;
}
.ndm-review-inner p {
  margin-bottom: 14px;
  color: var(--clr-text);
  line-height: 1.7;
}
.ndm-review-inner ul,
.ndm-review-inner ol {
  margin: 0 0 14px 22px;
  color: var(--clr-text);
}
.ndm-review-inner li {
  margin-bottom: 6px;
  line-height: 1.6;
}
.ndm-review-inner a {
  color: var(--clr-accent);
}
.ndm-review-inner a:hover {
  color: var(--clr-gold);
}
.ndm-review-inner strong {
  color: var(--clr-gold);
  font-weight: 700;
}
.ndm-review-inner em {
  color: #bbc5e0;
  font-style: italic;
}
.ndm-review-inner blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 10px 16px;
  margin: 16px 0;
  background: rgba(234, 174, 22, 0.05);
  border-radius: 0 8px 8px 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.ndm-review-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
  overflow-x: auto;
  display: block;
}
.ndm-review-inner thead {
  background: var(--clr-header);
}
.ndm-review-inner th {
  padding: 10px 14px;
  text-align: left;
  color: var(--clr-accent);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}
.ndm-review-inner td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.88rem;
  color: var(--clr-text);
  text-align: left;
}
.ndm-review-inner tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.ndm-review-inner img {
  border-radius: 8px;
  margin: 10px 0;
}
.ndm-review-inner hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 24px 0;
}

#ndm-author-7g8 {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
}
.ndm-author-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.ndm-author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-gold);
  flex-shrink: 0;
}
.ndm-author-info {
  flex: 1;
  min-width: 200px;
}
.ndm-author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.ndm-author-title {
  font-size: 0.82rem;
  color: var(--clr-gold);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ndm-author-bio {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.ndm-author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ndm-author-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(150, 165, 209, 0.1);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--clr-accent);
  transition:
    background var(--transition),
    border-color var(--transition);
}
.ndm-author-link:hover {
  background: rgba(150, 165, 209, 0.2);
  border-color: var(--clr-accent);
  color: #fff;
}
.ndm-author-link svg {
  width: 14px;
  height: 14px;
}

#ndm-footer-9h0 {
  background: var(--clr-header);
  border-top: 2px solid var(--clr-border);
}
.ndm-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 24px;
}
.ndm-footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}
.ndm-footer-logo img {
  height: 36px;
  width: auto;
}
.ndm-footer-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 6px;
}
.ndm-footer-links-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
  font-weight: 700;
}
.ndm-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ndm-footer-links a {
  font-size: 0.88rem;
  color: #99a8c8;
}
.ndm-footer-links a:hover {
  color: var(--clr-gold);
}

.ndm-footer-logos-row {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}
.ndm-footer-logos-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-muted);
  margin-bottom: 10px;
}
.ndm-footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.ndm-payment-badge,
.ndm-provider-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ccd3e8;
  white-space: nowrap;
  transition: background var(--transition);
}
.ndm-payment-badge:hover,
.ndm-provider-badge:hover {
  background: rgba(255, 255, 255, 0.14);
}

.ndm-footer-bottom {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--clr-border);
}
.ndm-footer-copy {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.ndm-footer-legal {
  font-size: 0.75rem;
  color: #6b7a99;
  margin-top: 6px;
  line-height: 1.6;
}
.ndm-footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #6b7a99;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7a99;
  margin: 8px auto 0;
}

#ndm-widget-1a2 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #1d2158 0%, #252a3a 100%);
  border-top: 2px solid var(--clr-gold);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ndm-widget-text {
  font-size: 0.85rem;
  color: #c5cadf;
  flex: 1;
  min-width: 0;
}
.ndm-widget-text strong {
  color: var(--clr-gold);
  display: block;
  font-size: 0.95rem;
}
.ndm-widget-close {
  background: transparent;
  border: none;
  color: #6b7a99;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.ndm-widget-close:hover {
  color: #fff;
}
.ndm-widget-btn {
  background: var(--clr-btn-reg);
  color: #1a1200;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background var(--transition),
    transform var(--transition);
  box-shadow: 0 3px 12px rgba(234, 174, 22, 0.35);
}
.ndm-widget-btn:hover {
  background: var(--clr-btn-reg-hover);
  transform: translateY(-1px);
  color: #1a1200;
}

body.widget-open {
  padding-bottom: 68px;
}

@media (max-width: 991px) {
  .ndm-nav-links {
    display: none;
  }
  .ndm-burger {
    display: flex;
  }
  .ndm-hdr-online-desktop {
    display: none;
  }
}
@media (max-width: 600px) {
  .ndm-hdr-inner {
    padding: 0 12px;
    height: 58px;
  }
  .ndm-hero-content {
    padding: 40px 16px;
  }
  .ndm-section {
    padding: 40px 14px;
  }
  .ndm-review-inner {
    padding: 18px 14px;
  }
  .ndm-adv-card {
    flex: 1 1 100%;
  }
  .ndm-games-grid {
    display: none;
  }
  .ndm-games-slider-wrap {
    display: block;
  }
  .ndm-widget-text span.ndm-widget-sub {
    display: none;
  }
  .ndm-footer-top {
    flex-direction: column;
  }
}
@media (min-width: 601px) {
  .ndm-games-slider-wrap {
    display: none;
  }
  .ndm-games-grid {
    display: flex;
  }
}

.ndm-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ndm-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.ndm-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.ndm-bonus-tag {
  display: inline-block;
  background: linear-gradient(90deg, #eaae16, #f5c842);
  color: #1a1200;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

.ndm-rating-stars {
  color: var(--clr-gold);
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 4px;
}

.ndm-scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--clr-header);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  color: var(--clr-accent);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition);
  z-index: 8000;
}
.ndm-scroll-top.show {
  opacity: 1;
  pointer-events: all;
}
.ndm-scroll-top:hover {
  transform: translateY(-3px);
  background: var(--clr-btn-login);
  color: #1a1e3a;
}

.ndm-wp-head-placeholder {
  display: none;
}
.wp-content-placeholder {
  display: none;
}
.elementor-widget {
  display: none;
}
.ndm-x7k2-fake {
  position: absolute;
  left: -99999px;
  width: 1px;
  height: 1px;
}
