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

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

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

/* Header Styles */
.header {
  background-color: #1d2158;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

.header-nav {
  display: flex;
  gap: 20px;
}

.header-nav a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.header-nav a:hover {
  color: #96a5d1;
}

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

.online-counter {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #96a5d1;
}

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

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

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

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-login {
  background-color: #96a5d1;
  color: #ffffff;
}

.btn-login:hover {
  background-color: #7a8bc4;
  color: #ffffff;
}

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

.btn-signup:hover {
  background-color: #d19914;
  color: #1d2158;
}

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

.btn-lg {
  font-size: 20px;
  padding: 15px 40px;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 3px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: 0.3s;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(29, 33, 88, 0.8), rgba(29, 33, 88, 0.8)), url("/nomad-baner2.png");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;

}

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

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

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

.breadcrumbs a {
  color: #96a5d1;
  text-decoration: none;
}

.breadcrumbs span {
  color: #ffffff;
}

/* Main Content */
.main-content {
  padding: 40px 0;
}

.advantages-section,
.pros-cons-section,
.winners-section,
.tournaments-section,
.video-review-section {
  margin-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
}

.advantages-section h2,
.pros-cons-section h2,
.winners-section h2,
.tournaments-section h2,
.video-review-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #eaae16;
  font-size: 32px;
}

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

.advantage-item {
  background-color: rgba(150, 165, 209, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

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

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

/* Pros and Cons */
.pros-block,
.cons-block {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
}

.pros-block h3 {
  color: #00ff00;
  margin-bottom: 20px;
}

.cons-block h3 {
  color: #ff6b6b;
  margin-bottom: 20px;
}

.pros-block ul,
.cons-block ul {
  list-style: none;
}

.pros-block li::before {
  content: "✓ ";
  color: #00ff00;
  font-weight: bold;
}

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

/* Winners Table */
.winners-table-wrapper {
  overflow-x: auto;
}

.winners-table {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

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

.winners-table th {
  background-color: #1d2158;
  color: #eaae16;
  font-weight: 600;
}

.winners-table tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

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

.tournament-card {
  background-color: rgba(150, 165, 209, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s;
}

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

.tournament-card h3 {
  color: #eaae16;
  margin-bottom: 15px;
}

.tournament-timer {
  margin: 20px 0;
  padding: 15px;
  background-color: rgba(234, 174, 22, 0.2);
  border-radius: 10px;
}

.tournament-prize {
  font-size: 18px;
  font-weight: 600;
  color: #00ff00;
}

/* Video Section */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper iframe {
  border-radius: 15px;
}

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

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

.footer-section h4 {
  color: #eaae16;
  margin-bottom: 15px;
}

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

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

.footer-section a {
  color: #96a5d1;
  text-decoration: none;
}

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

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

.payment-methods img {
  max-width: 200px;
  height: auto;
}

.footer-providers {
  margin-bottom: 30px;
  text-align: center;
}

.providers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.providers-list span {
  background-color: rgba(150, 165, 209, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #96a5d1;
}

/* Bonus Widget */
.bonus-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #eaae16;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  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);
  }
}

.widget-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.widget-text {
  color: #1d2158;
  font-weight: 600;
}

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

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

/* Mobile Styles */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

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

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .bonus-widget {
    bottom: 10px;
    right: 10px;
    left: 10px;
    border-radius: 15px;
  }

  .widget-content {
    justify-content: center;
  }
}

/* WordPress-like elements for obfuscation */
.wp-block-group {
  display: none;
}

.elementor-widget {
  display: none;
}

.yoast-breadcrumb {
  display: none;
}

/* Additional unused styles for uniqueness */
.qx7m9k2 {
  display: none;
}
.zp4n8w1 {
  display: none;
}
.bg5t3r7 {
  display: none;
}
.mn2k9x4 {
  display: none;
}
.vf8p1q6 {
  display: none;
}
