.page-sports {
  color: #FFF6D6; /* Text Main color for dark background */
  background-color: #0A0A0A; /* Page Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-sports__hero-section {
  padding-top: 10px; /* Small top padding to avoid fixed header overlap, body handles main offset */
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.page-sports__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-sports__hero-image-container {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

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

.page-sports__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Main color for title */
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-sports__tagline {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 30px;
  color: #FFF6D6;
}

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

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for light button */
  border: none;
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-sports__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color for text */
  border: 2px solid #F2C14E;
}

.page-sports__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-sports__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 25px;
  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: linear-gradient(90deg, transparent, #F2C14E, transparent);
  border-radius: 2px;
}

.page-sports__section-description {
  font-size: 1.1rem;
  color: #FFF6D6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.8;
}

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

.page-sports__about-section,
.page-sports__how-to-start-section,
.page-sports__popular-markets-section,
.page-sports__promotions-section,
.page-sports__faq-section,
.page-sports__partners-section {
  padding: 80px 0;
}

.page-sports__features-grid,
.page-sports__steps-grid,
.page-sports__market-categories,
.page-sports__promos-grid,
.page-sports__partners-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-sports__feature-card,
.page-sports__step-card,
.page-sports__category-card,
.page-sports__promo-card {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__feature-card:hover,
.page-sports__step-card:hover,
.page-sports__category-card:hover,
.page-sports__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-sports__feature-title,
.page-sports__step-title,
.page-sports__category-title,
.page-sports__promo-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-sports__feature-text,
.page-sports__step-text,
.page-sports__category-text,
.page-sports__promo-text {
  font-size: 1rem;
  color: #FFF6D6;
  line-height: 1.7;
}

.page-sports__btn-text-link {
  display: inline-block;
  margin-top: 20px;
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

.page-sports__btn-text-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #F2C14E;
  transition: width 0.3s ease;
}

.page-sports__btn-text-link:hover {
  color: #FFD36B;
}

.page-sports__btn-text-link:hover::after {
  width: 0;
}

.page-sports__category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(242, 193, 78, 0.5));
}

.page-sports__dark-section {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

.page-sports__dark-bg {
  background: rgba(242, 193, 78, 0.1); /* Slightly transparent brand color */
  color: #FFF6D6;
  border: 1px solid #F2C14E;
}

.page-sports__dark-bg:hover {
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.4);
}

.page-sports__promo-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

.page-sports__faq-list {
  margin-top: 50px;
}

.page-sports__faq-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: rgba(242, 193, 78, 0.05); /* Subtle highlight */
  color: #F2C14E;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.page-sports__faq-question:hover {
  background: rgba(242, 193, 78, 0.1);
}

.page-sports__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: inherit;
  flex-grow: 1;
  text-align: left;
}

.page-sports__faq-toggle {
  font-size: 1.5rem;
  font-weight: normal;
  color: #FFD36B;
  transition: transform 0.3s ease;
}

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

.page-sports__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #FFF6D6;
  transition: max-height 0.3s ease, padding 0.3s ease;
  text-align: left;
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px;
}

.page-sports__faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.page-sports__partners-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: center;
  justify-items: center;
}

.page-sports__partner-logo {
  width: 167px; /* Fixed width */
  height: 127px; /* Fixed height */
  object-fit: contain;
  filter: grayscale(100%) brightness(150%); /* Make logos visible on dark background */
  opacity: 0.7;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.page-sports__partner-logo:hover {
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-text-content {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    min-height: 450px;
  }

  .page-sports__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-sports__tagline {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }

  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .page-sports a[class*="button"],
  .page-sports a[class*="btn"] {
    max-width: 100% !important;
    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__section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-sports__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .page-sports__features-grid,
  .page-sports__steps-grid,
  .page-sports__market-categories,
  .page-sports__promos-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .page-sports__partners-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 15px;
  }

  .page-sports__about-section,
  .page-sports__how-to-start-section,
  .page-sports__popular-markets-section,
  .page-sports__promotions-section,
  .page-sports__faq-section,
  .page-sports__partners-section {
    padding: 50px 0;
  }

  .page-sports__container {
    padding: 20px 0;
  }

  /* Mobile image responsiveness */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-sports__section,
  .page-sports__card,
  .page-sports__container,
  .page-sports__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile: controlled by shared's media */
  }

  .page-sports__faq-question,
  .page-sports__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-sports__main-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }
  .page-sports__tagline {
    font-size: clamp(0.85rem, 2.8vw, 1rem);
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
  .page-sports__partners-grid {
    grid-template-columns: 1fr;
  }
}