.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main on Background #0A0A0A */
  background-color: transparent; /* Body background is handled by shared.css var(--page-bg) */
}

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

.page-sports__section {
  padding: 60px 0;
}

.page-sports__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Main brand color for titles */
  line-height: 1.2;
}

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

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Desktop fixed header spacing */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  background-color: #0A0A0A; /* Fallback background, matches body */
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between image and content */
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no CSS filter is applied */
}

.page-sports__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 15px 60px;
  box-sizing: border-box;
}

.page-sports__main-title {
  font-weight: bold;
  color: #F2C14E; /* Brand color for H1 */
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5); /* Subtle glow */
}

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

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

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

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
  transform: translateY(-2px);
}

.page-sports__btn-secondary {
  background: transparent;
  color: #F2C14E;
  border: 2px solid #F2C14E;
}

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

.page-sports__btn-link {
  background: none;
  border: none;
  color: #FFD36B;
  text-decoration: underline;
  padding: 0;
}

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

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

/* Feature Grid */
.page-sports__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__feature-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__feature-icon {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
  display: block;
  filter: none;
}

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

.page-sports__feature-text {
  color: #FFF6D6;
}

/* Market Grid */
.page-sports__market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-sports__market-card {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__market-title {
  font-size: 1.3em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-sports__market-text {
  color: #FFF6D6;
}

/* Live Betting Section */
.page-sports__live-betting-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

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

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

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

.page-sports__live-betting-subtitle {
  font-size: 1.8em;
  color: #F2C14E;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-sports__live-betting-paragraph {
  color: #FFF6D6;
  margin-bottom: 20px;
}

/* How to Start Section */
.page-sports__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__step-card {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-top: 60px;
}

.page-sports__step-number {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(242, 193, 78, 0.5);
}

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

.page-sports__step-text {
  color: #FFF6D6;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-sports__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__promo-card {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
}

.page-sports__promo-image {
  width: 100%;
  height: 200px; /* Consistent height for promo images */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  filter: none;
}

.page-sports__promo-title {
  font-size: 1.5em;
  color: #F2C14E;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-sports__promo-text {
  color: #FFF6D6;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* Mobile App Section */
.page-sports__mobile-app-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-sports__mobile-app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-sports__mobile-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  filter: none;
}

.page-sports__mobile-app-content {
  flex: 1;
  min-width: 300px;
}

.page-sports__mobile-app-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  color: #FFF6D6;
}

.page-sports__mobile-app-benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-sports__mobile-app-benefits li::before {
  content: '✓';
  color: #FFD36B;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-sports__app-download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-sports__faq-list {
  margin-top: 40px;
}

.page-sports__faq-item {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 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;
  color: #F2C14E;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

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

.page-sports__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

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

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

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

.page-sports__cta-content .page-sports__section-title {
  color: #0A0A0A;
}

.page-sports__cta-content .page-sports__section-description {
  color: #333333; /* Darker text for readability on lighter background */
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-sports__section-title {
    font-size: 2em;
  }
  .page-sports__main-title {
    font-size: 2.5em;
  }
  .page-sports__live-betting-content,
  .page-sports__mobile-app-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__live-betting-text,
  .page-sports__mobile-app-content {
    order: 2;
  }
  .page-sports__live-betting-image-wrapper,
  .page-sports__mobile-app-image-wrapper {
    order: 1;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: auto;
  }
  .page-sports__main-title {
    font-size: 2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-cta-buttons,
  .page-sports__app-download-buttons,
  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .page-sports__btn-link {
    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__features-grid,
  .page-sports__market-grid,
  .page-sports__steps-grid,
  .page-sports__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__hero-image-wrapper {
    max-height: 300px;
  }
  
  .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__feature-card,
  .page-sports__market-card,
  .page-sports__step-card,
  .page-sports__promo-card,
  .page-sports__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__section {
    padding: 40px 0;
  }
  .page-sports__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-sports__faq-answer {
    padding: 0 20px;
  }
  .page-sports__faq-item.active .page-sports__faq-answer {
    padding: 10px 20px;
  }
}

.page-sports img {
  filter: none; /* Ensure no CSS filter is applied to any image */
}