.page-sports {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: var(--background); /* Body background from shared.css */
}

.page-sports__section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
}

.page-sports__section-title {
  font-size: 36px;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-sports__section-description {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

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

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
  background-color: #08160F;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

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

.page-sports__hero-content {
  text-align: center;
  padding: 0 20px 60px 20px;
  max-width: 900px;
}

.page-sports__hero-title {
  font-size: clamp(30px, 4vw, 56px); /* Responsive font size for H1 */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.page-sports__hero-description {
  font-size: 20px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-sports__btn-primary,
.page-sports__btn-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-sports__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-sports__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-sports__btn-secondary:hover {
  background: #57E38D; /* Glow */
  color: #08160F; /* Background */
  transform: translateY(-2px);
}

/* Introduction Section */
.page-sports__introduction-section {
  background-color: #08160F; /* Background */
}

.page-sports__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

/* Popular Sports Section */
.page-sports__popular-sports-section {
  background-color: #11271B; /* Card BG */
}

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

.page-sports__sport-card {
  background-color: #08160F; /* Background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D; /* Glow */
}

.page-sports__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-sports__card-title {
  font-size: 24px;
  color: #F2FFF6; /* Text Main */
  margin: 20px 20px 10px 20px;
  font-weight: bold;
}

.page-sports__card-text {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px 20px 20px;
  line-height: 1.6;
}

/* Betting Guide Section */
.page-sports__betting-guide-section {
  background-color: #08160F; /* Background */
}

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

.page-sports__guide-step {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
  text-align: center;
}

.page-sports__step-number {
  font-size: 48px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-sports__step-title {
  font-size: 22px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports__step-text {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-sports__guide-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

/* Advantages Section */
.page-sports__advantages-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main for light bg */
}

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

.page-sports__advantage-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__advantage-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__advantage-text {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-sports__advantages-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

/* Tips Section */
.page-sports__tips-section {
  background-color: #08160F; /* Background */
}

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

.page-sports__tip-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports__tip-title {
  font-size: 22px;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__tip-text {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-sports__tips-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

/* CTA Section */
.page-sports__cta-section {
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
  padding: 80px 20px;
}

.page-sports__cta-title {
  font-size: 38px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-sports__cta-description {
  font-size: 20px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

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

/* FAQ Section */
.page-sports__faq-section {
  background-color: #08160F; /* Background */
}

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

.page-sports__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
  background-color: #13994A; /* Darker green from button gradient */
}

.page-sports__faq-item[open] .page-sports__faq-question {
  background-color: #13994A; /* Darker green from button gradient */
}

.page-sports__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
}

.page-sports__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  background-color: #11271B; /* Card BG */
}

/* Hide default details marker */
.page-sports__faq-item summary::-webkit-details-marker {
  display: none;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports__section-title {
    font-size: 32px;
  }
  .page-sports__hero-title {
    font-size: clamp(28px, 5vw, 48px);
  }
  .page-sports__hero-description {
    font-size: 18px;
  }
  .page-sports__cta-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-sports__section {
    padding: 40px 15px;
  }
  .page-sports__hero-section {
    padding-bottom: 40px;
  }
  .page-sports__hero-image-wrapper {
    max-height: 400px;
  }
  .page-sports__hero-content {
    padding: 0 15px 40px 15px;
  }
  .page-sports__section-title {
    font-size: 28px;
  }
  .page-sports__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-sports__text-block {
    font-size: 15px;
  }
  .page-sports__sports-grid,
  .page-sports__guide-steps,
  .page-sports__advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-sports__card-title,
  .page-sports__step-title,
  .page-sports__advantage-title,
  .page-sports__tip-title {
    font-size: 20px;
  }
  .page-sports__card-text,
  .page-sports__step-text,
  .page-sports__advantage-text,
  .page-sports__tip-text,
  .page-sports__faq-answer {
    font-size: 15px;
  }
  .page-sports__cta-title {
    font-size: 28px;
  }
  .page-sports__cta-description {
    font-size: 18px;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-sports__hero-cta-buttons,
  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 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__sport-card,
  .page-sports__guide-step,
  .page-sports__advantage-item,
  .page-sports__tip-item,
  .page-sports__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__hero-section {
    padding-top: 10px !important;
  }
  .page-sports__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-sports__faq-toggle {
    font-size: 20px;
  }
}