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

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

.page-sports__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #F2C14E; /* Primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-sports__hero-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #111111 100%); /* Dark background with subtle gradient */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.page-sports__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
  display: block;
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: var(--header-offset, 120px); /* Desktop: Ensure content is below fixed header */
}

.page-sports__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.page-sports__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-sports__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

.page-sports__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #3A2A12; /* Border */
}

.page-sports__btn-secondary:hover {
  transform: translateY(-3px);
  background: #1d1d1d;
  box-shadow: 0 8px 15px rgba(255, 211, 107, 0.2);
}

.page-sports__intro-section,
.page-sports__sports-tongits,
.page-sports__faq-section,
.page-sports__cta-banner {
  padding: 60px 0;
}

.page-sports__online-experience,
.page-sports__promotions-section {
  padding: 60px 0;
}

.page-sports__dark-bg {
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

.page-sports__light-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main - still light for contrast on dark card bg */
}

.page-sports__content-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-sports__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-sports__text-block p {
  margin-bottom: 20px;
}

.page-sports__text-block a {
  color: #FFD36B; /* Glow */
  text-decoration: none;
  font-weight: 600;
}

.page-sports__text-block a:hover {
  text-decoration: underline;
}

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

.page-sports__content-image--left {
  float: left;
  margin-right: 30px;
  max-width: 40%;
}

.page-sports__content-image--right {
  float: right;
  margin-left: 30px;
  max-width: 40%;
}

.page-sports__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-sports__faq-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background: #1A1A1A;
  color: #FFF6D6; /* Text Main */
  font-weight: 700;
  font-size: 1.1rem;
}

.page-sports__faq-question:hover {
  background: #252525;
}

.page-sports__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  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 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

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

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

.page-sports__cta-banner {
  text-align: center;
  background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Brand colors for strong CTA */
  color: #0A0A0A; /* Dark text for contrast */
  padding: 80px 0;
}

.page-sports__cta-banner .page-sports__section-title {
  color: #0A0A0A; /* Dark text for contrast */
  margin-bottom: 20px;
}

.page-sports__cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #333333;
}

.page-sports__cta-banner .page-sports__btn-primary {
  background: #0A0A0A; /* Dark background for button */
  color: #FFD36B; /* Glow color for text */
  border: 2px solid #3A2A12; /* Border */
}

.page-sports__cta-banner .page-sports__btn-primary:hover {
  background: #1a1a1a;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.page-sports__cta-banner .page-sports__btn-secondary {
  background: #FFF6D6; /* Light background for button */
  color: #DDA11D; /* Darker brand color for text */
  border: 2px solid #DDA11D;
}

.page-sports__cta-banner .page-sports__btn-secondary:hover {
  background: #ffffff;
  box-shadow: 0 8px 15px rgba(221, 161, 29, 0.4);
}

.highlight {
  color: #FFD36B; /* Auxiliary color for highlights */
  font-weight: 600;
}

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

/* Clear floats */
.page-sports__content-grid::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-sports__hero-content {
    padding-top: var(--header-offset, 100px); /* Adjust for smaller screens */
  }
  .page-sports__content-image--left,
  .page-sports__content-image--right {
    float: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-content {
    padding-top: var(--header-offset, 100px) !important; /* Mobile: Ensure content is below fixed header */
  }

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

  .page-sports__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

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

  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-sports__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

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

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

  .page-sports__content-image {
    margin: 20px 0;
  }
}

/* Ensure content area images are not too small */
.page-sports__text-block img {
  min-width: 200px;
  min-height: 200px;
}

/* Contrast fixes for light-bg sections if text becomes hard to read */
.page-sports__light-bg p,
.page-sports__light-bg li {
  color: #FFF6D6; /* Ensure light text on #111111 background */
}

.page-sports__cta-banner p {
  color: #333333; /* Dark text on gradient background */
}