/* =========================================================
   Nomad Casino — Main Stylesheet | ver 1.7
   ========================================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --nm-header-bg: #1d2158;
  --nm-footer-bg: #1a1e4a;
  --nm-body-bg: #2d3447;
  --nm-btn-login: #96a5d1;
  --nm-btn-register: #eaae16;
  --nm-btn-register-hover: #f5c842;
  --nm-text-light: #e8ecf7;
  --nm-text-muted: #a0aac4;
  --nm-text-accent: #96a5d1;
  --nm-block-bg: #232940;
  --nm-block-bg-2: #1e2340;
  --nm-border: rgba(150,165,209,0.15);
  --nm-radius: 12px;
  --nm-radius-sm: 8px;
  --nm-transition: 0.25s ease;
  --nm-gold: #eaae16;
  --nm-green: #22c55e;
  --nm-red: #ef4444;
  font-size: 16px;
}

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

body {
  font-family: 'Roboto', sans-serif;
  background: var(--nm-body-bg);
  color: var(--nm-text-light);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* Unused style hooks for uniqualization */
.nm-qf9x2 { display: none !important; }
.nm-r7p1 { visibility: hidden; position: absolute; top: -9999px; }
.nm-z3k8 { opacity: 0; pointer-events: none; height: 0; overflow: hidden; }

/* --- Buttons --- */
.btn { border-radius: var(--nm-radius-sm); font-weight: 600; transition: all var(--nm-transition); border: none; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }

.nm-btn-login {
  background: var(--nm-btn-login);
  color: #fff;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
}
.nm-btn-login:hover { background: #7e90c4; color: #fff; transform: translateY(-1px); }

.nm-btn-register {
  background: var(--nm-btn-register);
  color: #1a1a1a;
  padding: 0.45rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.nm-btn-register:hover { background: var(--nm-btn-register-hover); color: #1a1a1a; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(234,174,22,0.4); }

.nm-btn-hero-reg {
  background: var(--nm-btn-register);
  color: #1a1a1a;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--nm-radius);
  text-decoration: none;
}
.nm-btn-hero-reg:hover { background: var(--nm-btn-register-hover); color: #1a1a1a; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(234,174,22,0.5); }

.nm-btn-hero-review {
  background: transparent;
  color: var(--nm-text-light);
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--nm-radius);
  border: 2px solid rgba(232,236,247,0.4);
  text-decoration: none;
}
.nm-btn-hero-review:hover { border-color: var(--nm-text-light); background: rgba(232,236,247,0.08); color: var(--nm-text-light); }

.nm-btn-spin {
  background: var(--nm-btn-register);
  color: #1a1a1a;
  padding: 0.9rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--nm-radius);
  min-width: 180px;
}
.nm-btn-spin:hover:not(:disabled) { background: var(--nm-btn-register-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(234,174,22,0.4); }
.nm-btn-spin:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Pulse animation */
@keyframes nm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234,174,22,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(234,174,22,0); }
}
.nm-pulse { animation: nm-pulse 2s infinite; }

/* --- Header --- */
.nm-sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nm-header-bg);
  border-bottom: 1px solid rgba(150,165,209,0.2);
}
.nm-header { background: var(--nm-header-bg); }
.nm-header-inner {
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
}

.nm-logo-img { max-height: 48px; width: auto; }
.nm-footer-logo { max-height: 42px; width: auto; }

.nm-desktop-nav { gap: 0.2rem; }
.nm-nav-link {
  color: var(--nm-text-light);
  font-size: 0.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--nm-radius-sm);
  transition: background var(--nm-transition), color var(--nm-transition);
  text-decoration: none;
  white-space: nowrap;
}
.nm-nav-link:hover { background: rgba(150,165,209,0.15); color: var(--nm-gold); }

.nm-online-dot {
  width: 8px;
  height: 8px;
  background: var(--nm-green);
  border-radius: 50%;
  display: inline-block;
  animation: nm-blink 1.5s ease-in-out infinite;
}
@keyframes nm-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.nm-online-text { font-size: 0.8rem; color: var(--nm-text-muted); white-space: nowrap; }
.nm-online-num { color: var(--nm-green); font-weight: 700; }

.nm-header-buttons { gap: 0.5rem; flex-shrink: 0; }

