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

.page-sports__hero-section {
  background-color: #0D1117; /* Dark background for hero */
  color: #f0f0f0; /* Light text on dark background */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.page-sports__hero-content {
  max-width: 800px;
}

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

.page-sports__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 900px;
}

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

.page-sports__btn {
  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, transform 0.2s ease;
  white-space: nowrap;
}

.page-sports__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0D1117; /* Dark text */
  border: 2px solid #FFD700;
}

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

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

.page-sports__btn--secondary:hover {
  background-color: #FFD700;
  color: #0D1117;
  transform: translateY(-2px);
}

.page-sports__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-sports__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-sports__hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-sports__section-title {
  font-size: 2.5em;
  color: #0D1117; /* Dark title for light background */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-sports__featured-sports-section,
.page-sports__app-advantage-section,
.page-sports__getting-started-section,
.page-sports__faq-section,
.page-sports__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.page-sports__sport-card,
.page-sports__advantage-card,
.page-sports__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  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__sport-card:hover,
.page-sports__advantage-card:hover,
.page-sports__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports__sport-card-image,
.page-sports__advantage-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports__sport-card-title,
.page-sports__advantage-card-title {
  font-size: 1.5em;
  color: #0D1117;
  margin-bottom: 15px;
}

.page-sports__sport-card-text,
.page-sports__advantage-card-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.page-sports__live-betting-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  padding: 60px 20px;
  background-color: #0D1117; /* Dark background */
  color: #f0f0f0; /* Light text */
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1200px;
}

.page-sports__live-betting-content {
  flex: 1;
  min-width: 300px;
}

.page-sports__live-betting-section .page-sports__section-title {
  color: #FFD700; /* Gold title on dark background */
  text-align: left;
  padding-top: 0;
}

.page-sports__live-betting-section .page-sports__section-description {
  color: #cccccc;
  text-align: left;
  margin-bottom: 30px;
}

.page-sports__live-betting-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-sports__feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-sports__feature-item::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-size: 1.2em;
  margin-right: 10px;
  font-weight: bold;
}

.page-sports__live-betting-image-container {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-sports__live-betting-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-sports__step-card {
  position: relative;
  padding-top: 60px; /* Space for number */
}

.page-sports__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700; /* Gold circle */
  color: #0D1117; /* Dark text */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__step-title {
  font-size: 1.6em;
  color: #0D1117;
  margin-bottom: 15px;
}

.page-sports__step-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.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 {
  font-size: 1.2em;
  color: #0D1117;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.page-sports__faq-answer {
  padding: 0 20px;
  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 based on content */
  padding: 20px;
}

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

.page-sports__faq-cta {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #555555;
}

.page-sports__faq-cta p {
  margin-bottom: 20px;
}

.page-sports__cta-section {
  background-color: #0D1117; /* Dark background */
  color: #f0f0f0; /* Light text */
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 40px;
}

.page-sports__cta-section .page-sports__section-title {
  color: #FFD700; /* Gold title */
}

.page-sports__cta-section .page-sports__section-description {
  color: #cccccc;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
  .page-sports__live-betting-section {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__live-betting-section .page-sports__section-title,
  .page-sports__live-betting-section .page-sports__section-description {
    text-align: center;
  }
  .page-sports__live-betting-features {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding: 60px 15px;
  }
  .page-sports__hero-title {
    font-size: 2.2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-sports__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-sports__sports-grid,
  .page-sports__advantage-grid,
  .page-sports__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__section-description {
    font-size: 0.95em;
  }
  .page-sports__sport-card-image,
  .page-sports__advantage-card-image {
    height: auto;
    min-height: 200px; /* Ensure images are not too small */
    width: 100%;
    max-width: 100%;
  }
  .page-sports__live-betting-image {
    max-width: 100%;
    height: auto;
  }
  .page-sports__live-betting-section .page-sports__live-betting-image-container img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all images within .page-sports are responsive and not too small */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
  .page-sports__live-betting-section {
    padding: 40px 15px;
  }
  .page-sports__cta-section {
    padding: 60px 15px;
  }
  .page-sports__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }
  .page-sports__hero-description {
    font-size: 0.9em;
  }
  .page-sports__hero-actions {
    flex-direction: column;
  }
  .page-sports__btn {
    width: 100%;
  }
  .page-sports__section-title {
    font-size: 1.5em;
  }
  .page-sports__section-description {
    font-size: 0.9em;
  }
  .page-sports__faq-question {
    font-size: 1em;
  }
}