/* style/sports.css */
.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-sports__section {
  padding: 60px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.page-sports__section-title {
  font-size: clamp(2em, 5vw, 2.8em);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-sports__main-title {
  font-size: clamp(2.5em, 6vw, 3.5em);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-sports__description,
.page-sports__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-sports__cta-button--secondary {
  background: none;
  border: 2px solid #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
  box-shadow: none;
}

.page-sports__cta-button--secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Divider with opacity */
  transform: translateY(-2px);
}

.page-sports__cta-button--centered {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding */
}

.page-sports__hero-image-wrapper {
  width: 100%;
  position: relative;
}

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

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 1000px;
  margin-top: -100px; /* Adjust to overlap slightly with image below */
  background-color: rgba(17, 39, 27, 0.9); /* Card BG with opacity */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-50px); /* Lift content slightly */
}

.page-sports__features-grid,
.page-sports__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}

.page-sports__feature-card,
.page-sports__promotion-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports__feature-card:hover,
.page-sports__promotion-card:hover {
  transform: translateY(-5px);
}

.page-sports__feature-title,
.page-sports__promotion-title,
.page-sports__list-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports__feature-text,
.page-sports__promotion-text,
.page-sports__list-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-sports__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
}

.page-sports__image-centered {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
}

.page-sports__list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-sports__numbered-list {
  list-style: decimal;
  padding-left: 20px;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
  color: #F2FFF6;
}

.page-sports__list-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  border-left: 5px solid #2AD16F;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__list-item:last-child {
  margin-bottom: 0;
}

.page-sports__container--flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  gap: 40px;
}

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

.page-sports__image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.page-sports__mobile-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

.page-sports__app-benefits-list .page-sports__list-item {
  background: none;
  border: none;
  padding: 10px 0;
  margin-bottom: 5px;
  border-left: 3px solid #2AD16F;
  padding-left: 15px;
  box-shadow: none;
  font-size: 1.05em;
  color: #A7D9B8;
}

.page-sports__faq-list {
  margin-top: 40px;
  width: 100%;
  max-width: 900px;
  text-align: left;
}

.page-sports__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-sports__faq-item[open] {
  background-color: #0A4B2C; /* Deep Green */
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none; /* For details/summary */
}

.page-sports__faq-question::-webkit-details-marker {
  display: none;
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F; /* Button top color */
  margin-left: 15px;
}

.page-sports__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

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

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

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

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

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

  .page-sports__description,
  .page-sports__text-block {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-sports__hero-content {
    padding: 20px 15px;
    margin-top: -50px;
    transform: translateY(-25px);
  }

  .page-sports__features-grid,
  .page-sports__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .page-sports__feature-card,
  .page-sports__promotion-card {
    padding: 20px;
  }

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

  .page-sports__list-item {
    padding: 15px;
    margin-bottom: 15px;
  }

  .page-sports__container--flex {
    flex-direction: column;
    gap: 30px;
  }

  .page-sports__text-content,
  .page-sports__image-content {
    min-width: unset;
    width: 100%;
  }

  .page-sports__mobile-screenshot {
    max-width: 80%;
  }

  .page-sports__cta-button {
    font-size: 1em;
    padding: 12px 20px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-sports__cta-button--centered {
    margin-top: 20px;
  }

  .page-sports__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-sports__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  /* Ensure images and videos are responsive */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-sports video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports__section,
  .page-sports__card,
  .page-sports__container,
  .page-sports__hero-content,
  .page-sports__video-container,
  .page-sports__video-wrapper,
  .page-sports__cta-buttons,
  .page-sports__button-group,
  .page-sports__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }
  
  /* Video section specific padding for mobile */
  .page-sports__video-section {
    padding-top: 10px !important;
  }
}

/* Desktop video width for flex containers */
.page-sports__video-container {
  width: 100%; /* Ensure it takes full width within max-width */
}

/* Contrast fixes for critical areas */
.page-sports p,
.page-sports li,
.page-sports__feature-text,
.page-sports__promotion-text,
.page-sports__list-text,
.page-sports__faq-answer p {
  color: #A7D9B8; /* Secondary text color */
}

.page-sports__feature-title,
.page-sports__promotion-title,
.page-sports__list-title,
.page-sports__faq-question {
  color: #F2FFF6; /* Main text color */
}

.page-sports__cta-button {
  color: #F2FFF6; /* Always white text on button gradient */
}

.page-sports__section-title,
.page-sports__main-title {
  color: #F2C14E; /* Gold for main titles */
}