.page-sports-hot-matches-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-sports-hot-matches-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles header offset, this is for visual padding */
  text-align: center;
  overflow: hidden;
}

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

.page-sports-hot-matches-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-sports-hot-matches-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-sports-hot-matches-analysis__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports-hot-matches-analysis__hero-description {
  font-size: 1.25rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

.page-sports-hot-matches-analysis__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-sports-hot-matches-analysis__cta-buttons--center {
  margin-top: 40px;
  justify-content: center;
}

.page-sports-hot-matches-analysis__btn-primary,
.page-sports-hot-matches-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports-hot-matches-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports-hot-matches-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-sports-hot-matches-analysis__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Main color for contrast */
  border: 2px solid #2AD16F; /* Border */
}

.page-sports-hot-matches-analysis__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-sports-hot-matches-analysis__section {
  padding: 60px 20px;
  text-align: center;
}

.page-sports-hot-matches-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-sports-hot-matches-analysis__section-title {
  font-size: 2.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  font-weight: 700;
}

.page-sports-hot-matches-analysis__sub-title {
  font-size: 1.8rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-sports-hot-matches-analysis__text-block {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-sports-hot-matches-analysis__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}

.page-sports-hot-matches-analysis__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-sports-hot-matches-analysis__content-image {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports-hot-matches-analysis__text-content {
  flex: 1;
}

.page-sports-hot-matches-analysis__text-content p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-sports-hot-matches-analysis__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-sports-hot-matches-analysis__list-item {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-sports-hot-matches-analysis__list-item::before {
  content: '⚡'; /* Custom bullet point */
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
  font-size: 1.2em;
  line-height: 1;
}

.page-sports-hot-matches-analysis__list--responsible .page-sports-hot-matches-analysis__list-item::before {
  content: '✅';
}

.page-sports-hot-matches-analysis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0 auto;
}

.page-sports-hot-matches-analysis__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports-hot-matches-analysis__card-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-sports-hot-matches-analysis__card-title a {
  color: #F2FFF6;
  text-decoration: none;
}

.page-sports-hot-matches-analysis__card-title a:hover {
  color: #2AD16F;
}

.page-sports-hot-matches-analysis__card-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.page-sports-hot-matches-analysis__card--news {
  padding: 0;
  overflow: hidden;
}

.page-sports-hot-matches-analysis__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-sports-hot-matches-analysis__card-content {
  padding: 20px;
}

.page-sports-hot-matches-analysis__news-date {
  font-size: 0.85rem;
  color: #A7D9B8; /* Text Secondary */
  display: block;
  margin-top: 10px;
}

.page-sports-hot-matches-analysis__faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.page-sports-hot-matches-analysis__faq-list {
  margin-top: 40px;
}

.page-sports-hot-matches-analysis__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports-hot-matches-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  font-size: 1.1rem;
  list-style: none; /* For details/summary */
}

.page-sports-hot-matches-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-sports-hot-matches-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #2AD16F;
}

.page-sports-hot-matches-analysis__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.7;
}

.page-sports-hot-matches-analysis__faq-answer p {
  margin-bottom: 0;
}

.page-sports-hot-matches-analysis__faq-answer a {
  color: #2AD16F;
  text-decoration: underline;
}

.page-sports-hot-matches-analysis__cta-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
}

.page-sports-hot-matches-analysis__cta-content {
  max-width: 700px;
}

.page-sports-hot-matches-analysis__cta-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports-hot-matches-analysis__image-text-block {
    flex-direction: column;
    text-align: center;
  }
  .page-sports-hot-matches-analysis__image-text-block--reverse {
    flex-direction: column;
  }
  .page-sports-hot-matches-analysis__content-image {
    margin-bottom: 30px;
  }
  .page-sports-hot-matches-analysis__cta-final {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-sports-hot-matches-analysis__hero-content {
    padding: 10px;
  }

  .page-sports-hot-matches-analysis__main-title {
    font-size: 2rem;
  }

  .page-sports-hot-matches-analysis__hero-description {
    font-size: 1rem;
  }

  .page-sports-hot-matches-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-sports-hot-matches-analysis__btn-primary,
  .page-sports-hot-matches-analysis__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
  }

  .page-sports-hot-matches-analysis__section,
  .page-sports-hot-matches-analysis__content-area,
  .page-sports-hot-matches-analysis__faq-section,
  .page-sports-hot-matches-analysis__cta-final {
    padding: 40px 15px;
  }

  .page-sports-hot-matches-analysis__section-title {
    font-size: 2rem;
  }

  .page-sports-hot-matches-analysis__sub-title {
    font-size: 1.5rem;
  }

  .page-sports-hot-matches-analysis__text-block {
    font-size: 1rem;
  }

  .page-sports-hot-matches-analysis__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports-hot-matches-analysis__card-title {
    font-size: 1.2rem;
  }

  .page-sports-hot-matches-analysis__card-description {
    font-size: 0.9rem;
  }

  /* Mobile image and video responsive adaptation */
  .page-sports-hot-matches-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-sports-hot-matches-analysis video,
  .page-sports-hot-matches-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports-hot-matches-analysis__hero-section,
  .page-sports-hot-matches-analysis__section,
  .page-sports-hot-matches-analysis__content-area,
  .page-sports-hot-matches-analysis__card,
  .page-sports-hot-matches-analysis__container,
  .page-sports-hot-matches-analysis__video-section,
  .page-sports-hot-matches-analysis__video-container,
  .page-sports-hot-matches-analysis__video-wrapper,
  .page-sports-hot-matches-analysis__cta-buttons,
  .page-sports-hot-matches-analysis__button-group,
  .page-sports-hot-matches-analysis__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-sports-hot-matches-analysis__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  
  .page-sports-hot-matches-analysis__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

  .page-sports-hot-matches-analysis__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-sports-hot-matches-analysis__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

/* Ensure content area images are not too small */
.page-sports-hot-matches-analysis__content-area img {
  min-width: 200px;
  min-height: 200px;
}

/* Contrast fixes for specific elements if needed */
.page-sports-hot-matches-analysis__dark-bg {
  color: #F2FFF6; /* Deep Green background, so light text */
  background: #08160F;
}

.page-sports-hot-matches-analysis__card {
  background: #11271B; /* Card BG, so light text */
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
}

.page-sports-hot-matches-analysis__text-block,
.page-sports-hot-matches-analysis__text-content p,
.page-sports-hot-matches-analysis__card-description,
.page-sports-hot-matches-analysis__news-date,
.page-sports-hot-matches-analysis__faq-answer p {
  color: #A7D9B8; /* Text Secondary */
}