.page-sports-betting {
  background-color: #0d0d0d;
  color: #f5f5f5;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-sports-betting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding to respect shared header */
  padding-bottom: 40px;
  background-color: #000000;
}

.page-sports-betting__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.page-sports-betting__hero-content {
  max-width: 960px;
  padding: 0 20px;
}

.page-sports-betting__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-sports-betting__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e5e5e5;
}

.page-sports-betting__hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.page-sports-betting__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-sports-betting__btn--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-sports-betting__btn--primary:hover {
  background-color: #e0a538;
  border-color: #e0a538;
}

.page-sports-betting__btn--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-sports-betting__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-sports-betting__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-sports-betting__section-title {
  font-size: 2.2em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-sports-betting__description {
  font-size: 1.05em;
  color: #e5e5e5;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
}

.page-sports-betting__features-section,
.page-sports-betting__sports-markets-section,
.page-sports-betting__how-to-start-section,
.page-sports-betting__app-download-section,
.page-sports-betting__tips-section,
.page-sports-betting__cta-section {
  padding: 40px 20px;
  background-color: #1a1a1a;
  margin-bottom: 20px;
  border-radius: 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports-betting__features-grid,
.page-sports-betting__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-sports-betting__feature-card,
.page-sports-betting__step-card {
  background-color: #000000;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sports-betting__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-sports-betting__feature-title,
.page-sports-betting__step-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-sports-betting__feature-description,
.page-sports-betting__step-description {
  color: #e5e5e5;
  font-size: 0.95em;
}

.page-sports-betting__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-sports-betting__step-card .page-sports-betting__btn {
  margin-top: 20px;
}

.page-sports-betting__sports-markets-section,
.page-sports-betting__app-download-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

.page-sports-betting__sports-markets-section .page-sports-betting__content-wrapper,
.page-sports-betting__app-download-section .page-sports-betting__content-wrapper {
  flex: 1;
}

.page-sports-betting__sports-markets-section .page-sports-betting__section-title,
.page-sports-betting__app-download-section .page-sports-betting__section-title {
  text-align: left;
  padding-top: 0;
  margin-bottom: 20px;
}

.page-sports-betting__sports-markets-section .page-sports-betting__description,
.page-sports-betting__app-download-section .page-sports-betting__description {
  text-align: left;
  margin: 0 0 20px 0;
  max-width: none;
}

.page-sports-betting__sports-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-sports-betting__list-item {
  background-color: #000000;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 5px;
  color: #FFFFFF;
  font-size: 0.95em;
  border-left: 3px solid #FCBC45;
}

.page-sports-betting__image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-sports-betting__image {
  width: 100%;
  height: auto;
  max-width: 600px;
  min-width: 200px;
  min-height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

.page-sports-betting__app-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.page-sports-betting__tips-section {
  text-align: center;
}

.page-sports-betting__cta-section {
  text-align: center;
  padding-bottom: 60px;
}

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

@media (max-width: 768px) {
  .page-sports-betting__hero-section {
    padding-bottom: 30px;
  }

  .page-sports-betting__main-title {
    font-size: clamp(2em, 8vw, 3em);
    margin-top: 20px;
  }

  .page-sports-betting__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-sports-betting__hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-sports-betting__btn {
    width: 100%;
    max-width: 250px;
  }

  .page-sports-betting__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .page-sports-betting__features-grid,
  .page-sports-betting__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-sports-betting__sports-markets-section,
  .page-sports-betting__app-download-section {
    flex-direction: column;
    text-align: center;
  }

  .page-sports-betting__sports-markets-section .page-sports-betting__section-title,
  .page-sports-betting__app-download-section .page-sports-betting__section-title {
    text-align: center;
  }

  .page-sports-betting__sports-markets-section .page-sports-betting__description,
  .page-sports-betting__app-download-section .page-sports-betting__description {
    text-align: center;
  }

  .page-sports-betting__app-buttons {
    justify-content: center;
  }

  .page-sports-betting__image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .page-sports-betting__features-section,
  .page-sports-betting__sports-markets-section,
  .page-sports-betting__how-to-start-section,
  .page-sports-betting__app-download-section,
  .page-sports-betting__tips-section,
  .page-sports-betting__cta-section {
    padding: 30px 15px;
  }

  .page-sports-betting__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* Ensure content images are not too small on mobile */
  .page-sports-betting img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-sports-betting__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-sports-betting__hero-buttons {
    width: 100%;
  }

  .page-sports-betting__hero-content {
    padding: 0 15px;
  }

  .page-sports-betting__hero-image {
    min-height: 200px; /* Ensure minimum height even for small screens */
  }

  .page-sports-betting__feature-icon {
    min-width: 200px;
    min-height: 200px;
  }

  .page-sports-betting__image {
    min-width: 200px;
    min-height: 200px;
  }
}