.page-sports {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-sports__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-sports__text-content {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__button {
  display: block;
  width: fit-content;
  margin: 30px auto;
  padding: 15px 30px;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for light button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-sports__button:hover {
  background-color: #e0a53b;
}

.page-sports__button--wide {
  min-width: 250px;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF; /* Light text for dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

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

.page-sports__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay */
  z-index: -1;
}

.page-sports__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  z-index: 1;
}

.page-sports__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FCBC45;
}

.page-sports__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-sports__hero-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-sports__hero-button--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-sports__hero-button--primary:hover {
  background-color: #e0a53b;
}

.page-sports__hero-button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-sports__hero-button--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
}

/* Features Section */
.page-sports__features-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

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

.page-sports__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-sports__feature-icon {
  width: 100%; /* Ensure images are responsive within cards */
  height: auto;
  max-width: 250px;
  margin: 0 auto 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-sports__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

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

.page-sports__sport-card {
  background-color: #FFFFFF;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-sports__sport-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-sports__sport-title {
  font-size: 1.4em;
  color: #000000;
  padding: 15px 20px 5px;
  font-weight: bold;
}

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

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

.page-sports__details-list {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.page-sports__details-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  text-align: center;
}

.page-sports__details-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports__details-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-sports__details-title a:hover {
  color: #FCBC45;
}

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

.page-sports__details-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-sports__details-button:hover {
  background-color: #e0a53b;
}

/* Why Choose gbet777 Section */
.page-sports__why-choose-gbet777-section {
  padding: 80px 0;
}

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

.page-sports__why-choose-item {
  text-align: center;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-sports__why-choose-item:hover {
  transform: translateY(-8px);
}

.page-sports__why-choose-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin: 0 auto 20px;
  object-fit: cover;
  border-radius: 5px;
}

.page-sports__why-choose-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

/* Call to Action Section */
.page-sports__cta-section {
  background-color: #000000; /* Main color */
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.page-sports__cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-sports__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-sports__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-sports__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-sports__cta-button--register:hover {
  background-color: #e0e0e0;
}

.page-sports__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-sports__cta-button--login:hover {
  background-color: #e0a53b;
}

/* FAQ Section */
.page-sports__faq-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-sports__faq-accordion {
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports__faq-question {
  font-size: 1.3em;
  color: #000000;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.page-sports__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-sports__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-sports__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-sports__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px 25px;
}

.page-sports__faq-answer p {
  margin-bottom: 10px;
  color: #555555;
}

.page-sports__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-sports__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 3em;
  }
  .page-sports__hero-description {
    font-size: 1.1em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    min-height: 500px;
  }
  .page-sports__hero-title {
    font-size: 2.5em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__hero-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-sports__features-grid,
  .page-sports__sports-grid,
  .page-sports__why-choose-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__text-content {
    font-size: 1em;
  }
  .page-sports__sport-image {
    height: 200px;
  }
  .page-sports__cta-title {
    font-size: 2em;
  }
  .page-sports__cta-description {
    font-size: 1em;
  }
  .page-sports__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__cta-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-sports__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-sports__faq-answer.active {
    padding: 10px 20px 20px;
  }
  /* Content area images must not overflow */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
  .page-sports__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-sports__feature-icon,
  .page-sports__sport-image,
  .page-sports__why-choose-icon {
    max-width: 100%; /* Ensure all content images are responsive */
    height: auto;
  }
  .page-sports__details-item {
    padding: 20px;
  }
  .page-sports__details-title {
    font-size: 1.5em;
  }
}

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