.page-expert-predictions-today-match-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: var(--dark-bg-1); /* Assuming shared.css defines a dark background */
}

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

.page-expert-predictions-today-match-analysis__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-expert-predictions-today-match-analysis__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-expert-predictions-today-match-analysis__inline-link {
  color: #00ff80; /* Brighter green for contrast on dark text */
  text-decoration: underline;
}

.page-expert-predictions-today-match-analysis__inline-link:hover {
  color: #00e676;
}

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

.page-expert-predictions-today-match-analysis__btn-primary {
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom color for register/login font */
  border: 2px solid #C30808;
}

.page-expert-predictions-today-match-analysis__btn-primary:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
}

.page-expert-predictions-today-match-analysis__btn-secondary {
  background-color: transparent;
  color: #017439;
  border: 2px solid #017439;
}

.page-expert-predictions-today-match-analysis__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

.page-expert-predictions-today-match-analysis__btn-tertiary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
  font-size: 0.9em;
  padding: 10px 20px;
}

.page-expert-predictions-today-match-analysis__btn-tertiary:hover {
  background-color: #005f2e;
  border-color: #005f2e;
}

/* HERO Section */
.page-expert-predictions-today-match-analysis__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
}

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

.page-expert-predictions-today-match-analysis__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-expert-predictions-today-match-analysis__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-expert-predictions-today-match-analysis__hero-title {
  font-size: 3.8em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-expert-predictions-today-match-analysis__hero-description {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-expert-predictions-today-match-analysis__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Introduction Section */
.page-expert-predictions-today-match-analysis__introduction-section {
  padding: 60px 0;
  background-color: var(--dark-bg-1);
}

/* Methodology Section */
.page-expert-predictions-today-match-analysis__methodology-section {
  padding: 60px 0;
  background-color: #017439; /* Using primary brand color for dark section */
  color: #ffffff;
}

.page-expert-predictions-today-match-analysis__methodology-section .page-expert-predictions-today-match-analysis__section-title {
  color: #ffffff;
}

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

.page-expert-predictions-today-match-analysis__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark bg */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-expert-predictions-today-match-analysis__card-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-expert-predictions-today-match-analysis__card p {
  font-size: 1em;
  color: #f0f0f0;
}

/* Matches Section */
.page-expert-predictions-today-match-analysis__matches-section {
  padding: 60px 0;
  background-color: var(--dark-bg-1);
}

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

.page-expert-predictions-today-match-analysis__match-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-expert-predictions-today-match-analysis__match-title {
  font-size: 1.6em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-expert-predictions-today-match-analysis__match-card p {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 10px;
  flex-grow: 1;
}

.page-expert-predictions-today-match-analysis__match-card .page-expert-predictions-today-match-analysis__btn-tertiary {
  margin-top: 15px;
  align-self: flex-start;
}

/* Strategies Section */
.page-expert-predictions-today-match-analysis__strategies-section {
  padding: 60px 0;
  background-color: #017439; /* Primary brand color */
  color: #ffffff;
}

.page-expert-predictions-today-match-analysis__strategies-section .page-expert-predictions-today-match-analysis__section-title {
  color: #ffffff;
}

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

.page-expert-predictions-today-match-analysis__strategy-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-today-match-analysis__strategy-heading {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-expert-predictions-today-match-analysis__strategy-item p {
  color: #f0f0f0;
  font-size: 1em;
}

/* Why Choose Us Section */
.page-expert-predictions-today-match-analysis__why-choose-us-section {
  padding: 60px 0;
  background-color: var(--dark-bg-1);
}

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

.page-expert-predictions-today-match-analysis__feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-expert-predictions-today-match-analysis__feature-icon {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-expert-predictions-today-match-analysis__feature-title {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-expert-predictions-today-match-analysis__feature-card p {
  color: #f0f0f0;
  font-size: 0.95em;
}

/* FAQ Section */
.page-expert-predictions-today-match-analysis__faq-section {
  padding: 60px 0;
  background-color: var(--dark-bg-1);
}

.page-expert-predictions-today-match-analysis__faq-list {
  max-width: 800px;
  margin: 30px auto 0;
}

.page-expert-predictions-today-match-analysis__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-expert-predictions-today-match-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-expert-predictions-today-match-analysis__faq-question h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2em;
}

.page-expert-predictions-today-match-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #00ff80;
}

.page-expert-predictions-today-match-analysis__faq-item.active .page-expert-predictions-today-match-analysis__faq-toggle {
  transform: rotate(45deg);
  color: #C30808;
}

.page-expert-predictions-today-match-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  font-size: 1em;
}

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

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

/* CTA Section */
.page-expert-predictions-today-match-analysis__cta-section {
  padding: 80px 0;
  background-color: #017439; /* Primary brand color */
  text-align: center;
  color: #ffffff;
}

.page-expert-predictions-today-match-analysis__cta-section .page-expert-predictions-today-match-analysis__section-title {
  color: #ffffff;
}

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

/* General image styling */
.page-expert-predictions-today-match-analysis img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Responsive Design */

/* Tablet (max-width: 1024px) - Not explicitly required, but good practice for intermediate screens */
@media (max-width: 1024px) {
  .page-expert-predictions-today-match-analysis__hero-title {
    font-size: 3em;
  }

  .page-expert-predictions-today-match-analysis__hero-description {
    font-size: 1.2em;
  }

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

  .page-expert-predictions-today-match-analysis__container {
    padding: 30px 15px;
  }

  .page-expert-predictions-today-match-analysis__content-grid,
  .page-expert-predictions-today-match-analysis__match-grid,
  .page-expert-predictions-today-match-analysis__strategy-list,
  .page-expert-predictions-today-match-analysis__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

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

  /* HERO Section */
  .page-expert-predictions-today-match-analysis__hero-section {
    height: 500px;
    padding-top: 0; /* Assuming shared.css handles body padding-top, otherwise use var(--header-offset) */
  }

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

  .page-expert-predictions-today-match-analysis__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-expert-predictions-today-match-analysis__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Section Titles */
  .page-expert-predictions-today-match-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  /* General Text */
  .page-expert-predictions-today-match-analysis__text-block {
    font-size: 1em;
    padding: 0 10px;
  }

  /* Cards & Grids */
  .page-expert-predictions-today-match-analysis__content-grid,
  .page-expert-predictions-today-match-analysis__match-grid,
  .page-expert-predictions-today-match-analysis__strategy-list,
  .page-expert-predictions-today-match-analysis__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-expert-predictions-today-match-analysis__card,
  .page-expert-predictions-today-match-analysis__match-card,
  .page-expert-predictions-today-match-analysis__strategy-item,
  .page-expert-predictions-today-match-analysis__feature-card {
    padding: 20px;
    margin: 0 10px; /* Add horizontal margin to cards */
  }

  .page-expert-predictions-today-match-analysis__card-title,
  .page-expert-predictions-today-match-analysis__match-title,
  .page-expert-predictions-today-match-analysis__strategy-heading,
  .page-expert-predictions-today-match-analysis__feature-title {
    font-size: 1.3em;
  }

  /* Images */
  .page-expert-predictions-today-match-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Containers for images */
  .page-expert-predictions-today-match-analysis__section,
  .page-expert-predictions-today-match-analysis__card,
  .page-expert-predictions-today-match-analysis__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons and Button Containers */
  .page-expert-predictions-today-match-analysis__btn-primary,
  .page-expert-predictions-today-match-analysis__btn-secondary,
  .page-expert-predictions-today-match-analysis__btn-tertiary,
  .page-expert-predictions-today-match-analysis a[class*="button"],
  .page-expert-predictions-today-match-analysis a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-expert-predictions-today-match-analysis__hero-cta-buttons,
  .page-expert-predictions-today-match-analysis__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 15px;
    flex-direction: column; /* Ensure vertical stacking for buttons */
  }

  /* FAQ Section */
  .page-expert-predictions-today-match-analysis__faq-list {
    margin-left: 10px;
    margin-right: 10px;
  }

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

  .page-expert-predictions-today-match-analysis__faq-question h3 {
    font-size: 1.1em;
  }

  .page-expert-predictions-today-match-analysis__faq-answer {
    padding: 15px !important;
  }
}