/* style/sports.css */
.page-sports {
  color: #333333;
}

.page-sports__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background for hero content readability */
  color: #ffffff;
  text-align: center;
}

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

.page-sports__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-sports__hero-content {
  max-width: 800px;
}

.page-sports__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107; /* Accent color for title */
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #f0f0f0;
}

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

.page-sports__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-sports__button--primary {
  background-color: #ffc107; /* Accent color for primary action */
  color: #000000;
}

.page-sports__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-sports__button--secondary {
  background-color: #007bff; /* Main color for secondary action */
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-sports__button--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-sports__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-sports__button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

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

.page-sports__section-title {
  font-size: 2.8em;
  color: #007bff; /* Main color for section 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: #ffc107; /* Accent underline */
  border-radius: 2px;
}

.page-sports__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.page-sports__sub-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 20px;
}

/* Overview Section */
.page-sports__overview-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-sports__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-sports__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-sports__feature-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-sports__feature-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-sports__live-betting-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.page-sports__live-betting-image {
  flex: 1 1 45%;
  min-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-sports__live-betting-text {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-sports__live-betting-text ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.page-sports__live-betting-text li {
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-sports__live-betting-text li::before {
  content: '✔';
  color: #ffc107;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-sports__mobile-app-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap-reverse; /* Image on right, text on left for desktop, reversed on mobile */
}

.page-sports__mobile-app-image {
  flex: 1 1 40%;
  min-width: 250px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
  margin: 0 auto;
}

.page-sports__mobile-app-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-sports__download-note {
  margin-top: 20px;
  font-style: italic;
  color: #666666;
}

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

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

.page-sports__promo-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-sports__promo-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-sports__promo-text {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-sports__view-all-promos {
  text-align: center;
  margin-top: 50px;
}

/* Trust Section */
.page-sports__trust-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-sports__trust-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.page-sports__trust-image {
  flex: 1 1 45%;
  min-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-sports__trust-text {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-sports__trust-text ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.page-sports__trust-text li {
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-sports__trust-text li::before {
  content: '✅';
  color: #007bff;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-sports__cta-container {
  padding: 40px 20px;
  border-radius: 15px;
  background: linear-gradient(45deg, #007bff, #0056b3); /* Gradient background */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-sports__cta-title {
  font-size: 3em;
  color: #ffc107; /* Accent color for CTA title */
  margin-bottom: 20px;
}

.page-sports__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

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

.page-sports__faq-question {
  font-size: 1.4em;
  color: #007bff;
  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;
  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;
  line-height: 1.6;
  display: none;
  margin-top: 15px;
}

.page-sports__faq-answer.active {
  display: block;
}

.page-sports__faq-answer a {
  color: #007bff;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }
  .page-sports__hero-description {
    font-size: 1.1em;
  }
  .page-sports__section-title {
    font-size: 2.2em;
  }
  .page-sports__sub-title {
    font-size: 1.8em;
  }
  .page-sports__live-betting-content, .page-sports__mobile-app-content, .page-sports__trust-content {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__live-betting-image, .page-sports__mobile-app-image, .page-sports__trust-image {
    flex: 1 1 100%;
    max-width: 80%;
  }
  .page-sports__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-container {
    padding: 60px 15px;
  }
  .page-sports__hero-title {
    font-size: 2.2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__button {
    width: 100%;
    max-width: 300px;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-sports__sub-title {
    font-size: 1.5em;
  }
  .page-sports__features-grid, .page-sports__promotions-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__feature-card, .page-sports__promo-card {
    padding: 20px;
  }
  .page-sports__feature-image, .page-sports__promo-image {
    height: 200px;
  }
  .page-sports__live-betting-image, .page-sports__mobile-app-image, .page-sports__trust-image {
    max-width: 95%;
  }
  .page-sports__cta-title {
    font-size: 2em;
  }
  .page-sports__cta-description {
    font-size: 1em;
  }
  .page-sports__faq-question {
    font-size: 1.2em;
  }
  
  /* Mobile content area images must not overflow */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
  .page-sports {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }
  .page-sports__hero-description {
    font-size: 0.9em;
  }
  .page-sports__section-title {
    font-size: 1.6em;
  }
  .page-sports__button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
  .page-sports__cta-title {
    font-size: 1.8em;
  }
}