/* Burger */
.nm-burger {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.nm-burger-line {
  width: 24px;
  height: 2px;
  background: var(--nm-text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.nm-burger.active .nm-burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nm-burger.active .nm-burger-line:nth-child(2) { opacity: 0; }
.nm-burger.active .nm-burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nm-mobile-menu {
  background: var(--nm-header-bg);
  border-top: 1px solid rgba(150,165,209,0.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.2rem;
}
.nm-mobile-menu.open { max-height: 400px; padding: 1rem 1.2rem; }
.nm-mobile-nav { display: flex; flex-direction: column; gap: 0.2rem; }
.nm-mobile-link {
  color: var(--nm-text-light);
  padding: 0.6rem 0.8rem;
  border-radius: var(--nm-radius-sm);
  font-size: 1rem;
  text-decoration: none;
  display: block;
}
.nm-mobile-link:hover { background: rgba(150,165,209,0.1); color: var(--nm-gold); }
.nm-mobile-counter { padding: 0.4rem 0.8rem; }

/* --- Hero --- */
.nm-hero-section {
  position: relative;
  min-height: clamp(420px, 60vh, 680px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.nm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,33,88,0.88) 0%, rgba(45,52,71,0.75) 100%);
}
.nm-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1rem 5rem;
}
.nm-hero-badge {
  display: inline-block;
  background: rgba(150,165,209,0.2);
  border: 1px solid rgba(150,165,209,0.4);
  color: var(--nm-text-accent);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nm-hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0.5rem 0 0.3rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.nm-hero-subtitle {
  font-size: 1.1rem;
  color: var(--nm-text-accent);
  font-weight: 500;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nm-hero-bonus {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--nm-gold);
  text-shadow: 0 2px 20px rgba(234,174,22,0.5);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.nm-hero-desc {
  color: rgba(232,236,247,0.8);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.nm-hero-legal {
  color: rgba(232,236,247,0.45);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.nm-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.nm-hero-wave svg { width: 100%; display: block; }

/* --- Content blocks --- */
.nm-block {
  border-radius: var(--nm-radius);
  background: var(--nm-block-bg);
  border: 1px solid var(--nm-border);
  padding: 2rem;
}
.nm-block-title {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  text-balance: balance;
}
.nm-block-subtitle {
  color: var(--nm-text-muted);
  font-size: 0.95rem;
}

/* Pros & Cons */
.nm-pros-card, .nm-cons-card {
  border-radius: var(--nm-radius);
  padding: 1.5rem;
  border: 1px solid var(--nm-border);
}
.nm-pros-card { background: rgba(34,197,94,0.06); border-color: rgba(34,197,94,0.2); }
.nm-cons-card { background: rgba(239,68,68,0.06); border-color: rgba(239,68,68,0.2); }

.nm-pc-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--nm-border);
}
.nm-pros-header { color: var(--nm-green); }
.nm-cons-header { color: var(--nm-red); }

.nm-pc-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.nm-pc-item {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--nm-text-light);
  line-height: 1.45;
}
.nm-pro-item::before { content: '✓'; color: var(--nm-green); position: absolute; left: 0; font-weight: 700; }
.nm-con-item::before { content: '✗'; color: var(--nm-red); position: absolute; left: 0; font-weight: 700; }

/* Jackpots */
.nm-jackpot-card {
  background: var(--nm-block-bg-2);
  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius);
  padding: 1.5rem 1rem;
  transition: transform var(--nm-transition), border-color var(--nm-transition);
}
.nm-jackpot-card:hover { transform: translateY(-4px); border-color: rgba(234,174,22,0.4); }
.nm-jackpot-icon { margin-bottom: 0.8rem; display: flex; justify-content: center; }
.nm-jackpot-name { font-weight: 700; font-size: 1rem; color: var(--nm-text-light); margin-bottom: 0.4rem; }
.nm-jackpot-amount {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 900;
  color: var(--nm-gold);
  line-height: 1.1;
  animation: nm-count-flicker 0.15s;
}
@keyframes nm-count-flicker { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
.nm-jackpot-currency { font-size: 0.8rem; color: var(--nm-text-muted); margin-top: 0.2rem; }

/* Tournaments */
.nm-tournaments-swiper { overflow: hidden; }
.nm-swiper-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .nm-swiper-track { display: flex; transition: transform 0.4s ease; }
  .nm-swiper-slide { min-width: 100%; }
}

.nm-tour-card {
  background: var(--nm-block-bg-2);
  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--nm-transition), transform var(--nm-transition);
}
.nm-tour-card:hover { border-color: rgba(234,174,22,0.35); transform: translateY(-3px); }

.nm-tour-badge {
  display: inline-block;
  background: rgba(150,165,209,0.15);
  color: var(--nm-text-accent);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  width: fit-content;
}
.nm-tour-badge--crash { background: rgba(234,174,22,0.15); color: var(--nm-gold); }
.nm-tour-badge--live { background: rgba(34,197,94,0.15); color: var(--nm-green); }

.nm-tour-name { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.nm-tour-desc { font-size: 0.9rem; color: var(--nm-text-muted); line-height: 1.5; flex: 1; margin-bottom: 1rem; }

.nm-tour-meta { display: flex; flex-direction: column; gap: 0.5rem; }
.nm-tour-prize-row, .nm-tour-timer-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }
.nm-tour-prize-label, .nm-tour-timer-label { color: var(--nm-text-muted); }
.nm-tour-prize { font-weight: 700; color: var(--nm-gold); }
.nm-tour-timer { font-weight: 700; color: var(--nm-text-accent); font-variant-numeric: tabular-nums; }

.nm-swiper-dots { display: flex; justify-content: center; gap: 0.5rem; }
.nm-swiper-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--nm-text-muted);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--nm-transition), width var(--nm-transition);
}
.nm-swiper-dot.active { background: var(--nm-gold); width: 20px; border-radius: 4px; }

