.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-sports__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-sports__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__btn-primary,
.page-sports__btn-secondary,
.page-sports__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-sports__btn-primary {
  background: #FFD700;
  color: #000000; /* Gold background, black text for contrast */
  border: 2px solid #FFD700;
}

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

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

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

.page-sports__btn-link {
  background: none;
  border: none;
  color: #FFD700;
  padding: 0;
  text-decoration: underline;
}

.page-sports__btn-link:hover {
  color: #e6c200;
}

/* HERO Section */
.page-sports__hero-section {
  position: relative;
  padding-top: 0; /* shared.css handles body padding-top */
  padding-bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  color: #ffffff;
  background-color: #0a0a0a;
}

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

.page-sports__hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 60px 20px;
}

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

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

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

/* Advantages Section */
.page-sports__advantages-section {
  background-color: #1a1a1a; /* Lighter dark for contrast with hero */
  padding: 80px 0;
  color: #ffffff;
}

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

.page-sports__advantage-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports__advantage-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.page-sports__advantage-card img {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
}

.page-sports__card-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-sports__card-text {
  font-size: 16px;
  color: #cccccc;
}

/* Betting Types Section */
.page-sports__betting-types-section {
  background-color: #0a0a0a;
  padding: 80px 0;
  color: #ffffff;
}

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

.page-sports__betting-type-card {
  background: rgba(139, 0, 0, 0.6); /* Dark red translucent */
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-sports__betting-type-card:hover {
  transform: translateY(-8px);
  background: rgba(139, 0, 0, 0.8);
}

.page-sports__cta-buttons--center {
  text-align: center;
}

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

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

.page-sports__promotion-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports__promotion-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.page-sports__promotion-card img {
  width: 100%;
  height: auto;
  max-width: 350px;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
}

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

.page-sports__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-sports__faq-question:hover {
  background: rgba(255, 215, 0, 0.2);
}

.page-sports__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-sports__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-sports__faq-item.active .page-sports__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg); /* Change to minus sign */
}

.page-sports__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #cccccc;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 10px 10px;
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-sports__faq-answer p {
  margin: 0;
  font-size: 16px;
}

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

.page-sports__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* General image styling for content areas */
.page-sports img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

  .page-sports__hero-description {
    font-size: 18px;
  }

  .page-sports__section-title {
    font-size: 32px;
  }

  .page-sports__section-description {
    font-size: 16px;
  }

  .page-sports__advantages-grid,
  .page-sports__betting-types-grid,
  .page-sports__promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-sports {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-sports__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO Section - Mobile */
  .page-sports__hero-section {
    min-height: 450px;
    padding-top: 0 !important; /* shared.css handles body padding-top */
  }

  .page-sports__hero-content {
    padding: 40px 15px;
  }

  .page-sports__hero-title {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .page-sports__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-sports__hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .page-sports a[class*="button"],
  .page-sports a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__hero-buttons .page-sports__btn-primary,
  .page-sports__hero-buttons .page-sports__btn-secondary {
    width: auto;
  }

  .page-sports__hero-buttons a {
    display: block;
    width: 100%;
  }

  /* General Image & Container - Mobile */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports__section,
  .page-sports__card,
  .page-sports__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Advantages Section - Mobile */
  .page-sports__advantages-section {
    padding: 60px 0;
  }

  .page-sports__advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__advantage-card {
    padding: 25px;
  }

  .page-sports__advantage-card img {
    max-width: 200px;
  }

  .page-sports__card-title {
    font-size: 20px;
  }

  /* Betting Types Section - Mobile */
  .page-sports__betting-types-section {
    padding: 60px 0;
  }

  .page-sports__betting-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .page-sports__betting-type-card {
    padding: 25px;
  }

  /* Promotions Section - Mobile */
  .page-sports__promotions-section {
    padding: 60px 0;
  }

  .page-sports__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .page-sports__promotion-card {
    padding: 20px;
  }

  .page-sports__promotion-card img {
    max-width: 250px;
  }

  /* FAQ Section - Mobile */
  .page-sports__faq-section {
    padding: 60px 0;
  }

  .page-sports__faq-list {
    max-width: 100%;
  }

  .page-sports__faq-question {
    padding: 15px 20px;
  }

  .page-sports__faq-question h3 {
    font-size: 16px;
  }

  .page-sports__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-sports__faq-answer {
    padding: 0 20px;
  }

  .page-sports__faq-item.active .page-sports__faq-answer {
    padding: 15px 20px !important;
  }

  /* CTA Section - Mobile */
  .page-sports__cta-section {
    padding: 60px 0;
  }

  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}