/* style/expert-predictions.css */
.page-expert-predictions {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-expert-predictions__bg--dark {
  background-color: #000000; /* Primary color as background */
  color: #ffffff; /* White text for dark background */
}

.page-expert-predictions__section-title {
  font-size: 2.5em;
  color: inherit; /* Inherit color from parent section */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  font-weight: bold;
}

.page-expert-predictions__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-expert-predictions__paragraph--centered {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-expert-predictions__hero-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000000; /* Fallback background if image fails */
}

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

.page-expert-predictions__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 800px;
  padding: 40px 20px;
}

.page-expert-predictions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-expert-predictions__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
}

.page-expert-predictions__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-expert-predictions__btn {
  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, color 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-expert-predictions__btn--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-expert-predictions__btn--primary:hover {
  background-color: #e0a53b;
}

.page-expert-predictions__btn--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border-color: #FCBC45;
}

.page-expert-predictions__btn--secondary:hover {
  background-color: #f0f0f0;
  border-color: #e0a53b;
}

.page-expert-predictions__btn--small {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

.page-expert-predictions__btn--small:hover {
  background-color: #e0a53b;
}

.page-expert-predictions__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Introduction Section */
.page-expert-predictions__introduction-section {
  padding: 60px 0;
  background-color: #ffffff;
}

/* Advantage Section */
.page-expert-predictions__advantage-section {
  padding: 80px 0;
}

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

.page-expert-predictions__advantage-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-expert-predictions__advantage-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-expert-predictions__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FCBC45;
}

.page-expert-predictions__card-description {
  font-size: 1em;
  line-height: 1.5;
  text-align: center;
}

/* Sports and Casino Sections */
.page-expert-predictions__sports-section,
.page-expert-predictions__casino-section {
  padding: 80px 0;
}

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

.page-expert-predictions__category-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-expert-predictions__category-card .page-expert-predictions__card-title {
  color: #000000;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-expert-predictions__category-card .page-expert-predictions__card-description {
  padding: 0 20px;
  flex-grow: 1;
}

.page-expert-predictions__category-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-expert-predictions__category-card .page-expert-predictions__btn {
  margin: 20px;
  align-self: flex-start;
}

/* Comprehensive Insights Section */
.page-expert-predictions__comprehensive-insights-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-expert-predictions__insights-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-expert-predictions__insights-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-expert-predictions__item-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-expert-predictions__item-description {
  font-size: 1em;
  color: #555555;
}

/* Access Section */
.page-expert-predictions__access-section {
  padding: 80px 0;
}

.page-expert-predictions__access-steps {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-expert-predictions__step-item {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-expert-predictions__step-item strong {
  color: #FCBC45;
}

.page-expert-predictions__step-item a {
  color: #FCBC45;
  text-decoration: underline;
}

.page-expert-predictions__step-item a:hover {
  color: #e0a53b;
}

/* CTA Section */
.page-expert-predictions__cta-section {
  padding: 80px 0;
  background-color: #FCBC45;
  color: #000000;
  text-align: center;
}

.page-expert-predictions__cta-section .page-expert-predictions__section-title {
  color: #000000;
}

.page-expert-predictions__cta-section .page-expert-predictions__paragraph {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-expert-predictions__cta-section .page-expert-predictions__btn--primary {
  background-color: #000000;
  color: #FCBC45;
}

.page-expert-predictions__cta-section .page-expert-predictions__btn--primary:hover {
  background-color: #333333;
}

/* Related Resources Section */
.page-expert-predictions__related-resources-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-expert-predictions__resource-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-expert-predictions__resource-image {
  width: 100%;
  height: 200px; /* Minimum 200px height for content images */
  object-fit: cover;
}

.page-expert-predictions__resource-card .page-expert-predictions__card-title {
  font-size: 1.4em;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 20px;
  line-height: 1.3;
}

.page-expert-predictions__resource-card .page-expert-predictions__card-title a {
  color: #000000;
  text-decoration: none;
}

.page-expert-predictions__resource-card .page-expert-predictions__card-title a:hover {
  color: #FCBC45;
}

.page-expert-predictions__resource-card .page-expert-predictions__card-description {
  padding: 0 20px 20px;
  flex-grow: 1;
  font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-expert-predictions__hero-title {
    font-size: 2.8em;
  }

  .page-expert-predictions__hero-description {
    font-size: 1.2em;
  }

  .page-expert-predictions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-expert-predictions__hero-section {
    min-height: 400px;
  }

  .page-expert-predictions__hero-title {
    font-size: 2.2em;
  }

  .page-expert-predictions__hero-description {
    font-size: 1em;
  }

  .page-expert-predictions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-expert-predictions__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-expert-predictions__section-title {
    font-size: 1.8em;
  }

  .page-expert-predictions__paragraph {
    font-size: 1em;
  }

  .page-expert-predictions__advantage-card,
  .page-expert-predictions__category-card,
  .page-expert-predictions__insights-item,
  .page-expert-predictions__resource-card {
    padding: 20px;
  }

  /* Ensure content images are responsive and do not overflow */
  .page-expert-predictions img {
    max-width: 100%;
    height: auto;
  }

  .page-expert-predictions__advantage-icon,
  .page-expert-predictions__category-image,
  .page-expert-predictions__resource-image {
    width: 100%;
    height: auto;
    min-height: 200px; /* Enforce minimum height */
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions__hero-title {
    font-size: 1.8em;
  }

  .page-expert-predictions__hero-description {
    font-size: 0.9em;
  }

  .page-expert-predictions__section-title {
    font-size: 1.5em;
  }

  .page-expert-predictions__btn--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}