/* Wheel of Fortune */
.nm-wheel-wrapper { max-width: 420px; margin: 0 auto; }
.nm-wheel-area { position: relative; display: flex; justify-content: center; align-items: flex-start; }
.nm-wheel-pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  filter: drop-shadow(0 2px 6px rgba(234,174,22,0.6));
}
#nm-wheel-canvas { border-radius: 50%; box-shadow: 0 0 40px rgba(234,174,22,0.2), 0 0 0 6px rgba(150,165,209,0.15); display: block; max-width: 100%; }

.nm-wheel-result {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--nm-radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
  margin-top: 1.2rem;
  animation: nm-fade-in 0.4s ease;
}
.nm-wheel-result.loss {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.3);
}
@keyframes nm-fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.nm-wheel-legal { font-size: 0.75rem; color: var(--nm-text-muted); }

/* Reviews */
.nm-review-card {
  background: var(--nm-block-bg-2);
  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius);
  padding: 1.3rem;
  height: 100%;
  transition: border-color var(--nm-transition), transform var(--nm-transition);
}
.nm-review-card:hover { border-color: rgba(234,174,22,0.3); transform: translateY(-3px); }
.nm-review-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(150,165,209,0.3); flex-shrink: 0; }
.nm-review-author { font-weight: 700; font-size: 0.95rem; color: #fff; }
.nm-review-stars { display: flex; gap: 2px; margin-top: 3px; }
.nm-review-text { font-size: 0.9rem; color: var(--nm-text-muted); line-height: 1.55; }

/* Review form */
.nm-review-form-wrap {
  background: var(--nm-block-bg-2);
  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius);
  padding: 1.8rem;
  max-width: 600px;
  margin: 0 auto;
}
.nm-form { display: flex; flex-direction: column; gap: 0; }
.nm-form-label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--nm-text-light); margin-bottom: 0.4rem; }
.nm-form-control {
  width: 100%;
  background: rgba(29,33,88,0.6);
  border: 1px solid rgba(150,165,209,0.25);
  border-radius: var(--nm-radius-sm);
  color: var(--nm-text-light);
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--nm-transition), box-shadow var(--nm-transition);
}
.nm-form-control::placeholder { color: var(--nm-text-muted); }
.nm-form-control:focus { outline: none; border-color: var(--nm-btn-login); box-shadow: 0 0 0 3px rgba(150,165,209,0.15); }
.nm-form-control:invalid:not(:placeholder-shown) { border-color: var(--nm-red); }
textarea.nm-form-control { resize: vertical; min-height: 110px; }

.nm-star-picker { display: flex; gap: 4px; }
.nm-star-btn {
  background: transparent;
  border: none;
  color: var(--nm-text-muted);
  padding: 4px;
  cursor: pointer;
  transition: color var(--nm-transition), transform var(--nm-transition);
}
.nm-star-btn:hover, .nm-star-btn.active { color: var(--nm-gold); transform: scale(1.15); }

.nm-form-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--nm-radius-sm);
  color: var(--nm-green);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

