.page-news-latest-sports-predictions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--black-color); /* From shared.css */
}

.page-news-latest-sports-predictions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #26A9E0 0%, #007bff 100%);
  color: #ffffff;
  overflow: hidden;
}

.page-news-latest-sports-predictions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-news-latest-sports-predictions__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-news-latest-sports-predictions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news-latest-sports-predictions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.page-news-latest-sports-predictions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

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

.page-news-latest-sports-predictions__btn-primary,
.page-news-latest-sports-predictions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-news-latest-sports-predictions__btn-primary {
  background: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-news-latest-sports-predictions__btn-primary:hover {
  background: #d46c00;
  border-color: #d46c00;
}

.page-news-latest-sports-predictions__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-news-latest-sports-predictions__btn-secondary:hover {
  background: #e0f2f7;
  color: #1a8cc4;
}

.page-news-latest-sports-predictions__content-area,
.page-news-latest-sports-predictions__upcoming-matches,
.page-news-latest-sports-predictions__tips-section,
.page-news-latest-sports-predictions__promotions-cta,
.page-news-latest-sports-predictions__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-news-latest-sports-predictions__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-news-latest-sports-predictions__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-news-latest-sports-predictions__dark-section {
  background: #26A9E0;
  color: #ffffff;
}

.page-news-latest-sports-predictions__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: inherit;
}

.page-news-latest-sports-predictions__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
}

.page-news-latest-sports-predictions__text-block p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: inherit;
}

.page-news-latest-sports-predictions__text-block a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-news-latest-sports-predictions__text-block a:hover {
  color: #1a8cc4;
}

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

.page-news-latest-sports-predictions__feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-news-latest-sports-predictions__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-news-latest-sports-predictions__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-news-latest-sports-predictions__feature-card p {
  font-size: 1em;
  color: #555555;
}

.page-news-latest-sports-predictions__match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-latest-sports-predictions__match-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
  display: flex;
  flex-direction: column;
}

.page-news-latest-sports-predictions__match-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-news-latest-sports-predictions__match-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-news-latest-sports-predictions__match-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-news-latest-sports-predictions__match-title a:hover {
  text-decoration: underline;
}

.page-news-latest-sports-predictions__match-date {
  font-size: 0.95em;
  color: #777777;
  margin-bottom: 10px;
}

.page-news-latest-sports-predictions__match-prediction {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news-latest-sports-predictions__match-card .page-news-latest-sports-predictions__btn-primary {
  margin-top: auto;
  align-self: flex-start;
}

.page-news-latest-sports-predictions__view-all-matches {
  text-align: center;
  margin-top: 50px;
}

.page-news-latest-sports-predictions__tips-list {
  list-style: disc inside;
  margin-top: 30px;
  padding-left: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-news-latest-sports-predictions__tips-list li {
  margin-bottom: 10px;
}

.page-news-latest-sports-predictions__faq-container {
  margin-top: 40px;
}

.page-news-latest-sports-predictions__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-news-latest-sports-predictions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-news-latest-sports-predictions__faq-question:hover {
  background-color: #f0f0f0;
}

.page-news-latest-sports-predictions__faq-title {
  font-size: 1.2em;
  margin: 0;
  color: #26A9E0;
}

.page-news-latest-sports-predictions__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-news-latest-sports-predictions__faq-item.active .page-news-latest-sports-predictions__faq-toggle {
  transform: rotate(45deg);
}

.page-news-latest-sports-predictions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-news-latest-sports-predictions__faq-item.active .page-news-latest-sports-predictions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px;
}

.page-news-latest-sports-predictions__faq-answer p {
  margin: 0;
  color: #555555;
}

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

@media (max-width: 768px) {
  .page-news-latest-sports-predictions__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-news-latest-sports-predictions__main-title {
    font-size: 2.2em;
  }

  .page-news-latest-sports-predictions__hero-description {
    font-size: 1em;
  }

  .page-news-latest-sports-predictions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-news-latest-sports-predictions__btn-primary,
  .page-news-latest-sports-predictions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-news-latest-sports-predictions__section-title {
    font-size: 2em;
  }

  .page-news-latest-sports-predictions__content-area,
  .page-news-latest-sports-predictions__upcoming-matches,
  .page-news-latest-sports-predictions__tips-section,
  .page-news-latest-sports-predictions__promotions-cta,
  .page-news-latest-sports-predictions__faq-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-news-latest-sports-predictions__features-grid,
  .page-news-latest-sports-predictions__match-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news-latest-sports-predictions__feature-card,
  .page-news-latest-sports-predictions__match-card {
    padding: 20px;
  }

  .page-news-latest-sports-predictions__feature-title {
    font-size: 1.3em;
  }

  .page-news-latest-sports-predictions__match-title {
    font-size: 1.2em;
  }

  .page-news-latest-sports-predictions__faq-question {
    padding: 15px;
  }

  .page-news-latest-sports-predictions__faq-title {
    font-size: 1.1em;
  }

  /* Mobile image responsiveness */
  .page-news-latest-sports-predictions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news-latest-sports-predictions__hero-image-wrapper,
  .page-news-latest-sports-predictions__feature-card,
  .page-news-latest-sports-predictions__match-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-news-latest-sports-predictions__main-title {
    font-size: 1.8em;
  }

  .page-news-latest-sports-predictions__section-title {
    font-size: 1.8em;
  }

  .page-news-latest-sports-predictions__hero-description,
  .page-news-latest-sports-predictions__text-block p,
  .page-news-latest-sports-predictions__tips-list {
    font-size: 0.95em;
  }
}