/* 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;
}

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

.main-content {
  flex: 1;
  padding: 2rem 0;
}

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

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

.online-players {
  color: #96a5d1;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
margin-left: 40px;
}

.online-indicator {
  width: 8px;
  height: 8px;
  background-color: #28a745;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

/* Button styles */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-login {
  background-color: #96a5d1;
  color: #ffffff;
  margin-right: 0.5rem;
}

.btn-login:hover {
  background-color: #7a8bc4;
  transform: translateY(-2px);
}

.btn-signup {
  background-color: #eaae16;
  color: #1d2158;
  font-weight: 600;
}

.btn-signup:hover {
  background-color: #d19914;
  transform: translateY(-2px);
}

.btn-bonus {
  background: linear-gradient(45deg, #eaae16, #f4c430);
  color: #1d2158;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 15px rgba(234, 174, 22, 0.4);
}

.btn-bonus:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(234, 174, 22, 0.6);
}

/* Navigation */
.navbar-nav .nav-link {
  color: #96a5d1 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.burger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #96a5d1;
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero section */
.hero-section {
  background: linear-gradient(rgba(29, 33, 88, 0.8), rgba(45, 52, 71, 0.8)), url("/nomad-baner2.png");
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
  text-align: center;
  border-radius: 15px;
  margin: 2rem 0;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #96a5d1;
}

/* Content sections */
.main-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #eaae16;
  margin-bottom: 2rem;
  text-align: center;
}

.content-wrapper {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Table of Contents */
.toc-section {
  background-color: rgba(150, 165, 209, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #96a5d1;
}

.toc-list {
  list-style: none;
  padding: 0;
}

.toc-list li {
  margin: 0.5rem 0;
}

.toc-list a {
  color: #96a5d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.toc-list a:hover {
  color: #eaae16;
}

/* Mirrors table */
.mirrors-section {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
}

.update-time {
  color: #96a5d1;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.mirrors-table {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.mirrors-table th {
  background-color: #1d2158;
  color: #ffffff;
  border: none;
  padding: 1rem;
}

.mirrors-table td {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.status-online {
  color: #28a745;
  font-weight: 600;
}

.speed-fast {
  color: #28a745;
}

.speed-medium {
  color: #ffc107;
}

/* Pros and cons */
.pros-cons-section {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
}

.pros-block,
.cons-block {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  height: 100%;
}

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

.pros-list li,
.cons-list li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pros-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.cons-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: bold;
}

/* Jackpots */
.jackpots-section {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
}

.jackpot-card {
  background: linear-gradient(135deg, #1d2158, #2d3447);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #eaae16;
  transition: transform 0.3s ease;
}

.jackpot-card:hover {
  transform: translateY(-5px);
}

.jackpot-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #eaae16;
  margin-top: 0.5rem;
}

/* FAQ */
.faq-section {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
}

.accordion-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  border-radius: 10px;
}

.accordion-button {
  background-color: rgba(150, 165, 209, 0.1);
  color: #ffffff;
  border: none;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: #96a5d1;
  color: #1d2158;
}

.accordion-body {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* Footer */
.footer {
  background-color: #1d2158;
  padding: 2rem 0 1rem;
  margin-top: auto;
}

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

.payment-methods h5,
.game-providers h5 {
  color: #96a5d1;
  margin-bottom: 1rem;
}

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

.providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.provider {
  background-color: rgba(150, 165, 209, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #96a5d1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  color: #96a5d1;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #96a5d1;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Registration widget */
.registration-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #eaae16, #f4c430);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 20px rgba(234, 174, 22, 0.4);
  z-index: 1000;
  animation: bounce 3s infinite;
}

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

.widget-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.widget-text {
  color: #1d2158;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.widget-btn {
  background-color: #1d2158;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.widget-btn:hover {
  background-color: #2d3447;
  transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .main-title {
    font-size: 1.8rem;
  }

  .content-wrapper {
    padding: 1rem;
  }

  .registration-widget {
    bottom: 10px;
    right: 10px;
    padding: 0.75rem 1rem;
  }

  .widget-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Additional unique styles for obfuscation */
.xz9k-container {
  display: none;
}
.wp-block-group {
  margin: 0;
}
.elementor-widget {
  padding: 0;
}
.yoast-breadcrumb {
  visibility: hidden;
}
.wp-content-area {
  background: transparent;
}
