.page-sports {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-sports__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-sports__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Main color underline */
  margin: 10px auto 0;
}

.page-sports__section-intro,
.page-sports__section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-sports__cta-button--primary {
  background-color: #FFD700; /* Main color */
  color: #8B0000; /* Auxiliary color for text */
}

.page-sports__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-sports__cta-button--secondary {
  background-color: #8B0000; /* Auxiliary color */
  color: #FFD700; /* Main color for text */
  border: 2px solid #FFD700;
}

.page-sports__cta-button--secondary:hover {
  background-color: #6a0000;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-sports__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.7;
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  border-radius: 10px;
  max-width: 900px;
}

.page-sports__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: 900;
  color: #FFD700; /* Main color */
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.page-sports__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports__hero-actions .page-sports__cta-button {
  margin: 0 15px;
}

/* Why Choose Section */
.page-sports__why-choose-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-sports__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-sports__feature-card:hover {
  transform: translateY(-10px);
}

.page-sports__feature-icon {
  width: 100%; /* Ensure images are not small icons */
  height: auto;
  max-width: 250px; /* Example, adjust as needed */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-sports__feature-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-sports__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Available Sports Section */
.page-sports__available-sports-section {
  padding: 80px 0;
}

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

.page-sports__sport-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-sports__sport-card:hover {
  transform: translateY(-10px);
}

.page-sports__sport-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-sports__sport-title {
  font-size: 1.6em;
  color: #8B0000;
  padding: 15px 20px 5px;
}

.page-sports__sport-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px 20px;
}

/* Live Betting Section */
.page-sports__live-betting-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-sports__live-betting-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-sports__live-betting-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sports__live-betting-text {
  flex: 1;
}

.page-sports__live-betting-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

/* How to Start Section */
.page-sports__how-to-start-section {
  padding: 80px 0;
}

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

.page-sports__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-sports__step-title {
  font-size: 2em;
  color: #FFD700; /* Main color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-sports__step-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #8B0000; /* Auxiliary color */
  color: #FFD700; /* Main color for text */
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-sports__step-button:hover {
  background-color: #6a0000;
}

/* Guides & Analysis Section */
.page-sports__guides-analysis-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-sports__guide-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-sports__guide-card:hover {
  transform: translateY(-10px);
}

.page-sports__guide-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-sports__guide-title {
  font-size: 1.4em;
  color: #8B0000;
  padding: 15px 20px 5px;
  min-height: 70px; /* Ensure consistent card height */
}

.page-sports__guide-title a {
  color: #8B0000;
  text-decoration: none;
}

.page-sports__guide-title a:hover {
  text-decoration: underline;
}

.page-sports__guide-description {
  font-size: 0.9em;
  color: #555555;
  padding: 0 20px 15px;
}

.page-sports__guide-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700; /* Main color */
  color: #8B0000; /* Auxiliary color for text */
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  margin: 0 20px 20px;
}

.page-sports__guide-button:hover {
  background-color: #e6c200;
}

/* Responsible Gambling Section */
.page-sports__responsible-gambling-section {
  padding: 80px 0;
  text-align: center;
  background-color: #e6e6e6;
}

/* Final CTA Section */
.page-sports__final-cta-section {
  padding: 80px 0;
  background-color: #8B0000; /* Auxiliary color background */
  color: #ffffff; /* White text */
  text-align: center;
}

.page-sports__final-cta-section .page-sports__section-title {
  color: #FFD700; /* Main color for title */
}

.page-sports__final-cta-section .page-sports__section-title::after {
  background-color: #ffffff;
}

.page-sports__final-cta-section .page-sports__section-description {
  color: #f0f0f0;
}

.page-sports__final-cta-section .page-sports__cta-button--primary {
  background-color: #FFD700;
  color: #8B0000;
}

.page-sports__final-cta-section .page-sports__cta-button--primary:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-sports__hero-title {
    font-size: 3em;
  }
  .page-sports__hero-description {
    font-size: 1.2em;
  }
  .page-sports__live-betting-content {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__live-betting-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-sports__section-title {
    font-size: 2em;
  }
  .page-sports__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px);
  }
  .page-sports__hero-title {
    font-size: 2.2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-actions .page-sports__cta-button {
    margin: 10px 0;
    width: 80%;
  }
  .page-sports__live-betting-image,
  .page-sports__features-grid img,
  .page-sports__sports-grid img,
  .page-sports__guides-grid img {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
  }
  .page-sports__features-grid,
  .page-sports__sports-grid,
  .page-sports__steps-grid,
  .page-sports__guides-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__hero-content {
    padding: 20px;
  }
  /* Content area image minimum size constraint for mobile */
  .page-sports img {
    min-width: 200px;
    min-height: 200px;
  }
  .page-sports__feature-icon, .page-sports__sport-image, .page-sports__live-betting-image, .page-sports__guide-image {
    width: 100%; /* Ensure images fill their container */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Prevent overflow */
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }
  .page-sports__hero-description {
    font-size: 0.9em;
  }
  .page-sports__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
}