/* style/expert-predictions-popular-match-analysis.css */

/* Variables for colors */
:root {
  --page-expert-predictions-popular-match-analysis-primary-color: #1A202C; /* Dark Blue/Black */
  --page-expert-predictions-popular-match-analysis-accent-color: #FFD700; /* Bright Gold */
  --page-expert-predictions-popular-match-analysis-text-light: #F8F8F8; /* Light text for dark backgrounds */
  --page-expert-predictions-popular-match-analysis-text-dark: #333333; /* Dark text for light backgrounds */
  --page-expert-predictions-popular-match-analysis-background-light: #FFFFFF; /* White background */
  --page-expert-predictions-popular-match-analysis-background-dark: #2C3A47; /* Slightly lighter dark blue */
}

.page-expert-predictions-popular-match-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-expert-predictions-popular-match-analysis-text-dark);
  background-color: var(--page-expert-predictions-popular-match-analysis-background-light);
}

.page-expert-predictions-popular-match-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-expert-predictions-popular-match-analysis__hero-section {
  background: linear-gradient(135deg, var(--page-expert-predictions-popular-match-analysis-primary-color) 0%, #3a4a5c 100%);
  color: var(--page-expert-predictions-popular-match-analysis-text-light);
  padding: 100px 0;
  text-align: center;
}

.page-expert-predictions-popular-match-analysis__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--page-expert-predictions-popular-match-analysis-accent-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-expert-predictions-popular-match-analysis__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--page-expert-predictions-popular-match-analysis-text-light);
}

.page-expert-predictions-popular-match-analysis__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-expert-predictions-popular-match-analysis__btn--primary {
  background-color: var(--page-expert-predictions-popular-match-analysis-accent-color);
  color: var(--page-expert-predictions-popular-match-analysis-primary-color);
  border: 2px solid var(--page-expert-predictions-popular-match-analysis-accent-color);
}

.page-expert-predictions-popular-match-analysis__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-expert-predictions-popular-match-analysis__btn--secondary {
  background-color: var(--page-expert-predictions-popular-match-analysis-primary-color);
  color: var(--page-expert-predictions-popular-match-analysis-accent-color);
  border: 2px solid var(--page-expert-predictions-popular-match-analysis-accent-color);
  margin-left: 15px;
}

.page-expert-predictions-popular-match-analysis__btn--secondary:hover {
  background-color: var(--page-expert-predictions-popular-match-analysis-background-dark);
  transform: translateY(-2px);
}

.page-expert-predictions-popular-match-analysis__btn--tertiary {
  background-color: transparent;
  color: var(--page-expert-predictions-popular-match-analysis-accent-color);
  border: 2px solid var(--page-expert-predictions-popular-match-analysis-accent-color);
  margin-left: 15px;
}

.page-expert-predictions-popular-match-analysis__btn--tertiary:hover {
  background-color: var(--page-expert-predictions-popular-match-analysis-accent-color);
  color: var(--page-expert-predictions-popular-match-analysis-primary-color);
  transform: translateY(-2px);
}

.page-expert-predictions-popular-match-analysis__content-section {
  padding: 60px 0;
  background-color: var(--page-expert-predictions-popular-match-analysis-background-light);
}

.page-expert-predictions-popular-match-analysis__section-title {
  font-size: 2.5em;
  color: var(--page-expert-predictions-popular-match-analysis-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-expert-predictions-popular-match-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-expert-predictions-popular-match-analysis-accent-color);
  border-radius: 2px;
}

.page-expert-predictions-popular-match-analysis__sub-section-title {
  font-size: 1.8em;
  color: var(--page-expert-predictions-popular-match-analysis-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--page-expert-predictions-popular-match-analysis-accent-color);
  padding-left: 15px;
}

.page-expert-predictions-popular-match-analysis__content-section p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--page-expert-predictions-popular-match-analysis-text-dark);
}

.page-expert-predictions-popular-match-analysis__list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-expert-predictions-popular-match-analysis__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--page-expert-predictions-popular-match-analysis-text-dark);
}

.page-expert-predictions-popular-match-analysis__list li::before {
  content: '✔'; /* Checkmark for list items */
  color: var(--page-expert-predictions-popular-match-analysis-accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-expert-predictions-popular-match-analysis__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-expert-predictions-popular-match-analysis__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-popular-match-analysis__image-caption {
  font-style: italic;
  color: #666;
  margin-top: 15px;
  font-size: 0.95em;
}

.page-expert-predictions-popular-match-analysis__cta-buttons {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-expert-predictions-popular-match-analysis__faq {
  margin-top: 40px;
}

.page-expert-predictions-popular-match-analysis__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-expert-predictions-popular-match-analysis__faq-question {
  font-size: 1.3em;
  color: var(--page-expert-predictions-popular-match-analysis-primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-expert-predictions-popular-match-analysis__faq-answer {
  font-size: 1.05em;
  color: var(--page-expert-predictions-popular-match-analysis-text-dark);
}

.page-expert-predictions-popular-match-analysis__faq-answer a {
    color: var(--page-expert-predictions-popular-match-analysis-accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-expert-predictions-popular-match-analysis__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-expert-predictions-popular-match-analysis__hero-title {
    font-size: 2.5em;
  }

  .page-expert-predictions-popular-match-analysis__hero-description {
    font-size: 1.1em;
  }

  .page-expert-predictions-popular-match-analysis__section-title {
    font-size: 2em;
  }

  .page-expert-predictions-popular-match-analysis__sub-section-title {
    font-size: 1.5em;
  }

  .page-expert-predictions-popular-match-analysis__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

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

  .page-expert-predictions-popular-match-analysis__btn--secondary,
  .page-expert-predictions-popular-match-analysis__btn--tertiary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions-popular-match-analysis__hero-title {
    font-size: 2em;
  }

  .page-expert-predictions-popular-match-analysis__hero-description {
    font-size: 1em;
  }

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

  .page-expert-predictions-popular-match-analysis__sub-section-title {
    font-size: 1.3em;
  }

  .page-expert-predictions-popular-match-analysis__btn {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 10px;
  }
}