:root {
  --clr-header: #1d2158;
  --clr-header-dark: #161a47;
  --clr-btn-login: #96a5d1;
  --clr-btn-reg: #eaae16;
  --clr-btn-reg-hover: #d49c10;
  --clr-bg: #2d3447;
  --clr-bg-dark: #252938;
  --clr-bg-card: #343b52;
  --clr-text: #e8ecf5;
  --clr-text-muted: #9aa3c0;
  --clr-accent: #96a5d1;
  --clr-gold: #eaae16;
  --clr-border: #3e4660;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

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

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

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

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

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

.ndm-xq7 {
  display: none;
}
.wp-site-icon {
}
.entry-content {
}
.post-thumbnail {
}

#wpadminbar {
  display: none !important;
}

.ndm-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.ndm-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    background 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.ndm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.ndm-btn-login {
  background: var(--clr-btn-login);
  color: #1a1f3a;
}
.ndm-btn-login:hover {
  background: #aab8e0;
  color: #1a1f3a;
}
.ndm-btn-reg {
  background: var(--clr-btn-reg);
  color: #1a1f3a;
}
.ndm-btn-reg:hover {
  background: var(--clr-btn-reg-hover);
  color: #1a1f3a;
}
.ndm-btn-lg {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 8px;
}
.ndm-btn-hero {
  background: var(--clr-btn-reg);
  color: #1a1f3a;
  font-size: 18px;
  padding: 16px 44px;
  border-radius: 8px;
  font-weight: 700;
}
.ndm-btn-hero:hover {
  background: #d49c10;
  color: #1a1f3a;
}

.ndm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-header);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.ndm-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.ndm-logo img {
  height: 80px;
  /* width: auto; */
  display: block;
}
.ndm-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ndm-nav a {
  color: #c5cce8;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 5px;
  transition:
    background 0.2s,
    color 0.2s;
}
.ndm-nav a:hover {
  background: rgba(150, 165, 209, 0.18);
  color: #fff;
}
.ndm-header-btns {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ndm-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-text-muted);
  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.8s infinite;
}
@keyframes ndm-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.ndm-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.ndm-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.ndm-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ndm-burger.open span:nth-child(2) {
  opacity: 0;
}
.ndm-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.ndm-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--clr-header-dark);
  padding: 16px;
  gap: 8px;
  border-top: 1px solid var(--clr-border);
}
.ndm-mobile-menu.open {
  display: flex;
}
.ndm-mobile-menu a {
  color: #c5cce8;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}
.ndm-mobile-menu a:hover {
  background: rgba(150, 165, 209, 0.15);
}

.ndm-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ndm-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/casban.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.ndm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(29, 33, 88, 0.92) 0%,
    rgba(29, 33, 88, 0.55) 60%,
    rgba(29, 33, 88, 0.15) 100%
  );
  z-index: 1;
}
.ndm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 16px;
  display: grid;
  gap: 20px;
  max-width: 600px;
}
.ndm-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.ndm-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}
.ndm-hero-bonus {
  background: rgba(234, 174, 22, 0.15);
  border: 1px solid var(--clr-gold);
  border-radius: 8px;
  padding: 14px 20px;
  color: var(--clr-gold);
  font-size: 22px;
  font-weight: 700;
}
.ndm-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== BREADCRUMBS ===== */
.ndm-breadcrumbs {
  background: var(--clr-bg-dark);
  padding: 10px 0;
  font-size: 13px;
}
.ndm-breadcrumbs ol {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.ndm-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ndm-breadcrumbs li + li::before {
  content: "›";
  color: var(--clr-text-muted);
}
.ndm-breadcrumbs a {
  color: var(--clr-accent);
}
.ndm-breadcrumbs span {
  color: var(--clr-text-muted);
}

/* ===== SECTIONS ===== */
.ndm-section {
  padding: 64px 0;
}
.ndm-section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 36px;
  text-align: center;
  color: #fff;
}
.ndm-section-title span {
  color: var(--clr-gold);
}

