.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherit from shared.css */
  padding-top: 180px; /* Fixed header spacing for desktop */
}

@media (max-width: 768px) {
  .page-sports {
    padding-top: 140px; /* Fixed header spacing for mobile */
  }
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0056B3, #004085); /* Dark blue gradient */
  color: #ffffff;
}

.page-sports__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-sports__hero-image {
  width: 100%;
  max-width: 1200px; /* Adjust max-width for image */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-sports__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

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

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

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold gradient */
  color: #000000; /* Dark text for gold button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-sports__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFC107);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__cta-button--small {
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 6px;
}

.page-sports__cta-button--light {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  color: #0056B3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-sports__cta-button--light:hover {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  color: #004085;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-sports__cta-button--secondary {
  background: linear-gradient(135deg, #0056B3, #004085);
  color: #ffffff;
}

.page-sports__cta-button--secondary:hover {
  background: linear-gradient(135deg, #004085, #002a5c);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.page-sports__section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--dark-bg-1);
}

.page-sports__section--overview {
  background-color: #f8f9fa;
  color: #333333;
}

.page-sports__section--sports-betting {
  background-color: #ffffff;
  color: #333333;
}

.page-sports__section--fishing-vip {
  background-color: #0056B3;
  color: #ffffff;
}

.page-sports__section--promotions {
  background-color: #f8f9fa;
  color: #333333;
}

.page-sports__section--guide {
  background-color: #004085;
  color: #ffffff;
}

.page-sports__section--security {
  background-color: #ffffff;
  color: #333333;
}

.page-sports__section--faq {
  background-color: #f8f9fa;
  color: #333333;
}

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

.page-sports__heading {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #0056B3;
}

.page-sports__heading--light {
  color: #ffffff;
}

.page-sports__text-block {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-sports__text-block--light {
  color: #e0e0e0;
}

.page-sports__text-block a {
  color: #0056B3;
  text-decoration: none;
  font-weight: bold;
}

.page-sports__text-block a:hover {
  text-decoration: underline;
}

.page-sports__text-block--light a {
  color: #FFD700;
}

.page-sports__text-block--light a:hover {
  text-decoration: underline;
}

.highlight-keyword {
  font-weight: bold;
  color: #0056B3;
}

.page-sports__section--fishing-vip .highlight-keyword {
  color: #FFD700;
}

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

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

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

.page-sports__feature-card.page-sports__dark-bg {
  background: #0056B3;
  color: #ffffff;
}

.page-sports__feature-card.page-sports__dark-bg .page-sports__feature-title {
  color: #FFD700;
}

.page-sports__feature-icon,
.page-sports__sport-image,
.page-sports__promo-image,
.page-sports__fishing-image {
  width: 250px;
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-sports__feature-title,
.page-sports__sport-title,
.page-sports__promo-title,
.page-sports__fishing-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0056B3;
}

.page-sports__feature-card.page-sports__dark-bg .page-sports__feature-title {
  color: #FFD700;
}

.page-sports__feature-description,
.page-sports__sport-description,
.page-sports__promo-description,
.page-sports__fishing-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

.page-sports__feature-card.page-sports__dark-bg .page-sports__feature-description {
  color: #f0f0f0;
}

.page-sports__fishing-card .page-sports__fishing-title {
  color: #0056B3;
}

.page-sports__fishing-card .page-sports__fishing-description {
  color: #555555;
}

.page-sports__button-group {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-sports__guide-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-sports__guide-block {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.page-sports__guide-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #0056B3;
}

.page-sports__guide-title--light {
  color: #FFD700;
}

.page-sports__guide-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-grow: 1;
}

.page-sports__guide-list li {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.7;
  position: relative;
  padding-left: 25px;
}

.page-sports__guide-list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-sports__guide-list--light li {
  color: #e0e0e0;
}

.page-sports__guide-list--light li p {
  color: #e0e0e0;
}

.page-sports__guide-list--light li strong {
  color: #ffffff;
}

/* FAQ Styles */
.page-sports__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-sports__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

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

.page-sports__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #0056B3;
  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-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;
  background: #fcfcfc;
  color: #555555;
  text-align: left;
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to show content */
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid #e9e9e9;
  border-radius: 0 0 8px 8px;
}

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

.page-sports__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
}

.page-sports__faq-answer a {
  color: #0056B3;
  text-decoration: none;
  font-weight: bold;
}

.page-sports__faq-answer a:hover {
  text-decoration: underline;
}

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

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

  .page-sports__heading {
    font-size: 32px;
  }

  .page-sports__text-block {
    font-size: 17px;
  }

  .page-sports__feature-title,
  .page-sports__sport-title,
  .page-sports__promo-title,
  .page-sports__fishing-title {
    font-size: 22px;
  }

  .page-sports__feature-description,
  .page-sports__sport-description,
  .page-sports__promo-description,
  .page-sports__fishing-description {
    font-size: 15px;
  }

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

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

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding: 40px 15px;
  }

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

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

  .page-sports__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }

  .page-sports__section {
    padding: 50px 15px;
  }

  .page-sports__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-sports__text-block {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-sports__features-grid,
  .page-sports__sports-grid,
  .page-sports__promo-grid,
  .page-sports__fishing-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-sports__feature-card,
  .page-sports__sport-card,
  .page-sports__promo-card,
  .page-sports__fishing-card {
    padding: 25px;
  }

  .page-sports__feature-icon,
  .page-sports__sport-image,
  .page-sports__promo-image,
  .page-sports__fishing-image {
    width: 200px;
  }

  .page-sports__guide-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-sports__guide-block {
    padding: 25px;
  }

  .page-sports__guide-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-sports__guide-list li {
    font-size: 16px;
    margin-bottom: 12px;
  }

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

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

  .page-sports__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }

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

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

  .page-sports__faq-answer p {
    font-size: 15px;
  }

  .page-sports__button-group {
    flex-direction: column;
    gap: 15px;
  }
}

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

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

  .page-sports__cta-button {
    padding: 10px 25px;
    font-size: 16px;
  }

  .page-sports__heading {
    font-size: 24px;
  }

  .page-sports__text-block {
    font-size: 15px;
  }

  .page-sports__feature-title,
  .page-sports__sport-title,
  .page-sports__promo-title,
  .page-sports__fishing-title {
    font-size: 20px;
  }

  .page-sports__feature-description,
  .page-sports__sport-description,
  .page-sports__promo-description,
  .page-sports__fishing-description {
    font-size: 14px;
  }

  .page-sports__guide-title {
    font-size: 22px;
  }

  .page-sports__guide-list li {
    font-size: 15px;
  }

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

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