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

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

.page-sports__hero-section {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text for dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-sports__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-sports__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly transparent to let text stand out */
}

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

.page-sports__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

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

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

.page-sports__btn--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for light button */
  border: 2px solid #FCBC45;
}

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

.page-sports__btn--secondary {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text for light button */
  border: 2px solid #FFFFFF;
}

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

.page-sports__section-title {
  font-size: 2.5em;
  color: #000000; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-sports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

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

.page-sports__overview-section,
.page-sports__how-to-start,
.page-sports__why-choose,
.page-sports__responsible-gaming,
.page-sports__faq-section {
  padding: 80px 0;
}

.page-sports__overview-section {
  background-color: #f8f8f8;
}

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

.page-sports__feature-card,
.page-sports__step-card,
.page-sports__benefit-card,
.page-sports__faq-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__feature-card:hover,
.page-sports__step-card:hover,
.page-sports__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.page-sports__feature-icon,
.page-sports__benefit-icon {
  width: 250px; /* Minimum 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

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

.page-sports__step-card {
  position: relative;
  padding-top: 50px;
}

.page-sports__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FCBC45;
  color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-sports__btn--register,
.page-sports__btn--login,
.page-sports__btn--deposit,
.page-sports__btn--bet {
  background-color: #000000; /* Main color for step buttons */
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.95em;
  border: 2px solid #000000;
}

.page-sports__btn--register:hover,
.page-sports__btn--login:hover,
.page-sports__btn--deposit:hover,
.page-sports__btn--bet:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-sports__why-choose {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
}

.page-sports__why-choose .page-sports__section-title,
.page-sports__why-choose .page-sports__section-text {
  color: #FFFFFF;
}

.page-sports__why-choose .page-sports__section-title::after {
  background-color: #FCBC45;
}

.page-sports__benefit-card {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for dark background */
  color: #FFFFFF;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-sports__benefit-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.page-sports__benefit-card .page-sports__benefit-title {
  color: #FFFFFF;
}

.page-sports__benefit-card .page-sports__benefit-description {
  color: #f0f0f0;
}

.page-sports__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

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

.page-sports__btn--responsible {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-sports__btn--responsible:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-sports__faq-section {
  background-color: #FFFFFF;
}

.page-sports__faq-item {
  text-align: left;
}

.page-sports__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-sports__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

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

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

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 3em;
  }

  .page-sports__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding: 60px 15px;
  }

  .page-sports__hero-title {
    font-size: 2.5em;
  }

  .page-sports__hero-description {
    font-size: 1.1em;
  }

  .page-sports__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports__btn {
    padding: 12px 25px;
    width: 100%;
    max-width: 300px;
  }

  .page-sports__section-title {
    font-size: 2em;
  }

  .page-sports__section-text {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-sports__overview-section,
  .page-sports__how-to-start,
  .page-sports__why-choose,
  .page-sports__responsible-gaming,
  .page-sports__faq-section {
    padding: 60px 0;
  }

  .page-sports__features-grid,
  .page-sports__steps-grid,
  .page-sports__benefits-grid,
  .page-sports__faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__feature-icon,
  .page-sports__benefit-icon {
    width: 250px; /* Maintain minimum 200px */
    max-width: 100%;
    height: auto;
  }

  .page-sports__step-card {
    padding-top: 40px;
  }

  .page-sports__step-number {
    top: -15px;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

  .page-sports__faq-question {
    font-size: 1.1em;
  }

  .page-sports__faq-answer {
    font-size: 0.95em;
  }

  .page-sports__container img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 2em;
  }

  .page-sports__hero-description {
    font-size: 0.95em;
  }

  .page-sports__btn {
    font-size: 1em;
  }

  .page-sports__section-title {
    font-size: 1.8em;
  }

  .page-sports__section-text {
    font-size: 0.9em;
  }

  .page-sports__feature-title,
  .page-sports__benefit-title {
    font-size: 1.3em;
  }

  .page-sports__feature-description,
  .page-sports__benefit-description {
    font-size: 0.9em;
  }

  .page-sports__feature-icon,
  .page-sports__benefit-icon {
    width: 200px; /* Minimum 200px */
    max-width: 100%;
    height: auto;
  }
}