.page-88neo-sports-basketball-matches {
  --primary-color: #0A2239;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f8f8f8;
  --bg-dark: #0A2239;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for the page body, as body background is dark */
  background-color: var(--bg-dark); /* Ensure consistency with shared.css body background */
}

.page-88neo-sports-basketball-matches__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Fixed Navbar Spacing */
.page-88neo-sports-basketball-matches__hero-section {
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

.page-88neo-sports-basketball-matches__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-88neo-sports-basketball-matches__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-light);
}

/* Hero Section */
.page-88neo-sports-basketball-matches__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 80px;
  overflow: hidden;
  color: var(--text-light);
}

.page-88neo-sports-basketball-matches__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.page-88neo-sports-basketball-matches__main-title {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-88neo-sports-basketball-matches__hero-description {
  font-size: 20px;
  max-width: 900px;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-88neo-sports-basketball-matches__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-88neo-sports-basketball-matches__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-88neo-sports-basketball-matches__btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-88neo-sports-basketball-matches__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-88neo-sports-basketball-matches__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-88neo-sports-basketball-matches__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page-88neo-sports-basketball-matches__why-choose-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.page-88neo-sports-basketball-matches__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for contrast */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
}

.page-88neo-sports-basketball-matches__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-88neo-sports-basketball-matches__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-88neo-sports-basketball-matches__feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-88neo-sports-basketball-matches__feature-text {
  font-size: 16px;
  color: var(--text-light);
}

/* Leagues Section */
.page-88neo-sports-basketball-matches__leagues-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-88neo-sports-basketball-matches__league-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.page-88neo-sports-basketball-matches__league-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: var(--text-light);
}

.page-88neo-sports-basketball-matches__league-card:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-88neo-sports-basketball-matches__league-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-88neo-sports-basketball-matches__league-text {
  font-size: 16px;
  color: var(--text-light);
}

/* Bet Types Section */
.page-88neo-sports-basketball-matches__bet-types-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-88neo-sports-basketball-matches__bet-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-88neo-sports-basketball-matches__bet-type-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
}

.page-88neo-sports-basketball-matches__bet-type-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-88neo-sports-basketball-matches__bet-type-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-88neo-sports-basketball-matches__bet-type-text {
  font-size: 16px;
  color: var(--text-light);
}

/* CTA Section */
.page-88neo-sports-basketball-matches__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Global image responsive styles */
.page-88neo-sports-basketball-matches img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-88neo-sports-basketball-matches__container {
    padding: 0 15px;
  }

  .page-88neo-sports-basketball-matches__hero-section {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    padding-bottom: 60px;
  }

  .page-88neo-sports-basketball-matches__main-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .page-88neo-sports-basketball-matches__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-88neo-sports-basketball-matches__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-88neo-sports-basketball-matches__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-88neo-sports-basketball-matches__section-title {
    font-size: 28px;
  }

  .page-88neo-sports-basketball-matches__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-88neo-sports-basketball-matches__why-choose-section,
  .page-88neo-sports-basketball-matches__leagues-section,
  .page-88neo-sports-basketball-matches__bet-types-section,
  .page-88neo-sports-basketball-matches__cta-section {
    padding: 60px 0;
  }

  .page-88neo-sports-basketball-matches__features-grid,
  .page-88neo-sports-basketball-matches__league-cards-grid,
  .page-88neo-sports-basketball-matches__bet-type-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-88neo-sports-basketball-matches__feature-item,
  .page-88neo-sports-basketball-matches__league-card,
  .page-88neo-sports-basketball-matches__bet-type-item {
    padding: 20px;
  }

  .page-88neo-sports-basketball-matches__feature-title,
  .page-88neo-sports-basketball-matches__league-title,
  .page-88neo-sports-basketball-matches__bet-type-title {
    font-size: 20px;
  }

  .page-88neo-sports-basketball-matches__feature-text,
  .page-88neo-sports-basketball-matches__league-text,
  .page-88neo-sports-basketball-matches__bet-type-text {
    font-size: 15px;
  }
  
  /* Ensure all images are responsive and do not overflow */
  .page-88neo-sports-basketball-matches img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-88neo-sports-basketball-matches__hero-section,
  .page-88neo-sports-basketball-matches__why-choose-section,
  .page-88neo-sports-basketball-matches__leagues-section,
  .page-88neo-sports-basketball-matches__bet-types-section,
  .page-88neo-sports-basketball-matches__cta-section,
  .page-88neo-sports-basketball-matches__container,
  .page-88neo-sports-basketball-matches__features-grid,
  .page-88neo-sports-basketball-matches__league-cards-grid,
  .page-88neo-sports-basketball-matches__bet-type-grid,
  .page-88neo-sports-basketball-matches__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Important to prevent horizontal scroll */
  }
}