.page-expert-predictions-match-analysis-1 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Deep blue background */
}

.page-expert-predictions-match-analysis-1 a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-expert-predictions-match-analysis-1 a:hover {
  color: #E0B000; /* Darker gold on hover */
}

.page-expert-predictions-match-analysis-1 h1, .page-expert-predictions-match-analysis-1 h2, .page-expert-predictions-match-analysis-1 h3 {
  color: #FFD700; /* Gold for headings */
  margin-bottom: 1em;
  line-height: 1.2;
}

.page-expert-predictions-match-analysis-1 h1 {
  font-size: 2.8em;
  text-align: center;
}

.page-expert-predictions-match-analysis-1 h2 {
  font-size: 2.2em;
  text-align: center;
  padding-top: 1em;
}

.page-expert-predictions-match-analysis-1 h3 {
  font-size: 1.6em;
  color: #E0E0E0; /* Light gray for subheadings */
}

.page-expert-predictions-match-analysis-1 p {
  margin-bottom: 1em;
  color: #E0E0E0; /* Light gray for paragraphs */
}

.page-expert-predictions-match-analysis-1 ul {
  list-style: disc inside;
  margin-bottom: 1em;
  padding-left: 20px;
  color: #E0E0E0;
}

.page-expert-predictions-match-analysis-1 ul li {
  margin-bottom: 0.5em;
}

.page-expert-predictions-match-analysis-1__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-expert-predictions-match-analysis-1__section {
  padding: 60px 0;
  background-color: #0A192F;
}

.page-expert-predictions-match-analysis-1__section--dark {
  background-color: #1A2A40; /* Slightly lighter dark blue for contrast */
}

.page-expert-predictions-match-analysis-1__section--dark-bg {
  background-color: #0A192F;
  padding: 80px 0;
}

.page-expert-predictions-match-analysis-1__center-text {
  text-align: center;
}

.page-expert-predictions-match-analysis-1__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #30475E 100%); /* Gradient for hero */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-expert-predictions-match-analysis-1__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-expert-predictions-match-analysis-1__hero-content p {
  font-size: 1.2em;
  margin-bottom: 2em;
}

.page-expert-predictions-match-analysis-1__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-expert-predictions-match-analysis-1__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-expert-predictions-match-analysis-1__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Deep blue text on gold */
  padding: 12px 25px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-expert-predictions-match-analysis-1__btn:hover {
  background-color: #E0B000; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-expert-predictions-match-analysis-1__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-expert-predictions-match-analysis-1__btn--secondary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-expert-predictions-match-analysis-1__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-expert-predictions-match-analysis-1__btn--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

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

.page-expert-predictions-match-analysis-1__grid-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #FFD700;
}

.page-expert-predictions-match-analysis-1__grid-item h3 {
  color: #FFD700;
  margin-top: 0;
  font-size: 1.4em;
}

.page-expert-predictions-match-analysis-1__grid-item img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
  border: 2px solid #FFD700;
}

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

.page-expert-predictions-match-analysis-1__cta-item {
  background-color: #1A2A40;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #FFD700;
}

.page-expert-predictions-match-analysis-1__cta-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
}

.page-expert-predictions-match-analysis-1__cta-item p {
  color: #CCCCCC;
  margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-expert-predictions-match-analysis-1 h1 {
    font-size: 2.2em;
  }

  .page-expert-predictions-match-analysis-1 h2 {
    font-size: 1.8em;
  }

  .page-expert-predictions-match-analysis-1__hero {
    padding: 60px 15px;
  }

  .page-expert-predictions-match-analysis-1__section {
    padding: 40px 0;
  }

  .page-expert-predictions-match-analysis-1__grid,
  .page-expert-predictions-match-analysis-1__cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions-match-analysis-1 h1 {
    font-size: 1.8em;
  }

  .page-expert-predictions-match-analysis-1 h2 {
    font-size: 1.5em;
  }

  .page-expert-predictions-match-analysis-1__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-expert-predictions-match-analysis-1__btn--large {
    padding: 12px 25px;
    font-size: 1em;
  }
}