.page-sports {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
  line-height: 1.6;
}

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

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: rgba(1, 116, 57, 0.8); /* Primary color with transparency */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.6; /* Ensure text readability */
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-sports__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFF00; /* Custom color for main title */
}

.page-sports__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-sports__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* General Section Styling */
.page-sports__section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Match body background for consistency */
}

.page-sports__section:nth-child(odd) {
  background-color: #0d0d0d; /* Slightly different dark background for visual separation */
}

.page-sports__section-title {
  font-size: 2.5em;
  color: #FFFF00; /* Yellow for main titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-sports__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #ffffff;
}

/* Feature Grid */
.page-sports__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__feature-item {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparency on dark bg */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-sports__feature-icon {
  width: 200px; /* Minimum size */
  height: 200px; /* Minimum size */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-sports__feature-title {
  font-size: 1.4em;
  color: #017439; /* Primary brand color for feature titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports__feature-text {
  font-size: 1em;
  line-height: 1.5;
}

/* Sports Grid (Cards) */
.page-sports__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__sport-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-sports__sport-image {
  width: 100%;
  height: 250px; /* Ensure height is >= 200px */
  object-fit: cover;
  display: block;
}

.page-sports__sport-title {
  font-size: 1.5em;
  color: #017439;
  padding: 15px 20px 0;
  font-weight: bold;
}

.page-sports__sport-text {
  font-size: 1em;
  padding: 0 20px 20px;
  line-height: 1.5;
}

/* Live Betting Section */
.page-sports__live-betting-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-sports__live-betting-image {
  flex: 1;
  max-width: 50%;
  min-width: 200px; /* Ensure minimum width */
  min-height: 200px; /* Ensure minimum height */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__live-betting-features {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}

.page-sports__live-betting-features li {
  margin-bottom: 20px;
}

.page-sports__live-betting-features li:last-child {
  margin-bottom: 0;
}

/* Promotions Grid */
.page-sports__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-sports__promo-image {
  width: 100%;
  height: 200px; /* Ensure height is >= 200px */
  object-fit: cover;
  display: block;
}

.page-sports__promo-title {
  font-size: 1.4em;
  color: #017439;
  padding: 15px 20px 0;
  font-weight: bold;
}

.page-sports__promo-text {
  font-size: 1em;
  padding: 0 20px 20px;
  line-height: 1.5;
}

/* Get Started Steps */
.page-sports__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-sports__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  position: relative;
}

.page-sports__step-item::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #017439;
  color: #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 3px solid #FFFF00;
  box-shadow: 0 0 0 5px rgba(1, 116, 57, 0.5);
}

.page-sports__step-icon {
  width: 200px; /* Minimum size */
  height: 200px; /* Minimum size */
  object-fit: contain;
  margin-bottom: 20px;
  margin-top: 30px; /* Space for step number */
}

.page-sports__step-title {
  font-size: 1.4em;
  color: #FFFF00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports__step-text {
  font-size: 1em;
  line-height: 1.5;
}

/* Mobile App Section */
.page-sports__mobile-app {
  background-color: #0d0d0d;
}

.page-sports__mobile-app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-sports__mobile-app-text {
  flex: 1;
  min-width: 300px;
  color: #ffffff;
}

.page-sports__mobile-app-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-sports__mobile-app-features li {
  margin-bottom: 15px;
}

.page-sports__mobile-app-image {
  flex: 1;
  max-width: 400px;
  min-width: 200px; /* Ensure minimum width */
  min-height: 200px; /* Ensure minimum height */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsible Gaming Section */
.page-sports__responsible-gaming {
  padding: 60px 0;
}

.page-sports__dark-section {
  background-color: #017439; /* Primary brand color */
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.page-sports__dark-section .page-sports__section-title {
  color: #FFFF00;
}

.page-sports__dark-section .page-sports__section-description {
  color: #ffffff;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-sports__faq-section {
  background-color: #1a1a1a;
}

.page-sports__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-sports__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: #FFFF00;
  background-color: rgba(1, 116, 57, 0.7); /* Darker green for question background */
  transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
  background-color: #017439;
}