/* 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;
  overflow-x: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header Styles */
.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);
}

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

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

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

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

.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;
  }
}

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

.header-nav .nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

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

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

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

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

.btn-register,
.btn-bonus {
  background-color: #eaae16;
  color: #1d2158;
}

.btn-register:hover,
.btn-bonus:hover {
  background-color: #d49a0f;
  transform: translateY(-2px);
}

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

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

.btn-sm {
  padding: 5px 15px;
  font-size: 14px;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
}

/* Mobile Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

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

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #1d2158;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

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

.hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #eaae16;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Advantages Section */
.advantages-section {
  padding: 80px 0;
  background-color: #2d3447;
}

.advantages-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #eaae16;
}

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

.advantage-card {
  background-color: #1d2158;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

/* Mirrors Section */
.mirrors-section {
  padding: 80px 0;
  background-color: #1d2158;
}

.mirrors-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  color: #eaae16;
}

.mirrors-updated {
  text-align: center;
  margin-bottom: 40px;
  color: #96a5d1;
}

.mirrors-table-wrapper {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mirrors-table {
  width: 100%;
  background-color: #2d3447;
  border-collapse: collapse;
}

.mirrors-table th,
.mirrors-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #1d2158;
}

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

.status-online {
  color: #4caf50;
  font-weight: 600;
}

.speed-fast {
  color: #4caf50;
}

.speed-medium {
  color: #ff9800;
}

/* Screenshots Section */
.screenshots-section {
  padding: 80px 0;
  background-color: #2d3447;
}

.screenshots-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #eaae16;
}

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

.screenshot-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.screenshot-item img:hover {
  transform: scale(1.05);
}

/* Winners Section */
.winners-section {
  padding: 80px 0;
  background-color: #1d2158;
}

.winners-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #eaae16;
}

.winners-table-wrapper {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.winners-table {
  width: 100%;
  background-color: #2d3447;
  border-collapse: collapse;
}

.winners-table th,
.winners-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #1d2158;
}

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

.winners-table tr:nth-child(-n + 3) td:nth-child(3) {
  color: #eaae16;
  font-weight: 600;
}

/* Tournaments Section */
.tournaments-section {
  padding: 80px 0;
  background-color: #2d3447;
}

.tournaments-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #eaae16;
}

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

.tournament-card {
  background-color: #1d2158;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.tournament-prize {
  font-size: 18px;
  font-weight: 600;
  color: #4caf50;
  margin: 15px 0;
}

.tournament-timer {
  background-color: #2d3447;
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
  text-align: center;
}

.timer-label {
  display: block;
  font-size: 14px;
  color: #96a5d1;
  margin-bottom: 5px;
}

.timer-display {
  font-size: 20px;
  font-weight: 600;
  color: #eaae16;
}

/* Author Section */
.author-section {
  padding: 80px 0;
  background-color: #1d2158;
}

.author-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #2d3447;
  padding: 40px;
  border-radius: 15px;
  max-width: 800px;
  margin: 0 auto;
}

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

.author-info h3 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #eaae16;
}

.author-title {
  font-size: 16px;
  color: #96a5d1;
  margin-bottom: 15px;
}

.author-social a {
  color: #96a5d1;
  text-decoration: none;
  font-weight: 500;
}

.author-social a:hover {
  color: #eaae16;
}

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

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

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

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

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

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

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

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

.payment-methods img,
.game-providers img {
  max-width: 100%;
  height: auto;
}

.footer-bottom {
  border-top: 1px solid #2d3447;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #96a5d1;
  font-size: 14px;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: #96a5d1;
  text-decoration: none;
  font-size: 14px;
}

/* Registration Widget */
.registration-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #eaae16, #d49a0f);
  border-radius: 50px;
  padding: 15px 25px;
  box-shadow: 0 5px 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: 15px;
}

.widget-text {
  display: flex;
  flex-direction: column;
  color: #1d2158;
}

.widget-text strong {
  font-size: 16px;
  font-weight: 700;
}

.widget-text span {
  font-size: 12px;
}

.widget-btn {
  background-color: #1d2158;
  color: #ffffff;
  padding: 10px 20px;
  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) {
  .header-nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

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

  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

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

  .screenshots-slider {
    grid-template-columns: 1fr;
    overflow-x: auto;
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
  }

  .screenshot-item {
    min-width: 300px;
  }

  .tournaments-slider {
    grid-template-columns: 1fr;
    overflow-x: auto;
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
  }

  .tournament-card {
    min-width: 300px;
  }

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

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

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

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

@media (max-width: 480px) {
  .online-counter {
    display: none;
  }

  .header-buttons {
    gap: 5px;
  }

  .btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .mirrors-table th,
  .mirrors-table td {
    padding: 10px 8px;
    font-size: 14px;
  }

  .winners-table th,
  .winners-table td {
    padding: 8px 6px;
    font-size: 12px;
  }
}


/* Additional Unique Classes for Obfuscation */
.mb-x7k9p {
  display: none;
}
.qw8r2t {
  visibility: hidden;
}
.zx9cv3 {
  opacity: 0;
}
.mn4bv7 {
  position: absolute;
  left: -9999px;
}
.lk5jh2 {
  font-size: 0;
}
.po9ui8 {
  color: transparent;
}
.as6df4 {
  background: transparent;
}
.gh3kl1 {
  border: none;
}
.ty7bn5 {
  margin: 0;
}
.we4rt6 {
  padding: 0;
}

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