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

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

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

.page-sports__card {
  background: #111111; /* Card background */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
  text-align: left;
}

.page-sports__section-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Highlight color for titles */
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-sports__section-description {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* HERO Section */
.page-sports__hero-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%); /* Darker gradient for hero background */
  padding-top: var(--header-offset, 120px); /* Desktop padding for fixed header */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-sports__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-sports__hero-title {
  font-size: clamp(2.5em, 4vw, 3.5em);
  font-weight: 700;
  color: #FFD36B; /* Glow color for main title */
  margin-bottom: 15px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.4);
}

.page-sports__hero-description {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

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

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for bright button */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

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

.page-sports__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow color for text */
  border: 2px solid #3A2A12; /* Border color */
}

.page-sports__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  border-color: #F2C14E;
  transform: translateY(-2px);
}

.page-sports__btn-link {
  background: transparent;
  color: #F2C14E;
  border: 1px solid transparent;
  padding: 8px 15px;
  font-size: 0.9em;
}

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

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

.page-sports__feature-card {
  text-align: center;
  padding: 30px;
}

.page-sports__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-sports__feature-text {
  font-size: 1em;
  color: #FFF6D6;
}

/* Popular Markets */
.page-sports__dark-section {
  background-color: #111111; /* Card BG for dark sections */
}

.page-sports__market-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-sports__category-card {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFF6D6;
}

.page-sports__category-card:hover {
  background-color: rgba(242, 193, 78, 0.1);
  border-color: #F2C14E;
  transform: translateY(-3px);
}

.page-sports__category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  object-fit: contain;
}

.page-sports__category-title {
  font-size: 1.2em;
  color: #F2C14E;
  margin-bottom: 5px;
}

.page-sports__category-text {
  font-size: 0.9em;
  color: #FFF6D6;
}

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

.page-sports__step-card {
  text-align: center;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__step-number {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(242, 193, 78, 0.5);
}

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

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

/* Mobile App Section */
.page-sports__mobile-app-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-sports__mobile-text-content {
  text-align: left;
  max-width: 600px;
}

.page-sports__app-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-sports__app-features li {
  display: flex;
  align-items: center;
  color: #FFF6D6;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-sports__app-features li img {
  
  
  margin-right: 15px;
  object-fit: contain;
}

.page-sports__mobile-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-sports__mobile-image-wrapper {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-sports__mobile-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Partners Section */
.page-sports__partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted minmax for 167px images */
  gap: 20px;
  margin-top: 40px;
  justify-items: center;
}

.page-sports__partner-logo {
  width: 167px; /* Fixed width */
  height: 127px; /* Fixed height */
  object-fit: contain;
  background-color: #111111; /* Card BG for logos */
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease;
}

.page-sports__partner-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.3);
}

/* FAQ Section */
.page-sports__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__faq-item {
  margin-bottom: 20px;
  text-align: left;
  overflow: hidden;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #1a1a1a;
  border-bottom: 1px solid #3A2A12;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
  background-color: #2a2a2a;
}

.page-sports__faq-question h3 {
  color: #F2C14E;
  font-size: 1.2em;
  margin: 0;
}

.page-sports__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  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 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  background-color: #111111;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

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

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

/* CTA Banner */
.page-sports__cta-banner {
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  padding: 80px 0;
}

.page-sports__cta-banner .page-sports__section-title {
  color: #111111; /* Dark text on bright background */
}

.page-sports__cta-banner .page-sports__section-description {
  color: #333333; /* Darker text for contrast */
}

.page-sports__cta-banner .page-sports__btn-primary {
  background: #111111;
  color: #F2C14E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-sports__cta-banner .page-sports__btn-primary:hover {
  background: #0A0A0A;
  color: #FFD36B;
}

.page-sports__cta-banner .page-sports__btn-secondary {
  background: transparent;
  color: #111111;
  border-color: #111111;
}

.page-sports__cta-banner .page-sports__btn-secondary:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
  border-color: #000000;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-sports__hero-content-wrapper {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .page-sports__hero-content {
    order: 1;
    text-align: left;
  }

  .page-sports__hero-image-wrapper {
    order: 2;
    margin-left: 40px;
  }

  .page-sports__mobile-app-content {
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }

  .page-sports__mobile-text-content {
    order: 1;
  }

  .page-sports__mobile-image-wrapper {
    order: 2;
  }
}

@media (max-width: 768px) {
  .page-sports__section {
    padding: 40px 0;
  }

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

  .page-sports__section-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-sports__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile padding for fixed header */
    padding-bottom: 40px;
  }

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

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

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

  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .page-sports__btn-link {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9em;
  }

  .page-sports__hero-image-wrapper {
    margin-top: 30px;
  }

  .page-sports__feature-grid,
  .page-sports__market-categories,
  .page-sports__steps-grid,
  .page-sports__partners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__card {
    padding: 20px;
  }

  .page-sports__feature-icon {
    width: 60px;
    height: 60px;
  }

  .page-sports__mobile-app-content {
    flex-direction: column;
  }

  .page-sports__mobile-image-wrapper {
    margin-top: 30px;
  }

  .page-sports__app-features li {
    font-size: 0.95em;
  }

  .page-sports__partner-logo {
    width: 120px; /* Smaller size for mobile */
    height: 90px; /* Maintain aspect ratio */
  }

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

  /* Ensure all images are responsive and do not overflow */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-sports__section,
  .page-sports__card,
  .page-sports__container,
  .page-sports__hero-content-wrapper,
  .page-sports__mobile-app-content,
  .page-sports__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}