/* ===== ADVANTAGES ===== */
.ndm-adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.ndm-adv-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.ndm-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.ndm-adv-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.ndm-adv-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.ndm-adv-card p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ===== SCREENSHOTS ===== */
.ndm-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ndm-screenshot-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--clr-border);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.ndm-screenshot-item:hover {
  border-color: var(--clr-gold);
  box-shadow: 0 0 20px rgba(234, 174, 22, 0.2);
}
.ndm-screenshot-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ===== BONUSES ===== */
.ndm-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.ndm-bonus-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.ndm-bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-accent));
}
.ndm-bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.ndm-bonus-tag {
  display: inline-block;
  background: rgba(234, 174, 22, 0.15);
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ndm-bonus-amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--clr-gold);
  margin: 8px 0;
}
.ndm-bonus-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.ndm-bonus-card p {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

/* ===== SLOT MINI-GAME ===== */
.ndm-slot-wrap {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.ndm-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: #1a1f3a;
  border: 2px solid var(--clr-gold);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.ndm-reel {
  background: #252938;
  border-radius: 8px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  position: relative;
}
.ndm-reel.spinning {
  animation: ndm-spin-reel 0.15s linear infinite;
}
@keyframes ndm-spin-reel {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-4px);
  }
  75% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}
.ndm-slot-result {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ndm-slot-win {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-gold);
  animation: ndm-fadein 0.4s ease;
}
.ndm-slot-lose {
  font-size: 16px;
  color: var(--clr-text-muted);
  animation: ndm-fadein 0.4s ease;
}
@keyframes ndm-fadein {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== REVIEW CONTENT BLOCK ===== */
.ndm-review-block {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 36px;
}
.ndm-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--clr-bg-dark);
  border-radius: 8px;
  margin-bottom: 28px;
  border: 1px solid var(--clr-border);
}
.ndm-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--clr-accent);
  object-fit: cover;
}
.ndm-author-name {
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}
.ndm-author-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-top: 3px;
}
.ndm-author-link {
  font-size: 13px;
  color: var(--clr-accent);
}

.ndm-content-inner h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: #fff;
}
.ndm-content-inner h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--clr-accent);
}
.ndm-content-inner h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 16px 0 8px;
  color: #e0e4f5;
}
.ndm-content-inner p {
  margin-bottom: 14px;
  color: var(--clr-text);
  line-height: 1.7;
}
.ndm-content-inner ul,
.ndm-content-inner ol {
  margin: 0 0 14px 24px;
}
.ndm-content-inner li {
  margin-bottom: 6px;
  color: var(--clr-text);
  line-height: 1.6;
}
.ndm-content-inner a {
  color: var(--clr-accent);
}
.ndm-content-inner a:hover {
  color: var(--clr-gold);
  text-decoration: underline;
}
.ndm-content-inner strong {
  color: var(--clr-gold);
}
.ndm-content-inner em {
  color: var(--clr-text-muted);
}
.ndm-content-inner blockquote {
  border-left: 4px solid var(--clr-gold);
  padding: 12px 20px;
  background: rgba(234, 174, 22, 0.07);
  margin: 16px 0;
  border-radius: 0 6px 6px 0;
}
.ndm-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.ndm-content-inner th {
  background: var(--clr-header);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
  border: 1px solid var(--clr-border);
}
.ndm-content-inner td {
  padding: 9px 14px;
  border: 1px solid var(--clr-border);
  font-size: 14px;
  color: var(--clr-text);
}
.ndm-content-inner tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.04);
}
.ndm-content-inner hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 24px 0;
}

