.page-sports {
  color: #ffffff; /* Body background is #000000, so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* body handles header-offset, this is for visual spacing */
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #26A9E0, #007bb6);
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-sports__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__intro-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-sports__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-sports__btn-primary:hover {
  background-color: #d16b00;
  border-color: #d16b00;
  transform: translateY(-2px);
}

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

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

.page-sports__btn-centered {
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
  width: fit-content;
}

.page-sports__btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.page-sports__section {
  padding: 80px 20px;
  text-align: center;
  color: #ffffff; /* Default for dark body background */
}

.page-sports__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: #26A9E0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

.page-sports__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-sports__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

.page-sports__about-sports {
  background-color: rgba(0, 0, 0, 0.7); /* Slightly lighter dark background */
}

.page-sports__why-choose {
  background-color: #0d0d0d; /* Darker background */
  color: #ffffff;
}

.page-sports__light-bg {
  background-color: #1a1a1a; /* Lighter dark background for contrast */
  color: #ffffff;
}

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

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

.page-sports__feature-item {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white card background */
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
}

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

.page-sports__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-sports__feature-description {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-sports__image-card {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

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

.page-sports__sports-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
}

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

.page-sports__sports-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-sports__sports-description {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-sports__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__guide-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
  color: #ffffff;
}

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

.page-sports__guide-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-sports__guide-step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports__guide-item p {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-sports__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  text-align: left;
}

.page-sports__promo-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.page-sports__promo-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports__promo-item p {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-sports__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__security-item {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #f0f0f0;
}

.page-sports__security-item::before {
  content: '✓';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: 700;
}

.page-sports__faq-section {
  background-color: #1a1a1a;
}

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

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

.page-sports__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #26A9E0;
  transition: background-color 0.3s ease;
}

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

.page-sports__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-sports__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff;
}

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

.page-sports__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-sports__conclusion {
  background-color: #000000;
  padding-bottom: 100px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-sports__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }
  .page-sports__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-sports__intro-text {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }
  .page-sports__section {
    padding: 60px 15px;
  }
  .page-sports__section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }
  .page-sports__text-block {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }
  .page-sports__hero-image {
    max-height: 400px;
  }
  .page-sports__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-sports__intro-text {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }
  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-sports__section {
    padding: 40px 15px;
  }
  .page-sports__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .page-sports__text-block,
  .page-sports__feature-description,
  .page-sports__sports-description,
  .page-sports__guide-item p,
  .page-sports__promo-item p,
  .page-sports__security-item,
  .page-sports__faq-answer {
    font-size: 0.95rem;
  }
  .page-sports__image-content,
  .page-sports__image-card {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-sports__container,
  .page-sports__feature-grid,
  .page-sports__sports-list,
  .page-sports__promo-list,
  .page-sports__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-sports__feature-item,
  .page-sports__sports-item,
  .page-sports__guide-item,
  .page-sports__promo-item,
  .page-sports__faq-item {
    padding: 20px;
  }
  .page-sports__feature-title,
  .page-sports__sports-title,
  .page-sports__guide-step-title,
  .page-sports__promo-title,
  .page-sports__faq-item summary {
    font-size: 1.1rem;
  }
  .page-sports__faq-toggle {
    font-size: 1.5rem;
  }
}