/* style/expert-predictions-today-hot-matches-predictions.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-login-btn-bg: #C30808;
  --register-login-btn-text: #FFFF00;
  --light-bg: #FFFFFF;
  --dark-text: #333333;
  --light-text: #ffffff;
  --border-color: #e0e0e0;
  --header-offset: var(--header-offset, 120px);
}

.page-expert-predictions-today-hot-matches-predictions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-text); /* Default text color for light backgrounds */
  background-color: var(--light-bg); /* Explicitly set for main content area */
}

.page-expert-predictions-today-hot-matches-predictions__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset); /* Ensure content is below fixed header */
  padding-bottom: 60px;
  overflow: hidden;
  color: var(--light-text);
  text-align: center;
}

.page-expert-predictions-today-hot-matches-predictions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-expert-predictions-today-hot-matches-predictions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-expert-predictions-today-hot-matches-predictions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-expert-predictions-today-hot-matches-predictions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--light-text);
}

.page-expert-predictions-today-hot-matches-predictions__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
  color: var(--light-text);
}

.page-expert-predictions-today-hot-matches-predictions__hero-cta-buttons,
.page-expert-predictions-today-hot-matches-predictions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-expert-predictions-today-hot-matches-predictions__btn-primary {
  background-color: var(--register-login-btn-bg);
  color: var(--register-login-btn-text);
  border: 2px solid var(--register-login-btn-bg);
}

.page-expert-predictions-today-hot-matches-predictions__btn-primary:hover {
  background-color: #a30707;
  border-color: #a30707;
}

.page-expert-predictions-today-hot-matches-predictions__btn-secondary {
  background-color: transparent;
  color: var(--light-text);
  border: 2px solid var(--light-text);
}

.page-expert-predictions-today-hot-matches-predictions__btn-secondary:hover {
  background-color: var(--light-text);
  color: var(--primary-color);
}

.page-expert-predictions-today-hot-matches-predictions__content-section {
  padding: 60px 0;
  background-color: var(--light-bg);
  color: var(--dark-text);
}

.page-expert-predictions-today-hot-matches-predictions__dark-bg {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.page-expert-predictions-today-hot-matches-predictions__light-bg {
  background-color: var(--light-bg);
  color: var(--dark-text);
}

.page-expert-predictions-today-hot-matches-predictions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-expert-predictions-today-hot-matches-predictions__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-expert-predictions-today-hot-matches-predictions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: inherit;
}

.page-expert-predictions-today-hot-matches-predictions__text-block a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-expert-predictions-today-hot-matches-predictions__text-block a:hover {
  color: #005a2e;
}

.page-expert-predictions-today-hot-matches-predictions__highlight-text {
  font-weight: bold;
  color: inherit; /* Inherit color from parent for contrast */
}

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

.page-expert-predictions-today-hot-matches-predictions__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: var(--light-text);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-expert-predictions-today-hot-matches-predictions__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.page-expert-predictions-today-hot-matches-predictions__feature-image {
  width: 100%;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-expert-predictions-today-hot-matches-predictions__feature-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--light-text);
}

.page-expert-predictions-today-hot-matches-predictions__feature-description {
  font-size: 1em;
  opacity: 0.9;
  color: var(--light-text);
}

.page-expert-predictions-today-hot-matches-predictions__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: inherit;
}

.page-expert-predictions-today-hot-matches-predictions__ordered-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: inherit;
}

.page-expert-predictions-today-hot-matches-predictions__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: inherit;
}

.page-expert-predictions-today-hot-matches-predictions__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px 0;
  object-fit: cover;
}

.page-expert-predictions-today-hot-matches-predictions__video-section {
  padding: 60px 0;
  text-align: center;
  color: var(--light-text);
}

.page-expert-predictions-today-hot-matches-predictions__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.page-expert-predictions-today-hot-matches-predictions__video-link {
  display: block;
  width: 100%;
  height: 100%;
}

.page-expert-predictions-today-hot-matches-predictions__video {
  width: 100%;
  height: auto;
  display: block;
}

.page-expert-predictions-today-hot-matches-predictions__cta-section {
  padding: 80px 0;
  text-align: center;
  color: var(--light-text);
}

.page-expert-predictions-today-hot-matches-predictions__faq-section {
  padding: 60px 0;
}

.page-expert-predictions-today-hot-matches-predictions__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-predictions-today-hot-matches-predictions__faq-item {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--dark-text);
}

.page-expert-predictions-today-hot-matches-predictions__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  color: var(--dark-text);
}

.page-expert-predictions-today-hot-matches-predictions__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-expert-predictions-today-hot-matches-predictions__faq-qtext {
  flex-grow: 1;
  pointer-events: none; /* Prevent summary click from being blocked by inner span */
}

.page-expert-predictions-today-hot-matches-predictions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  pointer-events: none;
}

.page-expert-predictions-today-hot-matches-predictions__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: var(--dark-text);
}

.page-expert-predictions-today-hot-matches-predictions__faq-answer p {
  margin-bottom: 0;
}

.page-expert-predictions-today-hot-matches-predictions__faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-expert-predictions-today-hot-matches-predictions__conclusion-section {
  padding: 80px 0;
  text-align: center;
  color: var(--light-text);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-expert-predictions-today-hot-matches-predictions__hero-title {
    font-size: 3em;
  }
  .page-expert-predictions-today-hot-matches-predictions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-expert-predictions-today-hot-matches-predictions__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset) !important; /* Ensure content is below fixed header */
    padding-bottom: 40px;
  }
  .page-expert-predictions-today-hot-matches-predictions__hero-title {
    font-size: 2.2em;
  }
  .page-expert-predictions-today-hot-matches-predictions__hero-description {
    font-size: 1em;
  }
  .page-expert-predictions-today-hot-matches-predictions__hero-cta-buttons,
  .page-expert-predictions-today-hot-matches-predictions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-expert-predictions-today-hot-matches-predictions__btn-primary,
  .page-expert-predictions-today-hot-matches-predictions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-expert-predictions-today-hot-matches-predictions__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-expert-predictions-today-hot-matches-predictions__text-block,
  .page-expert-predictions-today-hot-matches-predictions__list-item,
  .page-expert-predictions-today-hot-matches-predictions__feature-description {
    font-size: 1em;
  }
  .page-expert-predictions-today-hot-matches-predictions__feature-card {
    padding: 20px;
  }
  .page-expert-predictions-today-hot-matches-predictions__feature-image {
    height: 250px;
  }
  .page-expert-predictions-today-hot-matches-predictions__faq-item summary {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-expert-predictions-today-hot-matches-predictions__faq-answer {
    padding: 0 15px 15px;
  }
  /* Mobile image responsiveness */
  .page-expert-predictions-today-hot-matches-predictions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Mobile video responsiveness */
  .page-expert-predictions-today-hot-matches-predictions video,
  .page-expert-predictions-today-hot-matches-predictions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-expert-predictions-today-hot-matches-predictions__video-section,
  .page-expert-predictions-today-hot-matches-predictions__video-container,
  .page-expert-predictions-today-hot-matches-predictions__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-predictions__container,
  .page-expert-predictions-today-hot-matches-predictions__section,
  .page-expert-predictions-today-hot-matches-predictions__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions-today-hot-matches-predictions__hero-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-today-hot-matches-predictions__section-title {
    font-size: 1.5em;
  }
  .page-expert-predictions-today-hot-matches-predictions__hero-section {
    min-height: 350px;
  }
  .page-expert-predictions-today-hot-matches-predictions__feature-title {
    font-size: 1.5em;
  }
}