.page-sports-match-analysis {
  font-family: 'Arial', sans-serif;
  color: #0A192F;
  line-height: 1.6;
  background-color: #f5f5f5;
}

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

.page-sports-match-analysis__section {
  padding: 60px 0;
}

.page-sports-match-analysis__section--dark {
  background-color: #0A192F;
  color: #f5f5f5;
}

.page-sports-match-analysis__section--dark .page-sports-match-analysis__section-title,
.page-sports-match-analysis__section--dark .page-sports-match-analysis__text,
.page-sports-match-analysis__section--dark .page-sports-match-analysis__list-highlight,
.page-sports-match-analysis__section--dark .page-sports-match-analysis__feature-title,
.page-sports-match-analysis__section--dark .page-sports-match-analysis__sub-title {
  color: #f5f5f5;
}

.page-sports-match-analysis__section-title {
  font-size: 2.5em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-sports-match-analysis__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
}

.page-sports-match-analysis__sub-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-bottom: 20px;
}

.page-sports-match-analysis__section--dark .page-sports-match-analysis__sub-title {
  color: #FFD700;
}

.page-sports-match-analysis__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-sports-match-analysis__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-sports-match-analysis__text-link:hover {
  text-decoration: underline;
}

.page-sports-match-analysis__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-sports-match-analysis__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #0A192F; /* Default for light background */
}

.page-sports-match-analysis__section--dark .page-sports-match-analysis__list li {
  color: #f5f5f5; /* For dark background sections */
}

.page-sports-match-analysis__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-sports-match-analysis__list--large li {
  font-size: 1.1em;
}

.page-sports-match-analysis__list-highlight {
  color: #FFD700;
}

.page-sports-match-analysis__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-sports-match-analysis__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-sports-match-analysis__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-sports-match-analysis__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-sports-match-analysis__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-sports-match-analysis__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-sports-match-analysis__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

/* Hero Section */
.page-sports-match-analysis__hero {
  background: linear-gradient(135deg, #0A192F, #1e3a60);
  color: #f5f5f5;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-sports-match-analysis__hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.page-sports-match-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #f5f5f5;
  line-height: 1.2;
}

.page-sports-match-analysis__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #ddd;
}

.page-sports-match-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-sports-match-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Intro Section */
.page-sports-match-analysis__intro .page-sports-match-analysis__text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-sports-match-analysis__intro .page-sports-match-analysis__btn {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
}

/* Features Section */
.page-sports-match-analysis__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports-match-analysis__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-sports-match-analysis__feature-item:hover {
  transform: translateY(-10px);
}

.page-sports-match-analysis__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(80%) sepia(85%) saturate(1478%) hue-rotate(345deg) brightness(101%) contrast(101%); /* Converts a black icon to gold #FFD700 */
}

.page-sports-match-analysis__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-sports-match-analysis__feature-text {
  color: #ccc;
}

/* Analysis Guide Section */
.page-sports-match-analysis__guide-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-sports-match-analysis__guide-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-sports-match-analysis__cta-box {
  background-color: #0A192F;
  color: #f5f5f5;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
}

.page-sports-match-analysis__cta-box .page-sports-match-analysis__cta-text {
  font-size: 1.3em;
  margin-bottom: 25px;
}

/* Tips Section */
.page-sports-match-analysis__image-text-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-sports-match-analysis__image-text-layout .page-sports-match-analysis__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-sports-match-analysis__image-text-layout .page-sports-match-analysis__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-sports-match-analysis__image-text-layout .page-sports-match-analysis__text-content {
  flex: 2;
  min-width: 300px;
}

/* FAQ Section */
.page-sports-match-analysis__accordion {
  margin-top: 30px;
}

.page-sports-match-analysis__accordion-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-sports-match-analysis__accordion-header {
  background-color: #0A192F;
  color: #f5f5f5;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-sports-match-analysis__accordion-header:hover {
  background-color: #1e3a60;
}

.page-sports-match-analysis__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-sports-match-analysis__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-sports-match-analysis__accordion-content {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-sports-match-analysis__accordion-content p {
  padding-top: 15px;
  margin-bottom: 15px;
  color: #333;
}

.page-sports-match-analysis__accordion-content .page-sports-match-analysis__btn {
  margin-bottom: 15px;
}

/* Final CTA Section */
.page-sports-match-analysis__final-cta {
  text-align: center;
}

.page-sports-match-analysis__final-cta .page-sports-match-analysis__text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ccc;
}

.page-sports-match-analysis__center-text {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-sports-match-analysis__hero-title {
    font-size: 2.8em;
  }
  .page-sports-match-analysis__section-title {
    font-size: 2em;
  }
  .page-sports-match-analysis__image-text-layout {
    flex-direction: column;
  }
  .page-sports-match-analysis__image-text-layout .page-sports-match-analysis__text-content,
  .page-sports-match-analysis__image-text-layout .page-sports-match-analysis__image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-sports-match-analysis__hero {
    padding: 80px 0;
  }
  .page-sports-match-analysis__hero-title {
    font-size: 2.2em;
  }
  .page-sports-match-analysis__hero-subtitle {
    font-size: 1.2em;
  }
  .page-sports-match-analysis__section {
    padding: 40px 0;
  }
  .page-sports-match-analysis__section-title {
    font-size: 1.8em;
  }
  .page-sports-match-analysis__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-sports-match-analysis__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-sports-match-analysis__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-sports-match-analysis__hero-title {
    font-size: 1.8em;
  }
  .page-sports-match-analysis__hero-subtitle {
    font-size: 1em;
  }
  .page-sports-match-analysis__section-title {
    font-size: 1.5em;
  }
  .page-sports-match-analysis__guide-title {
    font-size: 1.5em;
  }
  .page-sports-match-analysis__text {
    font-size: 1em;
  }
}