/* Author box */
.nm-author-box {
  background: rgba(29,33,88,0.5);
  border: 1px solid rgba(150,165,209,0.15);
  border-radius: var(--nm-radius-sm);
  padding: 0.9rem 1rem;
}
.nm-author-avatar { border-radius: 50%; object-fit: cover; border: 2px solid rgba(150,165,209,0.3); flex-shrink: 0; }
.nm-author-name { font-weight: 600; font-size: 0.95rem; color: var(--nm-text-light); }
.nm-author-link { color: var(--nm-text-accent); text-decoration: none; }
.nm-author-link:hover { color: var(--nm-gold); text-decoration: underline; }
.nm-author-desc { font-size: 0.82rem; color: var(--nm-text-muted); margin-top: 2px; }

/* Review section block */
.nm-review-section .nm-block-inner {
  background: var(--nm-block-bg);
  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius);
}

/* Article content — bare HTML styling */
#nm-article-content h1, #nm-article-content h2, #nm-article-content h3,
#nm-article-content h4, #nm-article-content h5, #nm-article-content h6 {
  color: #fff;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.6em;
  line-height: 1.25;
}
#nm-article-content h1 { font-size: clamp(1.4rem, 3vw, 2rem); }
#nm-article-content h2 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); border-bottom: 1px solid var(--nm-border); padding-bottom: 0.4em; }
#nm-article-content h3 { font-size: 1.15rem; }
#nm-article-content p { color: var(--nm-text-muted); margin-bottom: 1em; line-height: 1.7; }
#nm-article-content strong, #nm-article-content b { color: var(--nm-text-light); font-weight: 700; }
#nm-article-content em, #nm-article-content i { color: var(--nm-text-accent); }
#nm-article-content a { color: var(--nm-text-accent); }
#nm-article-content a:hover { color: var(--nm-gold); }
#nm-article-content ul, #nm-article-content ol { margin: 0.8em 0 1em 1.4em; color: var(--nm-text-muted); }
#nm-article-content li { margin-bottom: 0.4em; line-height: 1.55; }
#nm-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em auto;
  font-size: 0.93rem;
  overflow-x: auto;
  display: block;
}
#nm-article-content th {
  background: rgba(29,33,88,0.8);
  color: var(--nm-text-light);
  padding: 0.65rem 0.9rem;
  text-align: left;
  border: 1px solid rgba(150,165,209,0.2);
  font-weight: 700;
}
#nm-article-content td {
  padding: 0.6rem 0.9rem;
  text-align: left;
  border: 1px solid rgba(150,165,209,0.12);
  color: var(--nm-text-muted);
}
#nm-article-content tr:nth-child(even) td { background: rgba(29,33,88,0.25); }
#nm-article-content blockquote {
  border-left: 3px solid var(--nm-text-accent);
  margin: 1em 0;
  padding: 0.5em 1em;
  background: rgba(29,33,88,0.3);
  border-radius: 0 var(--nm-radius-sm) var(--nm-radius-sm) 0;
  color: var(--nm-text-muted);
  font-style: italic;
}
#nm-article-content img { max-width: 100%; border-radius: var(--nm-radius-sm); margin: 1em auto; }
#nm-article-content hr { border: none; border-top: 1px solid var(--nm-border); margin: 1.5em 0; }
#nm-article-content code {
  background: rgba(29,33,88,0.6);
  border: 1px solid var(--nm-border);
  border-radius: 4px;
  padding: 0.1em 0.4em;
  font-size: 0.88em;
  color: var(--nm-text-accent);
}

/* FAQ */
.nm-faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.nm-faq-item {
  background: var(--nm-block-bg-2);
  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius-sm);
  overflow: hidden;
  transition: border-color var(--nm-transition);
}
.nm-faq-item:has(.nm-faq-q[aria-expanded="true"]) { border-color: rgba(150,165,209,0.35); }

.nm-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 1rem 1.2rem;
  color: var(--nm-text-light);
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--nm-transition);
  font-family: inherit;
}
.nm-faq-q:hover { color: var(--nm-gold); }
.nm-faq-q[aria-expanded="true"] { color: var(--nm-gold); }

.nm-faq-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  margin-bottom: 4px;
}
.nm-faq-q[aria-expanded="true"] .nm-faq-arrow { transform: rotate(-135deg); margin-bottom: -4px; }

