.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: var(--deep-navy); /* Body background from shared.css */
}

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

.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  background-color: var(--deep-navy);
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-sports__hero-content {
  position: relative; /* Ensure content is above image but not overlapping its visible area */
  z-index: 10;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -80px; /* Pull content up slightly, but not over image */
  background: linear-gradient(0deg, var(--deep-navy) 0%, rgba(8, 22, 43, 0.8) 50%, rgba(8, 22, 43, 0) 100%);
}

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

.page-sports__hero-description {
  font-size: 1.2rem;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-sports__cta-button--centered {
  display: block;
  margin: 40px auto 0;
  max-width: 300px;
}

.page-sports__cta-button--secondary {
  background: #10233F; /* Card BG */
  border: 2px solid #244D84; /* Border */
  color: #F3F8FF;
}

.page-sports__cta-button--secondary:hover {
  background: #1B3357; /* Divider */
  border-color: #4FA8FF; /* Glow */
  color: #F2C14E;
}

.page-sports__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-sports__text-block {
  font-size: 1.1rem;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-sports__text-block a {
  color: #2B73F6; /* A shade of blue from button */
  text-decoration: none;
  font-weight: bold;
}

.page-sports__text-block a:hover {
  text-decoration: underline;
}

.page-sports__intro-section,
.page-sports__benefits-section,
.page-sports__faq-section {
  padding: 60px 0;
  background-color: var(--deep-navy);
}

.page-sports__sports-types,
.page-sports__guide-section,
.page-sports__cta-section {
  padding: 60px 0;
  background-color: #10233F; /* Card BG, a darker blue */
}

.page-sports__dark-bg {
  background-color: var(--deep-navy);
  color: #F3F8FF;
}

.page-sports__light-bg {
  background-color: #10233F; /* Card BG, a darker blue */
  color: #F3F8FF;
}

.page-sports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__card {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

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

.page-sports__card-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-sports__card-text {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-sports__card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 20px;
  text-align: center;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-sports__card-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

.page-sports__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-sports__benefits-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #F3F8FF; /* Text Main */
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.page-sports__benefits-item:hover {
  transform: translateX(10px);
}

.page-sports__benefits-item strong {
  color: #F2C14E; /* Gold */
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}

.page-sports__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-step;
  margin-top: 40px;
}

.page-sports__guide-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 70px;
  color: #F3F8FF; /* Text Main */
}

.page-sports__guide-item::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #2B73F6;
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-sports__guide-step-title {
  color: #F2C14E; /* Gold */
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-sports__guide-step-description {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
}

.page-sports__faq-list {
  margin-top: 40px;
}

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

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  background-color: #1B3357; /* Divider - slightly darker for summary */
  transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
  background-color: #244D84; /* Border - darker on hover */
}

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

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

.page-sports__faq-qtext {
  flex-grow: 1;
  color: #F2C14E; /* Gold */
}

.page-sports__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  width: 30px;
  text-align: center;
  color: #F2C14E; /* Gold */
}

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

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

.page-sports__faq-item[open] .page-sports__faq-question {
  background-color: #244D84; /* Border - active state */
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
  content: '−';
}

.page-sports__cta-container {
  text-align: center;
}

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


/* Responsive styles */
@media (max-width: 1024px) {
  .page-sports__hero-content {
    margin-top: -60px;
    padding: 30px 20px;
  }
  .page-sports__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-sports__hero-description {
    font-size: 1.1rem;
  }
  .page-sports__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

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

  .page-sports__hero-section {
    padding-bottom: 40px;
  }

  .page-sports__hero-image-wrapper {
    max-height: 400px;
  }

  .page-sports__hero-content {
    margin-top: -40px;
    padding: 20px 15px;
  }

  .page-sports__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-sports__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

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

  .page-sports__cta-button--centered {
    max-width: 100% !important;
    width: 100% !important;
    margin: 30px auto 0;
  }

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

  .page-sports__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .page-sports__text-block {
    font-size: 1rem;
  }

  .page-sports__intro-section,
  .page-sports__benefits-section,
  .page-sports__faq-section,
  .page-sports__sports-types,
  .page-sports__guide-section,
  .page-sports__cta-section {
    padding: 40px 0;
  }

  .page-sports__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__card {
    margin: 0 15px;
  }

  .page-sports__card-image {
    height: 180px;
  }

  .page-sports__card-title {
    font-size: 1.2rem;
    padding: 15px 15px 8px;
  }

  .page-sports__card-text {
    font-size: 0.95rem;
    padding: 0 15px 15px;
  }

  .page-sports__card-button {
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    padding: 10px 15px;
    font-size: 0.95rem;
  }

  .page-sports__benefits-item,
  .page-sports__guide-item,
  .page-sports__faq-item {
    margin: 0 15px 15px;
    padding: 15px;
    padding-left: 60px;
  }
  
  .page-sports__guide-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    left: 15px;
    top: 15px;
  }

  .page-sports__benefits-item strong {
    font-size: 1.1rem;
  }

  .page-sports__guide-step-title {
    font-size: 1.1rem;
  }

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

  .page-sports__faq-qtext {
    font-size: 1.1rem;
  }

  .page-sports__faq-toggle {
    font-size: 1.5rem;
    width: 25px;
  }

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

  /* Mobile image responsiveness */
  .page-sports img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-sports__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports__section,
  .page-sports__card,
  .page-sports__container,
  .page-sports__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-sports__intro-section,
  .page-sports__sports-types,
  .page-sports__benefits-section,
  .page-sports__guide-section,
  .page-sports__faq-section,
  .page-sports__cta-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-sports__video-section { /* No video in this page, but keeping for completeness if it were */
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-content {
    margin-top: -30px;
  }
  .page-sports__hero-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-sports__hero-description {
    font-size: 0.9rem;
  }
  .page-sports__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
}