.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: transparent; /* Body background handled by shared.css #08162B */
}

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

.page-sports__section--introduction .page-sports__content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-sports__section--introduction .page-sports__text-block {
  flex: 1;
}

.page-sports__section--introduction .page-sports__image-block {
  flex: 0 0 400px;
}

.page-sports__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F3F8FF; /* Text Main */
}

.page-sports__section-description {
  font-size: 18px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 40px;
}

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

.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom */
}

.page-sports__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-sports__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-sports__hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-description {
  font-size: 20px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-sports__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-sports__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
  margin-top: 15px;
}

.page-sports__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
  margin-top: 40px;
}

.page-sports__card {
  background: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border color */
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F3F8FF; /* Text Main */
}

.page-sports__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__card h3 {
  color: #F2C14E; /* Gold */
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-sports__card p {
  color: #AFC4E8; /* Text Secondary */
  font-size: 16px;
}

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

.page-sports__sports-list,
.page-sports__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

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

.page-sports__image-block--center {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-sports__button-container {
  margin-top: 40px;
  text-align: center;
}

.page-sports__section--cta-download {
  background: #08162B; /* Deep Navy */
  padding: 80px 20px;
}

.page-sports__section-title--light,
.page-sports__section-description--light {
  color: #F3F8FF;
}

.page-sports__container--center {
  text-align: center;
}

.page-sports__image-block--cta {
  max-width: 1000px;
  margin: 50px auto 0;
}

/* FAQ Styles */
details.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #244D84; /* Border color */
  overflow: hidden;
  background: #10233F; /* Card BG */
  color: #F3F8FF; /* Text Main */
}

details.page-sports__faq-item summary.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-weight: bold;
  color: #F2C14E; /* Gold */
}

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

details.page-sports__faq-item summary.page-sports__faq-question:hover {
  background: rgba(43, 115, 246, 0.1); /* Slightly lighter hover */
}

.page-sports__faq-qtext {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}

.page-sports__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #4FA8FF; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-sports__faq-item .page-sports__faq-answer {
  padding: 0 25px 25px;
  background: rgba(16, 35, 63, 0.8); /* Slightly transparent Card BG */
  border-radius: 0 0 10px 10px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 16px;
}

.page-sports__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
  color: #AFC4E8; /* Text Secondary */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 44px;
  }

  .page-sports__section-title {
    font-size: 32px;
  }

  .page-sports__section--introduction .page-sports__image-block {
    flex: 0 0 350px;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__hero-title {
    font-size: clamp(32px, 9vw, 40px);
    margin-bottom: 15px;
  }

  .page-sports__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

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

  .page-sports__section {
    padding: 40px 15px;
  }

  .page-sports__section-title {
    font-size: 28px;
  }

  .page-sports__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-sports__section--introduction .page-sports__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-sports__section--introduction .page-sports__image-block {
    flex: 1;
    width: 100%;
  }

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

  .page-sports__section,
  .page-sports__card,
  .page-sports__container,
  .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;
  }

  .page-sports__cta-button--small {
    padding: 10px 25px;
    font-size: 15px;
  }

  .page-sports__cta-button--large {
    padding: 15px 40px;
    font-size: 18px;
  }

  .page-sports__features-grid,
  .page-sports__promotions-grid,
  .page-sports__benefits-grid,
  .page-sports__sports-list,
  .page-sports__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__card {
    padding: 20px;
  }

  .page-sports__card h3 {
    font-size: 20px;
  }

  .page-sports__card p {
    font-size: 15px;
  }

  details.page-sports__faq-item summary.page-sports__faq-question {
    padding: 15px;
  }

  .page-sports__faq-qtext {
    font-size: 16px;
  }

  .page-sports__faq-toggle {
    font-size: 24px;
    width: 24px;
  }

  details.page-sports__faq-item .page-sports__faq-answer {
    padding: 0 15px 15px;
  }
}