.page-sports-types {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000000; /* Inherited from body, explicit for clarity */
}

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

.page-sports-types__section-title {
  font-size: 2.5em;
  color: #E0B34C; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-sports-types__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for dark background */
}

.page-sports-types__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #0A2463; /* Main brand color */
  overflow: hidden;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-sports-types__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Blend with background color */
}

.page-sports-types__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #ffffff;
}

.page-sports-types__main-title {
  font-size: 3.5em;
  color: #E0B34C; /* Auxiliary color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-sports-types__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f8f8f8;
}

.page-sports-types__btn-primary, .page-sports-types__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports-types__btn-primary {
  background-color: #E0B34C; /* Auxiliary color */
  color: #0A2463; /* Text color for auxiliary background */
  border: 2px solid #E0B34C;
}

.page-sports-types__btn-primary:hover {
  background-color: #c99f3d;
  color: #000000;
}

.page-sports-types__btn-secondary {
  background-color: transparent;
  color: #E0B34C;
  border: 2px solid #E0B34C;
  margin-left: 15px;
}

.page-sports-types__btn-secondary:hover {
  background-color: #E0B34C;
  color: #0A2463;
}

.page-sports-types__introduction, .page-sports-types__odds-understanding, .page-sports-types__benefits, .page-sports-types__faq {
  background-color: #1a1a1a; /* Slightly lighter dark background for content sections */
  padding: 80px 0;
  color: #f0f0f0;
}

.page-sports-types__popular-sports, .page-sports-types__betting-strategies, .page-sports-types__get-started, .page-sports-types__conclusion {
  background-color: #0A2463; /* Main brand color for sections */
  padding: 80px 0;
  color: #ffffff;
}

.page-sports-types__introduction .page-sports-types__section-title,
.page-sports-types__odds-understanding .page-sports-types__section-title,
.page-sports-types__benefits .page-sports-types__section-title,
.page-sports-types__faq .page-sports-types__section-title {
  color: #E0B34C;
}

.page-sports-types__introduction .page-sports-types__paragraph,
.page-sports-types__odds-understanding .page-sports-types__paragraph,
.page-sports-types__benefits .page-sports-types__paragraph,
.page-sports-types__faq .page-sports-types__paragraph {
  color: #f0f0f0;
}

.page-sports-types__popular-sports .page-sports-types__section-title,
.page-sports-types__betting-strategies .page-sports-types__section-title,
.page-sports-types__get-started .page-sports-types__section-title,
.page-sports-types__conclusion .page-sports-types__section-title {
  color: #E0B34C;
}

.page-sports-types__popular-sports .page-sports-types__paragraph,
.page-sports-types__betting-strategies .page-sports-types__paragraph,
.page-sports-types__get-started .page-sports-types__paragraph,
.page-sports-types__conclusion .page-sports-types__paragraph {
  color: #f8f8f8;
}

.page-sports-types__sport-grid, .page-sports-types__feature-grid, .page-sports-types__benefit-grid, .page-sports-types__steps-grid, .page-sports-types__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports-types__sport-card, .page-sports-types__feature-item, .page-sports-types__benefit-item, .page-sports-types__step-item, .page-sports-types__strategy-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark backgrounds */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports-types__sport-card .page-sports-types__card-image,
.page-sports-types__feature-item .page-sports-types__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports-types__card-title {
  font-size: 1.8em;
  color: #E0B34C; /* Auxiliary color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports-types__card-title a {
  color: #E0B34C;
  text-decoration: none;
}

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

.page-sports-types__card-description {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-sports-types__feature-title, .page-sports-types__benefit-title, .page-sports-types__step-title, .page-sports-types__strategy-card h3 {
  font-size: 1.5em;
  color: #E0B34C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports-types__feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
}

.page-sports-types__feature-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-sports-types__feature-list li::before {
  content: '✓';
  color: #E0B34C;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-sports-types__step-icon {
  background-color: #E0B34C;
  color: #0A2463;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-sports-types__cta-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-sports-types__cta-final {
  margin-top: 40px;
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-sports-types__faq-list {
  margin-top: 40px;
}

.page-sports-types__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-sports-types__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #0A2463; /* Main brand color for question background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports-types__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #E0B34C; /* Auxiliary color for question text */
}

.page-sports-types__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #E0B34C;
  transition: transform 0.3s ease;
}

.page-sports-types__faq-item.active .page-sports-types__faq-toggle {
  transform: rotate(45deg);
}

.page-sports-types__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-sports-types__faq-item.active .page-sports-types__faq-answer {
  max-height: 1000px !important; /* Ensure it expands fully */
  padding: 20px;
}

.page-sports-types__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
  color: #f0f0f0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-sports-types__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }

  .page-sports-types__main-title {
    font-size: 2.2em;
  }

  .page-sports-types__hero-description {
    font-size: 1em;
  }

  .page-sports-types__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-sports-types__paragraph {
    font-size: 0.95em;
  }

  .page-sports-types__sport-grid, .page-sports-types__feature-grid, .page-sports-types__benefit-grid, .page-sports-types__steps-grid, .page-sports-types__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports-types__sport-card, .page-sports-types__feature-item, .page-sports-types__benefit-item, .page-sports-types__step-item, .page-sports-types__strategy-card {
    padding: 20px;
  }

  .page-sports-types__card-title {
    font-size: 1.5em;
  }

  .page-sports-types__feature-title, .page-sports-types__benefit-title, .page-sports-types__step-title, .page-sports-types__strategy-card h3 {
    font-size: 1.3em;
  }

  .page-sports-types__btn-primary, .page-sports-types__btn-secondary {
    width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 15px;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports-types__cta-buttons {
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-sports-types__section,
  .page-sports-types__card,
  .page-sports-types__container,
  .page-sports-types__hero-section,
  .page-sports-types__introduction,
  .page-sports-types__popular-sports,
  .page-sports-types__odds-understanding,
  .page-sports-types__betting-strategies,
  .page-sports-types__benefits,
  .page-sports-types__get-started,
  .page-sports-types__faq,
  .page-sports-types__conclusion {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports-types__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
  }

  .page-sports-types__faq-question h3 {
    font-size: 1em;
  }
}