:root {
  --nb7x-header-color: #1d2158;
  --nb7x-btn-login: #96a5d1;
  --nb7x-btn-signup: #eaae16;
  --nb7x-bg-color: #2d3447;
  --nb7x-text-light: #ffffff;
  --nb7x-text-dark: #333333;
  --nb7x-accent: #96a5d1;
  --nb7x-gold: #eaae16;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--nb7x-bg-color);
  color: var(--nb7x-text-light);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.nb7x-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nb7x-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

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

.nb7x-logo img {
  height: 50px;
  width: auto;
}

.nb7x-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nb7x-nav a {
  color: var(--nb7x-text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nb7x-nav a:hover {
  color: var(--nb7x-accent);
}

.nb7x-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nb7x-online-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--nb7x-text-light);
}

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

.nb7x-btn-login {
  background-color: var(--nb7x-btn-login);
  color: var(--nb7x-text-light);
}

.nb7x-btn-signup {
  background-color: var(--nb7x-btn-signup);
  color: var(--nb7x-text-dark);
}

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

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

.nb7x-burger span {
  width: 25px;
  height: 3px;
  background: var(--nb7x-text-light);
  margin: 3px 0;
  transition: 0.3s;
}

/* Breadcrumbs */
.nb7x-breadcrumbs {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 0;
}

.breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--nb7x-accent);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--nb7x-text-light);
}

/* Hero Section */
.nb7x-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/banner_nomad1.png");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
}

.nb7x-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nb7x-hero-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.nb7x-btn-primary {
  background: linear-gradient(45deg, var(--nb7x-gold), #f4c430);
  color: var(--nb7x-text-dark);
  font-size: 1.1rem;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nb7x-btn-lg {
  font-size: 1.2rem;
  padding: 18px 45px;
}

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

.nb7x-section {
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.nb7x-section h2 {
  color: var(--nb7x-gold);
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
}

.nb7x-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.nb7x-advantage-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.nb7x-advantage-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--nb7x-gold);
}

/* Pros and Cons */
.nb7x-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.nb7x-pros,
.nb7x-cons {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.nb7x-pros h3 {
  color: #4caf50;
  margin-bottom: 20px;
}

.nb7x-cons h3 {
  color: #f44336;
  margin-bottom: 20px;
}

.nb7x-pros ul,
.nb7x-cons ul {
  list-style: none;
  padding: 0;
}

.nb7x-pros li::before {
  content: "✓ ";
  color: #4caf50;
  font-weight: bold;
}

.nb7x-cons li::before {
  content: "✗ ";
  color: #f44336;
  font-weight: bold;
}

/* Jackpots */
.nb7x-jackpots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.nb7x-jackpot-item {
  background: linear-gradient(45deg, var(--nb7x-gold), #f4c430);
  color: var(--nb7x-text-dark);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
}

.nb7x-jackpot-amount {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* Winners Table */
.nb7x-winners-table {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 40px;
  overflow-x: auto;
}

.nb7x-winners-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.nb7x-winners-table th,
.nb7x-winners-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nb7x-winners-table th {
  background: var(--nb7x-header-color);
  color: var(--nb7x-text-light);
  font-weight: 600;
}

/* Author Info */
.nb7x-author {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
}

.nb7x-author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.nb7x-author-info h3 {
  color: var(--nb7x-gold);
  margin-bottom: 10px;
}

.nb7x-author-social {
  margin-top: 15px;
}

.nb7x-author-social a {
  color: var(--nb7x-accent);
  text-decoration: none;
  margin-right: 15px;
}

/* Content Text Styling */
.nb7x-content-text {
  line-height: 1.8;
}

.nb7x-content-text h2,
.nb7x-content-text h3,
.nb7x-content-text h4 {
  color: var(--nb7x-gold);
  margin-top: 30px;
  margin-bottom: 15px;
}

.nb7x-content-text p {
  margin-bottom: 20px;
}

.nb7x-content-text ul,
.nb7x-content-text ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.nb7x-content-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.nb7x-content-text th,
.nb7x-content-text td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nb7x-content-text th {
  background: var(--nb7x-header-color);
  font-weight: 600;
}

/* Footer */
.nb7x-footer {
  background-color: var(--nb7x-header-color);
  padding: 40px 0 20px;
  margin-top: auto;
}

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

.nb7x-footer-section h4 {
  color: var(--nb7x-gold);
  margin-bottom: 20px;
}

.nb7x-footer-section ul {
  list-style: none;
  padding: 0;
}

.nb7x-footer-section li {
  margin-bottom: 8px;
}

.nb7x-footer-section a {
  color: var(--nb7x-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nb7x-footer-section a:hover {
  color: var(--nb7x-accent);
}

.nb7x-footer-payments,
.nb7x-footer-providers {
  margin: 30px 0;
  text-align: center;
}

.nb7x-footer-payments h4,
.nb7x-footer-providers h4 {
  color: var(--nb7x-gold);
  margin-bottom: 20px;
}

.nb7x-payment-methods,
.nb7x-game-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.nb7x-payment-methods img,
.nb7x-game-providers img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  border-radius: 5px;
}

.nb7x-payment-methods img:hover,
.nb7x-game-providers img:hover {
  opacity: 1;
}

.nb7x-footer-legal {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.nb7x-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Registration Widget */
.nb7x-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, var(--nb7x-gold), #f4c430);
  color: var(--nb7x-text-dark);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-width: 300px;
  animation: nb7x-pulse 2s infinite;
}

.nb7x-widget-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--nb7x-text-dark);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nb7x-widget-close:hover {
  opacity: 1;
}

.nb7x-widget h4 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
}

.nb7x-widget p {
  margin: 0 0 15px 0;
  font-size: 0.9rem;
}

.nb7x-widget-bonus {
  text-align: center;
  margin: 15px 0;
}

.nb7x-bonus-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--nb7x-header-color);
}

.nb7x-widget-btn {
  background: var(--nb7x-header-color);
  color: var(--nb7x-text-light);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
}

.nb7x-widget-btn:hover {
  transform: scale(1.05);
  color: var(--nb7x-text-light);
}

@keyframes nb7x-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nb7x-header-content {
    position: relative;
  }

  .nb7x-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nb7x-header-color);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    gap: 15px;
  }

  .nb7x-nav.active {
    display: flex;
  }

  .nb7x-burger {
    display: flex;
  }

  .nb7x-burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .nb7x-burger.active span:nth-child(2) {
    opacity: 0;
  }

  .nb7x-burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .nb7x-hero h1 {
    font-size: 2rem;
  }

  .nb7x-hero-text {
    font-size: 1rem;
  }

  .nb7x-section {
    padding: 20px;
  }

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

  .nb7x-pros-cons {
    grid-template-columns: 1fr;
  }

  .nb7x-jackpots {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .nb7x-author {
    flex-direction: column;
    text-align: center;
  }

  .nb7x-widget {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px;
    max-width: none;
  }

  .nb7x-footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nb7x-payment-methods,
  .nb7x-game-providers {
    gap: 10px;
  }
}

/* Animation Classes */
.nb7x-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.nb7x-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* WordPress-like elements for obfuscation */
.wp-block-group {
  display: none;
}
.wp-block-columns {
  display: none;
}
.elementor-widget {
  display: none;
}
.yoast-breadcrumb {
  display: none;
}
.wp-content {
  display: none;
}
.wp-admin {
  display: none;
}
.wp-includes {
  display: none;
}

/* Additional obfuscation classes */
.nb7x-wp-element {
  display: none;
}
.nb7x-elementor-section {
  display: none;
}
.nb7x-yoast-seo {
  display: none;
}