.nm-faq-a {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.nm-faq-a:not([hidden]) { max-height: 400px; padding: 0 1.2rem 1rem; }
.nm-faq-a p { color: var(--nm-text-muted); font-size: 0.93rem; line-height: 1.6; }

/* Footer */
.nm-footer {
  background: var(--nm-footer-bg);
  border-top: 1px solid var(--nm-border);
  margin-top: 2rem;
}
.nm-footer-desc { font-size: 0.88rem; color: var(--nm-text-muted); line-height: 1.55; }
.nm-footer-nav-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--nm-text-accent); margin-bottom: 0.7rem; }
.nm-footer-link { display: block; color: var(--nm-text-muted); font-size: 0.88rem; padding: 0.2rem 0; text-decoration: none; transition: color var(--nm-transition); }
.nm-footer-link:hover { color: var(--nm-gold); }
.nm-footer-hr { border-color: var(--nm-border); margin: 0; }

.nm-license-badge {
  display: inline-block;
  background: rgba(150,165,209,0.1);
  border: 1px solid rgba(150,165,209,0.2);
  border-radius: 20px;
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
  color: var(--nm-text-accent);
  font-weight: 600;
}

.nm-pay-badge {
  background: rgba(150,165,209,0.1);
  border: 1px solid rgba(150,165,209,0.2);
  border-radius: var(--nm-radius-sm);
  padding: 0.3rem 0.6rem;
  font-size: 0.78rem;
  color: var(--nm-text-light);
  font-weight: 600;
  white-space: nowrap;
}
.nm-provider-badge {
  background: rgba(234,174,22,0.08);
  border: 1px solid rgba(234,174,22,0.2);
  border-radius: var(--nm-radius-sm);
  padding: 0.3rem 0.6rem;
  font-size: 0.78rem;
  color: var(--nm-gold);
  font-weight: 600;
  white-space: nowrap;
}

.nm-legal-text { font-size: 0.8rem; color: var(--nm-text-muted); line-height: 1.5; }
.nm-legal-link { color: var(--nm-text-accent); text-decoration: underline; }
.nm-legal-link:hover { color: var(--nm-gold); }
.nm-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--nm-text-muted);
  color: var(--nm-text-muted);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Sticky widget */
.nm-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--nm-header-bg);
  border-top: 2px solid var(--nm-gold);
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: transform 0.3s ease;
}
.nm-sticky-widget.hidden { transform: translateY(100%); }

.nm-widget-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
  width: 100%;
}
.nm-widget-text { display: flex; flex-direction: column; gap: 0.1rem; }
.nm-widget-bonus { font-weight: 700; font-size: 1rem; color: var(--nm-gold); white-space: nowrap; }
.nm-widget-sub { font-size: 0.75rem; color: var(--nm-text-muted); }

.nm-widget-btn {
  background: var(--nm-btn-register);
  color: #1a1a1a !important;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: var(--nm-radius-sm);
  text-decoration: none !important;
  white-space: nowrap;
  font-size: 0.95rem;
  transition: background var(--nm-transition), transform var(--nm-transition);
  display: inline-block;
}
.nm-widget-btn:hover { background: var(--nm-btn-register-hover); transform: translateY(-1px); color: #1a1a1a !important; }

.nm-widget-close {
  background: transparent;
  border: none;
  color: var(--nm-text-muted);
  padding: 0.4rem;
  line-height: 1;
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: color var(--nm-transition);
}
.nm-widget-close:hover { color: var(--nm-text-light); }

/* Spacing utility for widget offset */
body { padding-bottom: 64px; }

/* --- Responsive --- */
@media (max-width: 991px) {
  .nm-header-inner { flex-wrap: nowrap; }
}

@media (max-width: 767px) {
  .nm-block { padding: 1.3rem; }
  .nm-widget-bonus { font-size: 0.9rem; }
  .nm-swiper-track { display: flex; }
}

@media (max-width: 479px) {
  .nm-widget-inner { gap: 0.6rem; }
  .nm-widget-btn { padding: 0.5rem 1rem; font-size: 0.88rem; }
}

/* --- Table responsive override --- */
.table-responsive-nm { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --- Unused decoy CSS for fingerprint uniqueness --- */
.elementor-element { display: revert; }
.elementor-widget-container { }
.wp-block-group { }
.entry-content { }
.nm-k9z1-unused { color: transparent; }
.nm-p3m7-unused { background: none; }
.nm-j8w2-unused { font-size: inherit; }
