.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); /* Ensures content is not hidden by fixed header */
}

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

.page-sports__container--small {
  max-width: 900px;
}

.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px 80px; /* Adjusted padding for hero content */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-sports__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-sports__section-title {
  font-size: 2.5em;
  color: #003366; /* Main brand color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

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

.page-sports__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-sports__button--primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Dark Blue */
  border: 2px solid #FFD700;
}

.page-sports__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-sports__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-sports__button--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-2px);
}

.page-sports__button--tertiary {
  background-color: #003366;
  color: #FFD700;
  border: 2px solid #003366;
}

.page-sports__button--tertiary:hover {
  background-color: #002244;
  transform: translateY(-2px);
}

.page-sports__button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-sports__button--center {
  display: block;
  margin: 30px auto 0;
}

.page-sports__about-section,
.page-sports__featured-sports-section,
.page-sports__live-betting-section,
.page-sports__gcash-section,
.page-sports__promotions-section,
.page-sports__why-choose-section,
.page-sports__mobile-betting-section,
.page-sports__responsible-gaming-section,
.page-sports__faq-section,
.page-sports__final-cta-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  margin-bottom: 20px;
}

.page-sports__about-section {
  background-color: #ffffff;
}

.page-sports__featured-sports-section {
  background-color: #f0f5fa; /* Light blue tint */
}

.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: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-sports__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-sports__card-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-sports__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-sports__live-betting-section .page-sports__container,
.page-sports__gcash-section .page-sports__container,
.page-sports__mobile-betting-section .page-sports__container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.page-sports__live-betting-content,
.page-sports__gcash-text,
.page-sports__mobile-text {
  flex: 1;
}

.page-sports__live-betting-image-wrapper,
.page-sports__gcash-image-wrapper,
.page-sports__mobile-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-sports__live-betting-image,
.page-sports__gcash-image,
.page-sports__mobile-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-sports__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.page-sports__feature-item {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-sports__feature-item::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-sports__gcash-section {
  background-color: #ffffff;
}

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

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

.page-sports__promo-card:hover {
  transform: translateY(-5px);
  background-color: #002244;
}

.page-sports__promo-card .page-sports__card-title {
  color: #FFD700;
}

.page-sports__why-choose-section {
  background-color: #f0f5fa;
}

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

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

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

.page-sports__mobile-betting-section {
  background-color: #ffffff;
}

.page-sports__responsible-gaming-section {
  background-color: #f0f5fa;
}

.page-sports__faq-accordion {
  margin-top: 40px;
}

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

.page-sports__faq-question {
  padding: 20px;
  font-size: 1.2em;
  color: #003366;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.page-sports__faq-question.active {
  background-color: #f5f5f5;
}

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

.page-sports__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-sports__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
}

.page-sports__faq-answer p {
  margin-bottom: 15px;
}

.page-sports__faq-answer .page-sports__button--small {
  margin-top: 10px;
}

.page-sports__final-cta-section {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-sports__final-cta-section .page-sports__section-title {
  color: #FFD700;
}

.page-sports__final-cta-section .page-sports__text-content {
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }
  .page-sports__hero-description {
    font-size: 1.2em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
  .page-sports__live-betting-section .page-sports__container,
  .page-sports__gcash-section .page-sports__container,
  .page-sports__mobile-betting-section .page-sports__container {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__live-betting-image-wrapper,
  .page-sports__gcash-image-wrapper,
  .page-sports__mobile-image-wrapper {
    order: -1; /* Image above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-sports {
    padding-top: var(--header-offset, 120px);
  }
  .page-sports__hero-section {
    padding: 80px 15px 60px;
    min-height: 500px;
  }
  .page-sports__hero-title {
    font-size: 2.2em;
  }
  .page-sports__hero-description {
    font-size: 1.1em;
  }
  .page-sports__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-sports__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-sports__text-content {
    font-size: 1em;
  }
  .page-sports__about-section,
  .page-sports__featured-sports-section,
  .page-sports__live-betting-section,
  .page-sports__gcash-section,
  .page-sports__promotions-section,
  .page-sports__why-choose-section,
  .page-sports__mobile-betting-section,
  .page-sports__responsible-gaming-section,
  .page-sports__faq-section,
  .page-sports__final-cta-section {
    padding: 60px 0;
  }
  .page-sports__container {
    padding: 0 15px;
  }
  .page-sports__sports-grid,
  .page-sports__promo-grid,
  .page-sports__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-sports__card-image {
    height: 200px;
  }
  .page-sports__live-betting-image,
  .page-sports__gcash-image,
  .page-sports__mobile-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  /* Ensure all images within .page-sports are responsive and don't overflow */
  .page-sports img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-sports__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-sports__faq-answer {
    padding: 0 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__section-title {
    font-size: 1.5em;
  }
  .page-sports__button {
    font-size: 1em;
  }
  .page-sports__card-title {
    font-size: 1.3em;
  }
}