/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #2d3447;
  color: #ffffff;
  line-height: 1.6;
}

.nm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.nm-header {
  background-color: #1d2158;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nm-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nm-header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nm-logo img {
  height: 40px;
  width: auto;
}

.nm-nav {
  display: flex;
  gap: 30px;
}

.nm-nav a {
  color: #96a5d1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nm-nav a:hover {
  color: #eaae16;
}

.nm-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nm-online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #96a5d1;
  font-size: 14px;
}

.nm-online-dot {
  width: 8px;
  height: 8px;
  background-color: #4caf50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.nm-header-buttons {
  display: flex;
  gap: 10px;
}

.nm-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.nm-btn-login {
  background-color: #96a5d1;
  color: #1d2158;
}

.nm-btn-signup {
  background-color: #eaae16;
  color: #1d2158;
}

.nm-btn-primary {
  background-color: #96a5d1;
  color: #1d2158;
}

.nm-btn-bonus {
  background-color: #eaae16;
  color: #1d2158;
  font-size: 18px;
  padding: 15px 30px;
}

.nm-btn-spin {
  background: linear-gradient(45deg, #eaae16, #f4c430);
  color: #1d2158;
  font-size: 16px;
  padding: 12px 25px;
}

.nm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nm-burger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nm-burger span {
  width: 25px;
  height: 3px;
  background-color: #96a5d1;
  margin: 3px 0;
  transition: 0.3s;
}
/* ===== Content Area: .nm-container1 ===== */
.nm-container1 {
  max-width: 870px;
  margin: 40px auto;
  padding: 32px 28px;
  background: linear-gradient(135deg, #1d2158, #2d3447);
  border: 1px solid rgba(150,165,209,.18);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  color: #e8ecff;
}

/* Typography */
.nm-container1 h1,
.nm-container1 h2,
.nm-container1 h3,
.nm-container1 h4 {
  line-height: 1.25;
  margin: 18px 0 12px;
  font-weight: 800;
  letter-spacing: .2px;
  color: #fff;
}
.nm-container1 h1 { font-size: 40px; }
.nm-container1 h2 { font-size: 28px; border-left: 4px solid #eaae16; padding-left: 12px; }
.nm-container1 h3 { font-size: 22px; color: #eaae16; }
.nm-container1 h4 { font-size: 18px; color: #cbd6ff; }

.nm-container1 p {
  margin: 12px 0 16px;
  color: #cbd6ff;
}

.nm-container1 a {
  color: #eaae16;
  text-decoration: none;
  border-bottom: 1px dashed rgba(234,174,22,.4);
  transition: color .2s ease, border-color .2s ease;
}
.nm-container1 a:hover { color: #f6d464; border-color: rgba(246,212,100,.7); }

/* Lists */
.nm-container1 ul,
.nm-container1 ol { margin: 12px 0 16px 22px; }
.nm-container1 li { margin: 6px 0; }
.nm-container1 ul { list-style: disc; }
.nm-container1 ol { list-style: decimal; }

/* Definition list (FAQ style) */
.nm-container1 dl { margin: 20px 0; }
.nm-container1 dt {
  font-weight: 700;
  color: #fff;
  margin: 14px 0 6px;
}
.nm-container1 dd {
  margin: 0 0 14px 0;
  color: #cbd6ff;
}

/* Blockquote */
.nm-container1 blockquote {
  margin: 18px 0;
  padding: 16px 18px;
  background: rgba(150,165,209,.08);
  border-left: 4px solid #eaae16;
  border-radius: 10px;
  color: #d9e2ff;
}

/* Code */
.nm-container1 code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(0,0,0,.25);
  padding: .15em .4em;
  border-radius: 6px;
  color: #ffeaa3;
}
.nm-container1 pre {
  overflow: auto;
  padding: 16px;
  background: #0f1236;
  border: 1px solid rgba(150,165,209,.18);
  border-radius: 12px;
}
.nm-container1 pre code { background: transparent; padding: 0; color: #e8ecff; }

/* Tables */
.nm-container1 table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  background: #1e2550;
  border: 1px solid rgba(150,165,209,.2);
  border-radius: 12px;
  overflow: hidden;
}
.nm-container1 th,
.nm-container1 td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(150,165,209,.12);
  text-align: left;
}
.nm-container1 thead th {
  background: #151b48;
  color: #eaae16;
  font-weight: 700;
}
.nm-container1 tbody tr:hover { background: rgba(150,165,209,.06); }

/* Images & media */
.nm-container1 img,
.nm-container1 video,
.nm-container1 iframe {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 14px auto;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

/* Inline badges */
.nm-container1 .nm-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #1d2158;
  background: linear-gradient(45deg, #eaae16, #f4c430);
}

/* Callouts */
.nm-container1 .nm-callout {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(150,165,209,.2);
  background: linear-gradient(180deg, rgba(150,165,209,.08), rgba(150,165,209,.03));
}
.nm-container1 .nm-callout--success {
  border-color: rgba(76,175,80,.45);
  background: rgba(76,175,80,.08);
  color: #bff7c3;
}
.nm-container1 .nm-callout--warn {
  border-color: rgba(234,174,22,.5);
  background: rgba(234,174,22,.08);
  color: #ffe29b;
}
.nm-container1 .nm-callout--danger {
  border-color: rgba(255,68,68,.5);
  background: rgba(255,68,68,.08);
  color: #ffb3b3;
}

/* Buttons in content */
.nm-container1 .nm-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nm-container1 .nm-btn--primary {
  background: #eaae16;
  color: #1d2158;
}
.nm-container1 .nm-btn--ghost {
  background: transparent;
  color: #eaae16;
  border: 1px solid rgba(234,174,22,.6);
}
.nm-container1 .nm-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.25); }

/* FAQ accordion via <details> */
.nm-container1 details {
  margin: 12px 0;
  border: 1px solid rgba(150,165,209,.2);
  border-radius: 12px;
  background: rgba(150,165,209,.05);
  overflow: hidden;
}
.nm-container1 summary {
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 700;
  color: #fff;
  list-style: none;
}
.nm-container1 details[open] summary { border-bottom: 1px solid rgba(150,165,209,.2); }
.nm-container1 details > *:not(summary) { padding: 12px 16px; }

/* Breadcrumb-like small text */
.nm-container1 .nm-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #96a5d1;
  margin-bottom: 8px;
}

/* SEO helpers (h1 duplication safe) */
.nm-container1 > h1:first-child { margin-top: 0; }

/* Spacing utilities */
.nm-container1 .mt-0 { margin-top: 0 !important; }
.nm-container1 .mt-16 { margin-top: 16px !important; }
.nm-container1 .mb-0 { margin-bottom: 0 !important; }
.nm-container1 .mb-16 { margin-bottom: 16px !important; }

/* Responsive */
@media (max-width: 768px) {
  .nm-container1 {
    margin: 24px auto;
    padding: 22px 18px;
    border-radius: 16px;
  }
  .nm-container1 h1 { font-size: 30px; }
  .nm-container1 h2 { font-size: 24px; }
  .nm-container1 h3 { font-size: 19px; }
}

.nm-mobile-menu {
  display: none;
  background-color: #1d2158;
  padding: 20px 0;
}

.nm-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nm-mobile-nav a {
  color: #96a5d1;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(150, 165, 209, 0.2);
}

/* Hero Section */
.nm-hero {
  background: linear-gradient(rgba(29, 33, 88, 0.8), rgba(29, 33, 88, 0.8)), url("/logo_nomad1.webp");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
}

.nm-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.nm-hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  color: #96a5d1;
}

.nm-hero-bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.nm-bonus-text {
  font-size: 28px;
  font-weight: 700;
  color: #eaae16;
}

/* Breadcrumbs */
.nm-breadcrumbs {
  background-color: rgba(29, 33, 88, 0.3);
  padding: 15px 0;
}

.nm-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.nm-breadcrumb-nav a {
  color: #96a5d1;
  text-decoration: none;
}

.nm-separator {
  color: #96a5d1;
}

/* Content Sections */
.nm-content {
  padding: 60px 0;
}

.nm-section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff;
}

