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

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #0a0a0a;
  --btn-register-bg: #C30808;
  --btn-login-bg: #C30808;
  --btn-register-login-text: #FFFF00;
}

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

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

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

.page-expert-predictions-today-hot-matches__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

/* Hero Section */
.page-expert-predictions-today-hot-matches__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure content is not covered by fixed header */
  overflow: hidden;
}

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

.page-expert-predictions-today-hot-matches__hero-section .page-expert-predictions-today-hot-matches__container {
  position: relative;
  z-index: 2;
  color: var(--text-light);
}

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

.page-expert-predictions-today-hot-matches__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

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

/* Buttons */
.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, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-expert-predictions-today-hot-matches__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-expert-predictions-today-hot-matches__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.page-expert-predictions-today-hot-matches__btn-text {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-expert-predictions-today-hot-matches__btn-text:hover {
  color: #004d2b;
}

.page-expert-predictions-today-hot-matches__cta-full-width {
  text-align: center;
  margin-top: 40px;
}

/* Section Titles and Intros */
.page-expert-predictions-today-hot-matches__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: inherit;
}

.page-expert-predictions-today-hot-matches__section-intro-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: inherit;
}

/* Why Trust Us Section */
.page-expert-predictions-today-hot-matches__why-trust-us-section {
  padding: 80px 0;
}

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

.page-expert-predictions-today-hot-matches__feature-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.page-expert-predictions-today-hot-matches__feature-icon {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-expert-predictions-today-hot-matches__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-expert-predictions-today-hot-matches__feature-description {
  font-size: 1em;
  color: var(--text-dark);
}

/* Hot Matches Section */
.page-expert-predictions-today-hot-matches__hot-matches-section {
  padding: 80px 0;
}

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

.page-expert-predictions-today-hot-matches__match-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-expert-predictions-today-hot-matches__match-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-expert-predictions-today-hot-matches__match-title {
  font-size: 1.4em;
  margin: 0 20px 10px 20px;
  color: var(--text-light);
}

.page-expert-predictions-today-hot-matches__match-title a {
  color: var(--text-light);
  text-decoration: none;
}

.page-expert-predictions-today-hot-matches__match-title a:hover {
  color: var(--primary-color);
}

.page-expert-predictions-today-hot-matches__match-time {
  font-size: 0.9em;
  color: #aaa;
  margin: 0 20px 15px 20px;
}

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

.page-expert-predictions-today-hot-matches__odds-list li {
  margin-bottom: 5px;
  color: var(--text-light);
}

.page-expert-predictions-today-hot-matches__match-prediction-summary {
  font-style: italic;
  color: #ccc;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-expert-predictions-today-hot-matches__match-card .page-expert-predictions-today-hot-matches__btn-text {
  display: block;
  text-align: center;
  margin: 0 20px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Methodology Section */
.page-expert-predictions-today-hot-matches__methodology-section {
  padding: 80px 0;
}

.page-expert-predictions-today-hot-matches__methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-expert-predictions-today-hot-matches__step-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.page-expert-predictions-today-hot-matches__step-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-expert-predictions-today-hot-matches__step-description {
  font-size: 1em;
  color: var(--text-dark);
}

/* Betting Tips Section */
.page-expert-predictions-today-hot-matches__betting-tips-section {
  padding: 80px 0;
}

.page-expert-predictions-today-hot-matches__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-expert-predictions-today-hot-matches__tips-list li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: var(--text-light);
}

.page-expert-predictions-today-hot-matches__tips-list li strong {
  color: var(--primary-color);
}

.page-expert-predictions-today-hot-matches__tips-list li a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-expert-predictions-today-hot-matches__tips-list li a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-expert-predictions-today-hot-matches__faq-section {
  padding: 80px 0;
}

.page-expert-predictions-today-hot-matches__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-expert-predictions-today-hot-matches__faq-item {
  background-color: var(--secondary-color);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-expert-predictions-today-hot-matches__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.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.active .page-expert-predictions-today-hot-matches__faq-toggle {
  transform: rotate(45deg);
}

.page-expert-predictions-today-hot-matches__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-dark);
  background-color: var(--secondary-color);
}

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

/* General Image Styles for Responsiveness */
.page-expert-predictions-today-hot-matches img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .page-expert-predictions-today-hot-matches__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: 450px;
  }
  .page-expert-predictions-today-hot-matches__hero-title {
    font-size: 2.5em;
  }
  .page-expert-predictions-today-hot-matches__hero-description {
    font-size: 1.1em;
  }
  .page-expert-predictions-today-hot-matches__hero-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: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-expert-predictions-today-hot-matches__section-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-today-hot-matches__section-intro-text {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-expert-predictions-today-hot-matches__why-trust-us-section,
  .page-expert-predictions-today-hot-matches__hot-matches-section,
  .page-expert-predictions-today-hot-matches__methodology-section,
  .page-expert-predictions-today-hot-matches__betting-tips-section,
  .page-expert-predictions-today-hot-matches__faq-section {
    padding: 50px 0;
  }
  .page-expert-predictions-today-hot-matches__container {
    padding: 0 15px;
  }
  .page-expert-predictions-today-hot-matches__feature-item,
  .page-expert-predictions-today-hot-matches__match-card,
  .page-expert-predictions-today-hot-matches__step-item,
  .page-expert-predictions-today-hot-matches__faq-item {
    padding: 20px;
  }
  .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__feature-icon,
  .page-expert-predictions-today-hot-matches__match-image {
    height: auto;
    max-height: 200px;
  }

  /* Ensure all containers with images/videos/buttons adapt */
  .page-expert-predictions-today-hot-matches__hero-section,
  .page-expert-predictions-today-hot-matches__why-trust-us-section,
  .page-expert-predictions-today-hot-matches__hot-matches-section,
  .page-expert-predictions-today-hot-matches__methodology-section,
  .page-expert-predictions-today-hot-matches__betting-tips-section,
  .page-expert-predictions-today-hot-matches__faq-section,
  .page-expert-predictions-today-hot-matches__features-grid,
  .page-expert-predictions-today-hot-matches__match-list,
  .page-expert-predictions-today-hot-matches__methodology-steps,
  .page-expert-predictions-today-hot-matches__faq-list,
  .page-expert-predictions-today-hot-matches__hero-cta-buttons,
  .page-expert-predictions-today-hot-matches__cta-full-width {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .page-expert-predictions-today-hot-matches__match-title,
  .page-expert-predictions-today-hot-matches__match-time,
  .page-expert-predictions-today-hot-matches__odds-list,
  .page-expert-predictions-today-hot-matches__match-prediction-summary,
  .page-expert-predictions-today-hot-matches__match-card .page-expert-predictions-today-hot-matches__btn-text {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-expert-predictions-today-hot-matches__faq-answer {
    padding: 0 15px;
  }
  .page-expert-predictions-today-hot-matches__faq-item.active .page-expert-predictions-today-hot-matches__faq-answer {
    padding: 15px !important;
  }
}