.page-expert-predictions-detail {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: #000000; /* Ensuring main content matches body background for consistency */
}

.page-expert-predictions-detail__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-expert-predictions-detail__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Blend brand colors */
}

.page-expert-predictions-detail__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.page-expert-predictions-detail__hero-section .page-expert-predictions-detail__container {
  z-index: 1;
  max-width: 800px;
}

.page-expert-predictions-detail__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-expert-predictions-detail__intro-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-expert-predictions-detail__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-expert-predictions-detail__btn-primary,
.page-expert-predictions-detail__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Ensure padding/border included in width */
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-expert-predictions-detail__btn-primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-expert-predictions-detail__btn-primary:hover {
  background-color: #e6c200;
  color: #6a0000;
  transform: translateY(-3px);
}

.page-expert-predictions-detail__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-expert-predictions-detail__btn-secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-3px);
}

.page-expert-predictions-detail__content-area {
  padding: 60px 0;
  color: #ffffff; /* Light text for dark background */
  background-color: #000000;
}

.page-expert-predictions-detail__dark-bg {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-expert-predictions-detail__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-expert-predictions-detail__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000;
  border-radius: 2px;
}

.page-expert-predictions-detail__paragraph {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
  color: #e0e0e0;
}

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

.page-expert-predictions-detail__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  color: #ffffff; /* Light text on card */
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
}

.page-expert-predictions-detail__card:hover {
  transform: translateY(-5px);
}

.page-expert-predictions-detail__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-expert-predictions-detail__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-expert-predictions-detail__card-text {
  font-size: 1em;
  color: #e0e0e0;
  text-align: justify;
  flex-grow: 1; /* Allow text to grow and fill space */
}

.page-expert-predictions-detail__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-expert-predictions-detail__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #f5f5f5;
}

.page-expert-predictions-detail__list-item strong {
  color: #FFD700;
}

.page-expert-predictions-detail__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-expert-predictions-detail__benefit-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-expert-predictions-detail__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-expert-predictions-detail__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-expert-predictions-detail__benefit-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-expert-predictions-detail__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-expert-predictions-detail__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-expert-predictions-detail__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.page-expert-predictions-detail__video-caption {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: #ccc;
}

.page-expert-predictions-detail__faq-list {
  margin-top: 40px;
}

.page-expert-predictions-detail__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-detail__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-expert-predictions-detail__faq-question:hover {
  background-color: rgba(255, 215, 0, 0.2);
}

.page-expert-predictions-detail__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-expert-predictions-detail__faq-item.active .page-expert-predictions-detail__faq-toggle {
  transform: rotate(0deg);
}

.page-expert-predictions-detail__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-expert-predictions-detail__faq-item.active .page-expert-predictions-detail__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px;
}

.page-expert-predictions-detail__faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
  color: #e0e0e0;
}

.page-expert-predictions-detail__faq-answer a {
  color: #FFD700;
  text-decoration: none;
}

.page-expert-predictions-detail__faq-answer a:hover {
  text-decoration: underline;
}

.page-expert-predictions-detail__cta-final-title {
  margin-top: 60px;
  font-size: 2.8em;
}

.page-expert-predictions-detail__cta-final-text {
  font-size: 1.2em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-expert-predictions-detail__cta-final-buttons {
  margin-bottom: 60px;
}

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

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

  .page-expert-predictions-detail__card-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-expert-predictions-detail__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
    min-height: 500px;
  }

  .page-expert-predictions-detail__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-expert-predictions-detail__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
  }

  .page-expert-predictions-detail__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-expert-predictions-detail__btn-primary,
  .page-expert-predictions-detail__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-expert-predictions-detail__content-area {
    padding: 40px 0;
  }

  .page-expert-predictions-detail__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-expert-predictions-detail__paragraph,
  .page-expert-predictions-detail__list-item,
  .page-expert-predictions-detail__card-text,
  .page-expert-predictions-detail__benefit-text {
    font-size: 0.95em;
  }

  .page-expert-predictions-detail__grid,
  .page-expert-predictions-detail__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-expert-predictions-detail__card,
  .page-expert-predictions-detail__benefit-card {
    padding: 20px;
  }

  .page-expert-predictions-detail__card-image,
  .page-expert-predictions-detail__benefit-icon {
    width: 100% !important;
    height: auto !important;
    max-width: 200px !important;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
  }

  /* Image responsiveness for content area */
  .page-expert-predictions-detail img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-expert-predictions-detail__section,
  .page-expert-predictions-detail__card,
  .page-expert-predictions-detail__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video responsiveness */
  .page-expert-predictions-detail video,
  .page-expert-predictions-detail__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-expert-predictions-detail__video-section,
  .page-expert-predictions-detail__video-container,
  .page-expert-predictions-detail__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-expert-predictions-detail__video-wrapper {
    padding-bottom: 75%; /* Adjust aspect ratio for mobile if needed, or keep 56.25% */
  }

  .page-expert-predictions-detail__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-expert-predictions-detail__faq-answer {
    padding: 0 15px;
  }

  .page-expert-predictions-detail__faq-item.active .page-expert-predictions-detail__faq-answer {
    padding: 15px;
  }

  .page-expert-predictions-detail__cta-final-title {
    font-size: 2em;
  }

  .page-expert-predictions-detail__cta-final-text {
    font-size: 1em;
  }
}