.page-sports {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #000; /* Body background from shared.css */
  line-height: 1.6;
}

.page-sports__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-sports__intro-section {
  padding-top: 180px; /* Desktop fixed nav bar spacing */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #00BFFF, #007FFF); /* Darker blue for intro section */
  text-align: center;
}

.page-sports__main-title {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.2;
}

.page-sports__intro-text {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__intro-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-sports__intro-text a:hover {
  color: #FFA500;
  text-decoration: underline;
}

.page-sports__section-title {
  font-size: 36px;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-sports__sub-title {
  font-size: 28px;
  color: #00BFFF; /* Blue for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-sports__text-block {
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-sports__text-block a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-sports__text-block a:hover {
  color: #FFA500;
  text-decoration: underline;
}

.page-sports__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-sports__list-item {
  font-size: 17px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-sports__list-item strong {
  color: #FFD700;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold gradient */
  color: #000000; /* Black text for gold button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  border: none;
}

.page-sports__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFC107);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-sports__cta-button--secondary {
  background: linear-gradient(135deg, #00BFFF, #007FFF); /* Blue gradient */
  color: #ffffff; /* White text for blue button */
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

.page-sports__cta-button--secondary:hover {
  background: linear-gradient(135deg, #007FFF, #00BFFF);
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.6);
}

.page-sports__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-sports__section-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.page-sports__betting-section, .page-sports__fishing-game-section, .page-sports__platform-advantages-section, .page-sports__guide-section, .page-sports__contact-info-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports__betting-section {
  background-color: #1a1a1a; /* Dark background for betting section */
}

.page-sports__fishing-game-section {
  background-color: #0d0d0d; /* Slightly different dark background */
}

.page-sports__platform-advantages-section {
  background-color: #1a1a1a;
}

.page-sports__guide-section {
  background-color: #0d0d0d;
}

.page-sports__contact-info-section {
  background-color: #1a1a1a;
  border-bottom: none;
}

.page-sports__contact-list {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
  text-align: center;
}

.page-sports__contact-item {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.page-sports__contact-item strong {
  color: #FFD700;
}

/* Responsive design */
@media (max-width: 768px) {
  .page-sports__intro-section {
    padding-top: 160px !important; /* Mobile fixed nav bar spacing */
    padding-bottom: 40px;
  }

  .page-sports__container {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-sports__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-sports__intro-text {
    font-size: 16px;
  }

  .page-sports__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-sports__sub-title {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-sports__text-block, .page-sports__list-item {
    font-size: 15px;
  }

  .page-sports__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    margin-top: 20px;
  }

  .page-sports__betting-section, .page-sports__fishing-game-section, .page-sports__platform-advantages-section, .page-sports__guide-section, .page-sports__contact-info-section {
    padding: 40px 0;
  }

  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}