.page-expert-predictions-today-hot-matches {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css #111 */
}

.page-expert-predictions-today-hot-matches__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  box-sizing: border-box;
}

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

.page-expert-predictions-today-hot-matches__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-hot-matches__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-expert-predictions-today-hot-matches__hero-title {
  font-size: 3.2em;
  color: #FFFF00; /* Register and Login font color for high impact */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-expert-predictions-today-hot-matches__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 30px;
}

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

.page-expert-predictions-today-hot-matches__btn-primary,
.page-expert-predictions-today-hot-matches__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-expert-predictions-today-hot-matches__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-expert-predictions-today-hot-matches__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-3px);
}

.page-expert-predictions-today-hot-matches__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #FFFF00;
}

.page-expert-predictions-today-hot-matches__btn-secondary:hover {
  background-color: #FFFF00;
  color: #C30808;
  transform: translateY(-3px);
}

.page-expert-predictions-today-hot-matches__section-title {
  font-size: 2.5em;
  color: #FFFF00;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-expert-predictions-today-hot-matches__content-area,
.page-expert-predictions-today-hot-matches__methodology-section,
.page-expert-predictions-today-hot-matches__featured-matches-section,
.page-expert-predictions-today-hot-matches__tips-section,
.page-expert-predictions-today-hot-matches__promotions-section,
.page-expert-predictions-today-hot-matches__video-section,
.page-expert-predictions-today-hot-matches__faq-section,
.page-expert-predictions-today-hot-matches__cta-final-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-expert-predictions-today-hot-matches__dark-bg {
  background-color: #017439; /* Brand primary color for dark sections */
  color: #ffffff;
}

.page-expert-predictions-today-hot-matches__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: justify;
}

.page-expert-predictions-today-hot-matches__methodology-grid,
.page-expert-predictions-today-hot-matches__tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-expert-predictions-today-hot-matches__methodology-image-wrapper,
.page-expert-predictions-today-hot-matches__tips-image-wrapper {
  text-align: center;
}

.page-expert-predictions-today-hot-matches__methodology-image,
.page-expert-predictions-today-hot-matches__tips-image,
.page-expert-predictions-today-hot-matches__match-card-image,
.page-expert-predictions-today-hot-matches__promotion-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: block;
}

.page-expert-predictions-today-hot-matches__tips-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-expert-predictions-today-hot-matches__tips-list-item {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  padding: 15px;
  border-left: 5px solid #FFFF00;
  border-radius: 5px;
  color: #ffffff;
}

.page-expert-predictions-today-hot-matches__tips-list-item strong {
  color: #FFFF00;
}

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

.page-expert-predictions-today-hot-matches__match-card,
.page-expert-predictions-today-hot-matches__promotion-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

.page-expert-predictions-today-hot-matches__match-card-content,
.page-expert-predictions-today-hot-matches__promotion-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-expert-predictions-today-hot-matches__match-card-title,
.page-expert-predictions-today-hot-matches__promotion-title {
  font-size: 1.8em;
  color: #FFFF00;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-expert-predictions-today-hot-matches__match-info,
.page-expert-predictions-today-hot-matches__match-analysis,
.page-expert-predictions-today-hot-matches__match-prediction,
.page-expert-predictions-today-hot-matches__promotion-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 15px;
  text-align: justify;
}

.page-expert-predictions-today-hot-matches__match-card .page-expert-predictions-today-hot-matches__btn-primary,
.page-expert-predictions-today-hot-matches__promotion-card .page-expert-predictions-today-hot-matches__btn-primary {
  margin-top: auto; /* Push button to the bottom */
}

.page-expert-predictions-today-hot-matches__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  margin-bottom: 20px;
  box-sizing: border-box;
}

.page-expert-predictions-today-hot-matches__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%; /* Ensure video does not overflow */
  height: auto; /* Maintain aspect ratio */
  display: block;
  cursor: pointer;
}

.page-expert-predictions-today-hot-matches__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.page-expert-predictions-today-hot-matches__video-description {
  text-align: center;
  font-size: 1.1em;
  color: #ffffff;
  margin-top: 20px;
}

.page-expert-predictions-today-hot-matches__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-expert-predictions-today-hot-matches__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  color: #ffffff;
}

.page-expert-predictions-today-hot-matches__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #017439;
  color: #FFFF00;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
  user-select: none;
}

.page-expert-predictions-today-hot-matches__faq-question::-webkit-details-marker {
  display: none;
}

.page-expert-predictions-today-hot-matches__faq-question:hover {
  background-color: #015f30;
}

.page-expert-predictions-today-hot-matches__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-expert-predictions-today-hot-matches__faq-item[open] .page-expert-predictions-today-hot-matches__faq-toggle {
  transform: rotate(45deg);
}

.page-expert-predictions-today-hot-matches__faq-answer {
  padding: 20px 25px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1em;
}

.page-expert-predictions-today-hot-matches__cta-final-section {
  text-align: center;
  background-color: #017439;
  color: #ffffff;
  padding: 80px 20px;
}

.page-expert-predictions-today-hot-matches__cta-final-section .page-expert-predictions-today-hot-matches__section-title {
  color: #FFFF00;
}

.page-expert-predictions-today-hot-matches__cta-final-section .page-expert-predictions-today-hot-matches__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-expert-predictions-today-hot-matches__hero-title {
    font-size: 2.5em;
  }
  .page-expert-predictions-today-hot-matches__section-title {
    font-size: 2em;
  }
  .page-expert-predictions-today-hot-matches__methodology-grid,
  .page-expert-predictions-today-hot-matches__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-expert-predictions-today-hot-matches__methodology-image-wrapper,
  .page-expert-predictions-today-hot-matches__tips-image-wrapper {
    order: -1; /* Image first on mobile */
  }
}

@media (max-width: 768px) {
  .page-expert-predictions-today-hot-matches__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-expert-predictions-today-hot-matches__hero-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-today-hot-matches__hero-description {
    font-size: 1em;
  }
  .page-expert-predictions-today-hot-matches__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-expert-predictions-today-hot-matches__btn-primary,
  .page-expert-predictions-today-hot-matches__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-expert-predictions-today-hot-matches__section-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-today-hot-matches__text-block {
    font-size: 0.95em;
  }
  .page-expert-predictions-today-hot-matches__tips-list-item {
    padding: 12px;
  }
  .page-expert-predictions-today-hot-matches__match-card-title,
  .page-expert-predictions-today-hot-matches__promotion-title {
    font-size: 1.5em;
  }
  .page-expert-predictions-today-hot-matches__match-info,
  .page-expert-predictions-today-hot-matches__match-analysis,
  .page-expert-predictions-today-hot-matches__match-prediction,
  .page-expert-predictions-today-hot-matches__promotion-description {
    font-size: 0.9em;
  }
  .page-expert-predictions-today-hot-matches__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-expert-predictions-today-hot-matches__faq-answer {
    padding: 15px 20px;
    font-size: 0.9em;
  }
  
  /* Mobile image, video, container responsiveness */
  .page-expert-predictions-today-hot-matches img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-expert-predictions-today-hot-matches video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-expert-predictions-today-hot-matches__section,
  .page-expert-predictions-today-hot-matches__card,
  .page-expert-predictions-today-hot-matches__container,
  .page-expert-predictions-today-hot-matches__video-section,
  .page-expert-predictions-today-hot-matches__video-container,
  .page-expert-predictions-today-hot-matches__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-expert-predictions-today-hot-matches__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
}