/* style/sports.css */
.page-sports {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-sports__section-title {
  font-size: 2.5rem;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  position: relative;
}

.page-sports__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #FFD700;
  margin: 10px auto 0;
}

.page-sports__section-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #f0f0f0;
}

.page-sports__sub-title {
  font-size: 1.8rem;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-sports__text-block {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-sports__inline-link {
  color: #FFD700; /* Gold for inline links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-sports__inline-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Buttons */
.page-sports__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-sports__btn--primary {
  background-color: #FFD700; /* Gold for primary actions */
  color: #0A2342;
}

.page-sports__btn--primary:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-sports__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-sports__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-sports__btn--small {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.page-sports__btn--large {
  padding: 15px 35px;
  font-size: 1.2rem;
  margin-top: 30px;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2342; /* Dark blue background for hero */
  padding: 0;
}

.page-sports__hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure sufficient height */
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Slightly dim the background image */
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 60px 20px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
}

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

.page-sports__hero-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

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

.page-sports__feature-card {
  background-color: #0A2342; /* Dark blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__feature-icon {
  width: 200px; /* Min image size 200px */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-sports__feature-title {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-sports__feature-text {
  font-size: 1rem;
  color: #e0e0e0;
}

/* Sports Categories Section */
.page-sports__sports-categories-section {
  background-color: #0d0d0d;
  padding: 60px 0;
}

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

.page-sports__category-card {
  background-color: #0A2342;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports__category-image {
  width: 100%;
  height: 220px; /* Card image size */
  object-fit: cover;
}

.page-sports__category-title {
  font-size: 1.6rem;
  color: #FFD700;
  padding: 20px 15px 10px;
}

.page-sports__category-text {
  font-size: 0.95rem;
  color: #e0e0e0;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-sports__category-card .page-sports__btn {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

.page-sports__category-more {
  margin-top: 40px;
  text-align: center;
  color: #e0e0e0;
  font-size: 1rem;
}

/* Live Betting Section */
.page-sports__live-betting-section {
  background-color: #000000;
  padding: 60px 0;
}

.page-sports__live-betting-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-sports__live-betting-image {
  flex: 1 1 500px;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__live-betting-text {
  flex: 1 1 400px;
}

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

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

.page-sports__promo-card {
  background-color: #0A2342;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-sports__promo-title {
  font-size: 1.6rem;
  color: #FFD700;
  padding: 20px 15px 10px;
}

.page-sports__promo-text {
  font-size: 0.95rem;
  color: #e0e0e0;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-sports__promo-card .page-sports__btn {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

.page-sports__promo-info {
  margin-top: 40px;
  text-align: center;
  color: #e0e0e0;
  font-size: 1rem;
}

/* Mobile App Section */
.page-sports__mobile-app-section {
  background-color: #000000;
  padding: 60px 0;
}

.page-sports__mobile-app-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-sports__mobile-app-content {
  flex: 1 1 500px;
}

.page-sports__mobile-app-image {
  flex: 1 1 300px;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__app-features-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-sports__app-features-list li {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 10px 15px;
  border-left: 3px solid #FFD700;
  border-radius: 5px;
  font-size: 1rem;
  color: #e0e0e0;
}

.page-sports__list-strong {
  color: #FFD700;
}

/* Security Section */
.page-sports__security-section {
  background-color: #0d0d0d;
  padding: 60px 0;
}

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

.page-sports__security-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__security-icon {
  width: 200px; /* Min image size 200px */
  height: 133px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

/* How to Start Section */
.page-sports__how-to-start-section {
  background-color: #000000;
  padding: 60px 0;
}

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

.page-sports__step-card {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-sports__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #0A2342;
  font-size: 1.8rem;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #0A2342;
}

.page-sports__step-title {
  font-size: 1.5rem;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-sports__step-text {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-sports__step-card .page-sports__btn {
  width: 100%;
}

/* Tips Section */
.page-sports__tips-section {
  background-color: #0d0d0d;
  padding: 60px 0;
}

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

.page-sports__tip-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-sports__faq-accordion {
  margin-top: 50px;
}

.page-sports__faq-item {
  background-color: #0A2342;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__faq-question {
  font-size: 1.3rem;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.page-sports__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

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

.page-sports__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-sports__faq-answer.open {
  max-height: 300px; /* Adjust as needed */
  padding: 20px;
}

.page-sports__faq-answer p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 0;
}

/* CTA Section */
.page-sports__cta-section {
  background-color: #0A2342;
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}

.page-sports__cta-section .page-sports__section-title {
  color: #FFD700;
  padding-top: 0;
}

.page-sports__cta-section .page-sports__section-title::after {
  background: #FFD700;
}

.page-sports__cta-section .page-sports__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 3rem;
  }

  .page-sports__section-title {
    font-size: 2rem;
  }

  .page-sports__sub-title {
    font-size: 1.6rem;
  }

  .page-sports__live-betting-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-container {
    min-height: 500px;
  }
  
  .page-sports__hero-content {
    padding: 40px 15px;
  }

  .page-sports__hero-title {
    font-size: 2.5rem;
  }

  .page-sports__hero-description {
    font-size: 1.1rem;
  }

  .page-sports__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports__btn--secondary {
    margin-left: 0;
  }

  .page-sports__section-title {
    font-size: 1.8rem;
  }

  .page-sports__section-intro {
    font-size: 1rem;
  }

  .page-sports__features-grid, .page-sports__categories-grid, .page-sports__promo-grid, .page-sports__security-grid, .page-sports__steps-grid, .page-sports__tips-list {
    grid-template-columns: 1fr;
  }

  .page-sports__live-betting-content, .page-sports__mobile-app-flex {
    flex-direction: column;
  }

  .page-sports__mobile-app-image {
    max-width: 100%;
  }

  .page-sports__live-betting-image {
    width: 100%;
    height: auto; /* Ensure images are responsive */
    max-width: 100%; /* Prevent overflow */
  }

  /* Ensure all content area images are responsive and not too small */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }

  .page-sports__feature-icon, .page-sports__category-image, .page-sports__promo-image, .page-sports__security-icon {
    width: auto; /* Allow natural scaling */
    min-width: 200px; /* Enforce min width */
    max-width: 100%; /* Prevent overflow */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 2rem;
  }

  .page-sports__hero-description {
    font-size: 0.95rem;
  }

  .page-sports__section-title {
    font-size: 1.5rem;
  }

  .page-sports__sub-title {
    font-size: 1.4rem;
  }

  .page-sports__btn--large {
    font-size: 1rem;
    padding: 12px 25px;
  }
}