/* Bonuses Section */
.nm-bonuses {
  margin-bottom: 80px;
}

.nm-bonuses-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.nm-bonus-card {
  background: linear-gradient(135deg, #1d2158, #2d3447);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.nm-bonus-card:hover {
  transform: translateY(-10px);
}

.nm-bonus-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.nm-bonus-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #eaae16;
}

.nm-bonus-card p {
  margin-bottom: 25px;
  color: #96a5d1;
}

/* Mini Games */
.nm-mini-game,
.nm-wheel-game {
  margin-bottom: 80px;
  text-align: center;
}

.nm-slot-machine {
  background: linear-gradient(135deg, #1d2158, #2d3447);
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nm-slot-reels {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.nm-reel {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border: 3px solid #eaae16;
  animation: spin 0.5s ease-in-out;
}

@keyframes spin {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.nm-slot-result,
.nm-wheel-result {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nm-win-message {
  color: #4caf50;
  background-color: rgba(76, 175, 80, 0.1);
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #4caf50;
}

/* Wheel of Fortune */
.nm-wheel-container {
  max-width: 400px;
  margin: 0 auto;
}

.nm-wheel {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 30px;
  background: conic-gradient(
    #eaae16 0deg 60deg,
    #ff4444 60deg 120deg,
    #eaae16 120deg 180deg,
    #ff4444 180deg 240deg,
    #eaae16 240deg 300deg,
    #ff4444 300deg 360deg
  );
  border: 5px solid #1d2158;
  transition: transform 3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nm-wheel-sector {
  position: absolute;
  width: 50%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #1d2158;
}

.nm-sector-1 {
  top: 0;
  left: 50%;
  transform-origin: 0 100%;
  transform: rotate(30deg);
}
.nm-sector-2 {
  top: 0;
  right: 0;
  transform-origin: 0 100%;
  transform: rotate(90deg);
}
.nm-sector-3 {
  bottom: 0;
  right: 0;
  transform-origin: 0 0;
  transform: rotate(150deg);
}
.nm-sector-4 {
  bottom: 0;
  left: 50%;
  transform-origin: 0 0;
  transform: rotate(210deg);
}
.nm-sector-5 {
  bottom: 0;
  left: 0;
  transform-origin: 100% 0;
  transform: rotate(270deg);
}
.nm-sector-6 {
  top: 0;
  left: 0;
  transform-origin: 100% 100%;
  transform: rotate(330deg);
}

/* Advantages */
.nm-advantages {
  margin-bottom: 80px;
}

.nm-advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.nm-advantage-item {
  background: linear-gradient(135deg, #1d2158, #2d3447);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.nm-advantage-item:hover {
  transform: translateY(-5px);
}

.nm-advantage-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.nm-advantage-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #eaae16;
}

.nm-advantage-item p {
  color: #96a5d1;
}

/* Reviews */
.nm-reviews {
  margin-bottom: 80px;
}

.nm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.nm-review-card {
  background: linear-gradient(135deg, #1d2158, #2d3447);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.nm-review-avatar {
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
}

.nm-review-content h4 {
  color: #eaae16;
  margin-bottom: 10px;
}

.nm-stars {
  margin-bottom: 15px;
}

.nm-review-content p {
  color: #96a5d1;
  line-height: 1.6;
}

/* Review Form */
.nm-review-form {
  background: linear-gradient(135deg, #1d2158, #2d3447);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.nm-review-form h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #eaae16;
}

.nm-form-group {
  margin-bottom: 20px;
}

.nm-form-group input,
.nm-form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #96a5d1;
  border-radius: 10px;
  background-color: #2d3447;
  color: #ffffff;
  font-size: 16px;
}

.nm-form-group input:focus,
.nm-form-group textarea:focus {
  outline: none;
  border-color: #eaae16;
}

.nm-success-message {
  background-color: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #4caf50;
  text-align: center;
  margin-top: 20px;
}

/* Footer */
.nm-footer {
  background-color: #1d2158;
  padding: 50px 0 20px;
  margin-top: 80px;
}

.nm-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.nm-footer-section h4 {
  color: #eaae16;
  margin-bottom: 20px;
  font-size: 18px;
}

.nm-footer-section ul {
  list-style: none;
}

.nm-footer-section ul li {
  margin-bottom: 10px;
}

.nm-footer-section ul li a {
  color: #96a5d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nm-footer-section ul li a:hover {
  color: #eaae16;
}

.nm-footer-logo img {
  height: 40px;
  margin-bottom: 15px;
}

.nm-payment-methods img,
.nm-providers {
  max-width: 100%;
}

.nm-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nm-providers span {
  background-color: #2d3447;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  color: #96a5d1;
}

.nm-footer-bottom {
  border-top: 1px solid rgba(150, 165, 209, 0.2);
  padding-top: 20px;
  text-align: center;
}

.nm-copyright p {
  color: #96a5d1;
  font-size: 14px;
  margin-bottom: 5px;
}

/* Registration Widget */
.nm-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.nm-widget-content {
  background: linear-gradient(45deg, #eaae16, #f4c430);
  padding: 15px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nm-widget-text {
  color: #1d2158;
  font-weight: 600;
  font-size: 14px;
}

.nm-widget-btn {
  background-color: #1d2158;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
}

.nm-widget-btn:hover {
  background-color: #2d3447;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nm-burger {
    display: flex;
  }

  .nm-nav {
    display: none;
  }

  .nm-mobile-menu.active {
    display: block;
  }

  .nm-hero-title {
    font-size: 32px;
  }

  .nm-hero-subtitle {
    font-size: 18px;
  }

  .nm-bonus-text {
    font-size: 20px;
  }

  .nm-bonuses-slider {
    grid-template-columns: 1fr;
  }

  .nm-advantages-grid {
    grid-template-columns: 1fr;
  }

  .nm-reviews-grid {
    grid-template-columns: 1fr;
  }

  .nm-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nm-widget {
    bottom: 10px;
    right: 10px;
  }

  .nm-widget-content {
    flex-direction: column;
    gap: 10px;
    padding: 12px 15px;
  }

  .nm-online-counter {
    display: none;
  }
}

@media (max-width: 480px) {
  .nm-container {
    padding: 0 15px;
  }

  .nm-hero {
    padding: 50px 0;
  }

  .nm-hero-title {
    font-size: 24px;
  }

  .nm-section-title {
    font-size: 28px;
  }

  .nm-slot-machine {
    padding: 20px;
  }

  .nm-reel {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .nm-wheel {
    width: 250px;
    height: 250px;
  }
}

/* Additional unique styles for obfuscation */
.nm-x7k9p {
  display: none;
}
.nm-m3n8q {
  visibility: hidden;
}
.nm-z2w5r {
  opacity: 0;
}
.nm-f4j6t {
  position: absolute;
  left: -9999px;
}
.nm-h8l1v {
  font-size: 0;
}

/* WordPress-like elements for obfuscation */
.wp-block-group {
  display: none;
}
.elementor-widget {
  visibility: hidden;
}
.yoast-breadcrumb {
  opacity: 0;
}
.wp-content-area {
  position: absolute;
  left: -9999px;
}
