.page-sports {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background #f4f4f4 */
  line-height: 1.6;
  background-color: #f4f4f4;
}

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

.page-sports__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep Red for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-sports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-sports__highlight-text {
  color: #8B0000; /* Deep Red for emphasis */
  font-weight: bold;
}

.page-sports__text-content {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
}

/* Hero Section */
.page-sports__hero-section {
  background: linear-gradient(135deg, #FFD700, #8B0000);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-sports__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  z-index: 1;
}

.page-sports__hero-section .page-sports__container {
  position: relative;
  z-index: 2;
}

.page-sports__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-sports__hero-title .page-sports__highlight-text {
  color: #FFD700; /* Gold highlight in title */
}

.page-sports__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep Red text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-sports__hero-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

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

/* About Section */
.page-sports__about-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-sports__feature-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-sports__feature-item:hover {
  transform: translateY(-5px);
}

.page-sports__feature-icon {
  width: 250px; /* Minimum 200px */
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 8px;
}

.page-sports__feature-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-sports__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Why Choose Us Section */
.page-sports__why-choose-us-section {
  background-color: #f4f4f4;
  padding: 60px 0;
}

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

.page-sports__reason-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #FFD700;
}

.page-sports__reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports__reason-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-sports__reason-description {
  font-size: 1.05em;
  color: #444444;
}

.page-sports__content-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* How To Play Section */
.page-sports__how-to-play-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-sports__step-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.page-sports__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.page-sports__step-item::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background-color: rgba(139, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.page-sports__step-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-sports__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-sports__step-button {
  display: inline-block;
  background-color: #8B0000; /* Deep Red button */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-sports__step-button:hover {
  background-color: #a00000;
}

/* Promotions Section */
.page-sports__promotions-section {
  background-color: #f4f4f4;
  padding: 60px 0;
  text-align: center;
}

.page-sports__promotions-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-sports__promotions-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

/* App Download Section */
.page-sports__app-download-section {
  background: linear-gradient(90deg, #8B0000, #FFD700);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-sports__app-download-section .page-sports__section-title {
  color: #ffffff;
}

.page-sports__app-download-section .page-sports__section-title::after {
  background-color: #ffffff;
}

.page-sports__app-download-section .page-sports__highlight-text {
  color: #ffffff;
}

.page-sports__app-download-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-sports__app-download-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

.page-sports__app-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-sports__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-sports__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-sports__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-sports__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-sports__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-sports__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-sports__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

/* CTA Section */
.page-sports__cta-section {
  background-color: #8B0000;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-sports__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold title */
}

.page-sports__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-sports__cta-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-sports__hero-title {
    font-size: 3em;
  }
  .page-sports__hero-description {
    font-size: 1.2em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
  .page-sports__reasons-grid, .page-sports__features-grid, .page-sports__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding: 80px 0;
  }
  .page-sports__hero-title {
    font-size: 2.5em;
  }
  .page-sports__hero-description {
    font-size: 1.1em;
  }
  .page-sports__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__cta-title {
    font-size: 2.2em;
  }
  .page-sports__cta-description {
    font-size: 1.1em;
  }
  .page-sports__cta-button {
    padding: 15px 30px;
    font-size: 1.3em;
  }
}

@media (max-width: 576px) {
  .page-sports__hero-section {
    padding: 60px 0;
  }
  .page-sports__hero-title {
    font-size: 2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__section-title {
    font-size: 1.5em;
  }
  .page-sports__features-grid, .page-sports__reasons-grid, .page-sports__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__feature-icon {
    width: 200px; /* Ensure minimum size */
    height: 150px;
  }
  .page-sports__cta-title {
    font-size: 1.8em;
  }
  .page-sports__cta-button {
    font-size: 1.1em;
  }
  .page-sports__faq-question {
    font-size: 1.1em;
  }
  .page-sports__faq-answer {
    font-size: 0.95em;
  }
}