/* ===== REVIEWS ===== */
.ndm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.ndm-review-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: box-shadow 0.2s;
}
.ndm-review-card:hover {
  box-shadow: var(--shadow);
}
.ndm-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.ndm-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-accent);
}
.ndm-review-name {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}
.ndm-stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.ndm-star {
  fill: var(--clr-gold);
  width: 14px;
  height: 14px;
}
.ndm-review-text {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.ndm-review-form-wrap {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 560px;
  margin: 0 auto;
}
.ndm-review-form-wrap h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.ndm-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.ndm-form-label {
  font-size: 14px;
  color: var(--clr-text-muted);
  font-weight: 500;
}
.ndm-form-input,
.ndm-form-textarea {
  background: var(--clr-bg-dark);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  color: var(--clr-text);
  font-family: inherit;
  font-size: 15px;
  padding: 10px 14px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.ndm-form-input:focus,
.ndm-form-textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(150, 165, 209, 0.15);
}
.ndm-form-textarea {
  resize: vertical;
  min-height: 100px;
}
.ndm-form-success {
  display: none;
  background: rgba(61, 220, 132, 0.1);
  border: 1px solid #3ddc84;
  border-radius: 8px;
  padding: 16px;
  color: #3ddc84;
  font-size: 15px;
  text-align: center;
  margin-top: 12px;
}

.ndm-footer {
  background: var(--clr-header-dark);
  border-top: 2px solid var(--clr-border);
  padding: 48px 0 24px;
}
.ndm-footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.ndm-footer-logo img {
  height: 84px;
  margin-bottom: 12px;
}
.ndm-footer-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.ndm-footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ndm-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ndm-footer-col a {
  font-size: 14px;
  color: var(--clr-text-muted);
  transition: color 0.2s;
}
.ndm-footer-col a:hover {
  color: var(--clr-accent);
}
.ndm-footer-logos {
  margin-bottom: 24px;
}
.ndm-footer-logos h4 {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ndm-payment-logos,
.ndm-provider-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.ndm-pay-badge,
.ndm-prov-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.ndm-footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ===== WIDGET ===== */
.ndm-widget {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  background: linear-gradient(90deg, var(--clr-header), #252b5e);
  border: 2px solid var(--clr-gold);
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: ndm-slidein 0.5s ease;
  max-width: calc(100vw - 32px);
}
@keyframes ndm-slidein {
  from {
    transform: translateX(-50%) translateY(80px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
.ndm-widget-text {
  font-size: 13px;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.ndm-widget-bonus {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-gold);
  white-space: nowrap;
}
.ndm-widget a.ndm-btn {
  text-decoration: none;
}
.ndm-widget-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text-muted);
  font-size: 18px;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.2s;
}
.ndm-widget-close:hover {
  color: #fff;
}

/* ===== SWIPER-LIKE SLIDER ===== */
.ndm-slider-wrap {
  position: relative;
  overflow: hidden;
}
.ndm-slider-track {
  display: flex;
  transition: transform 0.35s ease;
}
.ndm-slider-track > * {
  flex: 0 0 100%;
}
.ndm-slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.ndm-slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ndm-slider-btn:hover {
  background: var(--clr-btn-login);
}
.ndm-slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.ndm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: background 0.2s;
}
.ndm-dot.active {
  background: var(--clr-gold);
}

/* ===== FAQ ===== */
.ndm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ndm-faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  overflow: hidden;
}
.ndm-faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  gap: 10px;
}
.ndm-faq-q:hover {
  background: rgba(255, 255, 255, 0.04);
}
.ndm-faq-icon {
  font-size: 20px;
  color: var(--clr-gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.ndm-faq-item.open .ndm-faq-icon {
  transform: rotate(45deg);
}
.ndm-faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.2s;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
}
.ndm-faq-item.open .ndm-faq-a {
  max-height: 300px;
  padding: 0 20px 16px;
}

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

.ndm-k9q2 {
  color: transparent;
  font-size: 0;
  position: absolute;
}
.ndm-r4f8 {
}
.ndm-zx31 {
  display: none;
}
.elementor-widget-wrap {
}
.elementor-section-wrap {
}
.wp-block-group {
}
.entry-meta {
}
.has-large-font-size {
}
.wp-block-image {
}
.yoast-breadcrumbs {
}

@media (max-width: 991px) {
  .ndm-header-inner {
    grid-template-columns: auto auto 1fr;
  }
  .ndm-nav {
    display: none;
  }
  .ndm-burger {
    display: flex;
  }
  .ndm-online {
    font-size: 11px;
  }
  .ndm-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ndm-screenshots-grid {
    grid-template-columns: 1fr;
  }
  .ndm-screenshots-grid .ndm-screenshot-item:nth-child(2),
  .ndm-screenshots-grid .ndm-screenshot-item:nth-child(3) {
    display: none;
  }
}

@media (max-width: 767px) {
  .ndm-header-inner {
    grid-template-columns: auto 1fr auto auto;
  }
  .ndm-hero-content {
    padding: 60px 16px;
  }
  .ndm-section {
    padding: 48px 0;
  }
  .ndm-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ndm-review-block {
    padding: 20px;
  }
  .ndm-widget {
    padding: 10px 16px;
    gap: 10px;
  }
  .ndm-widget-text {
    display: none;
  }
  .ndm-bonus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ndm-hero h1 {
    font-size: 24px;
  }
  .ndm-hero-bonus {
    font-size: 18px;
  }
  .ndm-btn-hero {
    font-size: 15px;
    padding: 12px 28px;
  }
  .ndm-slot-wrap {
    padding: 0 8px;
  }
}
