.page-expert-predictions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #1a1a1a; /* Dark background from shared.css */
}

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

.page-expert-predictions-analysis__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-expert-predictions-analysis__light-bg {
  background-color: #2a2a2a;
  color: #f0f0f0;
}

.page-expert-predictions-analysis__hero-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:cockfighting,stadium,crowd,live_match]');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-expert-predictions-analysis__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-expert-predictions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-expert-predictions-analysis__cta-buttons--center {
  margin-top: 40px;
}

.page-expert-predictions-analysis__btn-primary,
.page-expert-predictions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-expert-predictions-analysis__btn-primary {
  background-color: #FFD700; /* Primary brand color */
  color: #1a1a1a; /* Dark text for gold background */
  border: 2px solid #FFD700;
}

.page-expert-predictions-analysis__btn-primary:hover {
  background-color: #e6c200;
  color: #1a1a1a;
  border-color: #e6c200;
}

.page-expert-predictions-analysis__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Primary brand color */
  border: 2px solid #FFD700;
}

.page-expert-predictions-analysis__btn-secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a;
  border-color: #FFD700;
}

.page-expert-predictions-analysis__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  color: #FFD700; /* Primary brand color */
  font-weight: bold;
}

.page-expert-predictions-analysis__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

.page-expert-predictions-analysis__why-choose-us,
.page-expert-predictions-analysis__process-section,
.page-expert-predictions-analysis__types-of-analysis,
.page-expert-predictions-analysis__benefits-section,
.page-expert-predictions-analysis__faq-section,
.page-expert-predictions-analysis__join-community {
  padding: 80px 0;
}

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

.page-expert-predictions-analysis__card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff; /* Light text for dark card background */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-expert-predictions-analysis__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions-analysis__feature-image,
.page-expert-predictions-analysis__analysis-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-predictions-analysis__feature-title,
.page-expert-predictions-analysis__analysis-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
}

.page-expert-predictions-analysis__feature-description,
.page-expert-predictions-analysis__analysis-description {
  font-size: 1em;
  color: #e0e0e0;
}

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

.page-expert-predictions-analysis__step-item {
  position: relative;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-expert-predictions-analysis__step-icon {
  background-color: #8B0000; /* Secondary brand color */
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: -50px auto 20px auto;
  border: 4px solid #FFD700; /* Primary brand color border */
}

.page-expert-predictions-analysis__step-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #FFD700;
  font-weight: bold;
}

.page-expert-predictions-analysis__step-description {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-expert-predictions-analysis__btn-text {
  display: inline-block;
  margin-top: 15px;
  color: #FFD700; /* Primary brand color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-expert-predictions-analysis__btn-text:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-expert-predictions-analysis__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-expert-predictions-analysis__benefit-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-expert-predictions-analysis__benefit-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #FFD700;
  font-weight: bold;
}

.page-expert-predictions-analysis__benefit-description {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-expert-predictions-analysis__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-expert-predictions-analysis__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-expert-predictions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}

.page-expert-predictions-analysis__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-expert-predictions-analysis__faq-title {
  font-size: 1.15em;
  margin: 0;
  color: #FFD700;
  font-weight: bold;
}

.page-expert-predictions-analysis__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

.page-expert-predictions-analysis__faq-item.active .page-expert-predictions-analysis__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 25px;
}

.page-expert-predictions-analysis__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

.page-expert-predictions-analysis__join-community {
  text-align: center;
  padding: 80px 0;
}

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

@media (max-width: 768px) {
  .page-expert-predictions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-expert-predictions-analysis__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

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

  .page-expert-predictions-analysis__description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-expert-predictions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-expert-predictions-analysis__btn-primary,
  .page-expert-predictions-analysis__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
  }

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

  .page-expert-predictions-analysis__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-expert-predictions-analysis__why-choose-us,
  .page-expert-predictions-analysis__process-section,
  .page-expert-predictions-analysis__types-of-analysis,
  .page-expert-predictions-analysis__benefits-section,
  .page-expert-predictions-analysis__faq-section,
  .page-expert-predictions-analysis__join-community {
    padding: 50px 0;
  }

  .page-expert-predictions-analysis__features-grid,
  .page-expert-predictions-analysis__analysis-grid,
  .page-expert-predictions-analysis__process-steps,
  .page-expert-predictions-analysis__benefits-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-expert-predictions-analysis__card {
    padding: 20px;
  }

  .page-expert-predictions-analysis__feature-title,
  .page-expert-predictions-analysis__analysis-title {
    font-size: 1.3em;
  }

  .page-expert-predictions-analysis__step-icon {
    margin-top: -40px;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
  }

  .page-expert-predictions-analysis__step-title {
    font-size: 1.2em;
  }

  .page-expert-predictions-analysis__benefit-title {
    font-size: 1.2em;
  }

  .page-expert-predictions-analysis__faq-question {
    padding: 15px 20px;
  }

  .page-expert-predictions-analysis__faq-title {
    font-size: 1em;
  }

  .page-expert-predictions-analysis__faq-answer {
    padding: 0 20px;
  }

  .page-expert-predictions-analysis__faq-item.active .page-expert-predictions-analysis__faq-answer {
    padding: 10px 20px;
  }

  /* Mobile image and container responsiveness */
  .page-expert-predictions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-expert-predictions-analysis__section,
  .page-expert-predictions-analysis__card,
  .page-expert-predictions-analysis__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-expert-predictions-analysis__cta-buttons,
  .page-expert-predictions-analysis__button-group,
  .page-expert-predictions-analysis__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-expert-predictions-analysis__cta-buttons {
    flex-direction: column;
  }

  .page-expert-predictions-analysis__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}