.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #000000; /* Ensure body background is respected */
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  min-height: 600px; /* Minimum height for hero section */
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-sports__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-sports__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-sports__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-sports__section {
  padding: 80px 20px;
  text-align: center;
  color: #f0f0f0; /* Default text color for sections */
}

.page-sports__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.page-sports__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-sports__section-subtitle {
  font-size: 1.1em;
  margin-bottom: 60px;
  color: #cccccc;
}

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

.page-sports__introduction .page-sports__content-grid {
  flex-direction: row;
}

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

.page-sports__text-block p {
  margin-bottom: 20px;
  color: #f0f0f0;
  font-size: 1.05em;
}

.page-sports__image-right {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 800px; /* Display width */
  height: 600px; /* Display height */
}

.page-sports__read-more-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-sports__read-more-link:hover {
  color: #5ac4f8;
}

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

.page-sports__sport-card, .page-sports__feature-card, .page-sports__promo-card, .page-sports__advantage-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__sport-card:hover, .page-sports__feature-card:hover, .page-sports__promo-card:hover, .page-sports__advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.page-sports__sport-image, .page-sports__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__feature-icon, .page-sports__advantage-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__sport-title, .page-sports__feature-title, .page-sports__promo-title, .page-sports__advantage-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports__sport-title a, .page-sports__promo-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-sports__sport-title a:hover, .page-sports__promo-title a:hover {
  color: #5ac4f8;
}

.page-sports__sport-description, .page-sports__feature-description, .page-sports__promo-description, .page-sports__advantage-description {
  color: #cccccc;
  font-size: 0.95em;
}

.page-sports__cta-center {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-sports__btn-primary, .page-sports__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-sports__btn-primary:hover {
  background-color: #1e87bb;
  border-color: #1e87bb;
  transform: translateY(-3px);
}

.page-sports__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-sports__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-3px);
}

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

.page-sports__step-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-align: left;
  position: relative;
  padding-left: 60px;
}

.page-sports__step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 30px;
  left: 20px;
  background-color: #26A9E0;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-sports__step-card:nth-child(1)::before { content: '1'; }
.page-sports__step-card:nth-child(2)::before { content: '2'; }
.page-sports__step-card:nth-child(3)::before { content: '3'; }
.page-sports__step-card:nth-child(4)::before { content: '4'; }

.page-sports__step-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports__step-description {
  color: #cccccc;
  font-size: 0.95em;
}

.page-sports__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-sports__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  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 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
  font-size: 1em;
}

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

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

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

.page-sports__advantage-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.page-sports__advantage-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports__advantage-description {
  color: #cccccc;
  font-size: 0.95em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }
  .page-sports__hero-description {
    font-size: 1.1em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    height: auto;
    min-height: 500px;
    padding: 100px 20px 60px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-sports__hero-title {
    font-size: 2.2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__btn-primary, .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }
  
  .page-sports__section {
    padding: 60px 0;
  }
  .page-sports__content-grid {
    flex-direction: column;
  }
  .page-sports__image-right {
    max-width: 100%;
    margin-top: 30px;
  }
  .page-sports__sport-image, .page-sports__promo-image {
    height: 180px;
  }
  .page-sports__feature-icon, .page-sports__advantage-icon {
    min-width: 200px;
    min-height: 200px;
    width: 80px;
    height: 80px;
  }
  .page-sports__container {
    padding: 0 15px;
  }
  
  /* Mobile responsive images/videos/buttons */
  .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-section,
  .page-sports__video-section,
  .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-x: hidden !important;
  }
  
  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .page-sports__cta-button,
  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .page-sports a[class*="button"],
  .page-sports a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__section-subtitle {
    font-size: 0.9em;
  }
}

/* Ensure images in content area are not too small */
.page-sports__content-area img,
.page-sports__text-block img,
.page-sports__sport-card img,
.page-sports__feature-card img,
.page-sports__promo-card img,
.page-sports__advantage-card img {
  min-width: 200px;
  min-height: 200px;
}

/* Override specific element sizes if needed for responsiveness while maintaining minimums */
.page-sports__image-right {
  width: 100%; /* Ensure it's responsive */
  height: auto; /* Maintain aspect ratio */
}

.page-sports__sport-image, .page-sports__promo-image {
  width: 100%;
  height: auto;
}

.page-sports__feature-icon, .page-sports__advantage-icon {
  width: 100%;
  height: auto;
  max-width: 200px; /* Example: If the original is 400x300, it can scale down to max 200px width for icons, but still respects min-width/height for content images */
}