.page-sports {
  font-family: 'Arial', sans-serif;
  color: #F3F8FF; /* Text Main */
  background-color: transparent; /* Body background is #08162B from shared.css */
}

.page-sports__section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.page-sports__section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-sports__section-subtitle {
  font-size: 18px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-sports__highlight {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

/* HERO Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-sports__hero-container {
  position: relative;
  max-width: 1200px;
  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;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-sports__main-title {
  color: #F3F8FF; /* Text Main */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  font-size: clamp(32px, 5vw, 48px); /* Using clamp for responsive H1 */
}

.page-sports__description {
  font-size: 19px;
  color: #AFC4E8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button custom color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 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(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-sports__cta-button--large {
  padding: 18px 50px;
  font-size: 22px;
}

.page-sports__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button custom color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-1px);
}

.page-sports__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #1D5FD1; /* Auxiliary color */
  border: 2px solid #1D5FD1;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-sports__btn-secondary:hover {
  background: #1D5FD1;
  color: #ffffff;
  transform: translateY(-1px);
}

.page-sports__btn-secondary--large {
  padding: 18px 50px;
  font-size: 22px;
}

/* About Sports Section */
.page-sports__about-sports .page-sports__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-sports__about-sports .page-sports__text-block {
  flex: 1;
}

.page-sports__about-sports .page-sports__text-block p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #AFC4E8;
}

.page-sports__about-sports .page-sports__image-wrapper {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__about-sports .page-sports__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Popular Sports Section */
.page-sports__popular-sports .page-sports__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-sports__card {
  background: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border custom color */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-sports__card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-sports__card-title {
  font-size: 22px;
  font-weight: 600;
  color: #F3F8FF; /* Text Main */
  margin: 20px 20px 10px 20px;
}

.page-sports__card-description {
  font-size: 15px;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-sports__card .page-sports__btn-primary {
  margin: 0 20px 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
}

/* Features Section */
.page-sports__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-sports__feature-item {
  background: #10233F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border custom color */
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-sports__feature-item img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports__feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 10px;
}

.page-sports__feature-description {
  font-size: 15px;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
}

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

.page-sports__promo-card {
  background: #10233F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border custom color */
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.page-sports__promo-title {
  font-size: 22px;
  font-weight: 600;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 15px;
}

.page-sports__promo-description {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Guide Section */
.page-sports__guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-sports__guide-step {
  background: #10233F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border custom color */
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.page-sports__guide-title {
  font-size: 20px;
  font-weight: 600;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 10px;
}

.page-sports__guide-description {
  font-size: 15px;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Safety & Support Section */
.page-sports__safety-content {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-sports__safety-text {
  flex: 1;
}

.page-sports__safety-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #AFC4E8;
}

.page-sports__safety-text .page-sports__cta-button {
  margin-top: 0;
}

.page-sports__safety-content .page-sports__image-wrapper {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__safety-content .page-sports__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* FAQ Section */
.page-sports__faq-list {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

details.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #244D84; /* Border custom color */
  overflow: hidden;
  background: #10233F; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-sports__faq-item summary.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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); /* Light hover effect */
}

.page-sports__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #F3F8FF; /* Text Main */
  text-align: left;
}

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

details.page-sports__faq-item .page-sports__faq-answer {
  padding: 0 20px 20px;
  background: #08162B; /* Deep Navy - slightly darker for answer background */
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.7;
  text-align: left;
}

/* Final CTA Section */
.page-sports__cta-final {
  background: linear-gradient(180deg, #113B7A 0%, #08162B 100%); /* Main color gradient */
  padding: 80px 20px;
}

.page-sports__cta-final .page-sports__section-title {
  color: #F3F8FF;
}

.page-sports__cta-final .page-sports__section-subtitle {
  color: #AFC4E8;
  margin-bottom: 50px;
}

.page-sports__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__about-sports .page-sports__content-grid,
  .page-sports__safety-content {
    flex-direction: column;
  }

  .page-sports__about-sports .page-sports__image-wrapper,
  .page-sports__safety-content .page-sports__image-wrapper {
    order: -1; /* Image first on smaller screens */
    margin-bottom: 30px;
  }

  .page-sports__card img {
    
  }

  .page-sports__feature-item img {
    
  }
}

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

  .page-sports__hero-section {
    padding-top: 10px !important; /* body already handles offset */
    padding-bottom: 30px;
  }

  .page-sports__main-title {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 15px;
  }

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

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

  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    padding: 10px 25px;
    font-size: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-sports__btn-secondary--large,
  .page-sports__cta-button--large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 14px 35px;
    font-size: 18px;
  }

  .page-sports__button-group {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__section-title {
    font-size: clamp(24px, 6vw, 32px);
  }

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

  .page-sports__card img,
  .page-sports__feature-item img {
    
  }

  .page-sports__card-title,
  .page-sports__feature-title,
  .page-sports__promo-title,
  .page-sports__guide-title {
    font-size: 18px;
  }

  .page-sports__card-description,
  .page-sports__feature-description,
  .page-sports__promo-description,
  .page-sports__guide-description,
  .page-sports__about-sports .page-sports__text-block p,
  .page-sports__safety-text p {
    font-size: 15px;
  }

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

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

  .page-sports__faq-answer {
    font-size: 15px;
  }

  .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-container,
  .page-sports__hero-image,
  .page-sports__hero-content,
  .page-sports__content-grid,
  .page-sports__sports-grid,
  .page-sports__features-grid,
  .page-sports__promotions-grid,
  .page-sports__guide-grid,
  .page-sports__safety-content,
  .page-sports__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__card .page-sports__btn-primary {
    width: calc(100% - 0px); /* Adjust for padding on card itself */
    margin-left: 0;
    margin-right: 0;
  }
}

/* Global image styles to ensure responsiveness and prevent filter usage */
.page-sports img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Ensure no filter is applied */
  filter: none; 
}