/* style/sports-hot-matches-analysis.css */
.page-sports-hot-matches-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for default white body background */
  background-color: #f8f8f8;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-sports-hot-matches-analysis__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0;
  min-height: 500px; /* Minimum height for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-sports-hot-matches-analysis__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  margin: 20px;
}

.page-sports-hot-matches-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold main color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports-hot-matches-analysis__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-sports-hot-matches-analysis__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-sports-hot-matches-analysis__button {
  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;
  font-size: 1.1em;
}

.page-sports-hot-matches-analysis__button--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
  border: 2px solid #FFD700;
}

.page-sports-hot-matches-analysis__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-sports-hot-matches-analysis__button--secondary {
  background-color: #8B0000; /* Dark Red */
  color: #FFD700; /* Gold */
  border: 2px solid #8B0000;
}

.page-sports-hot-matches-analysis__button--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-3px);
}

.page-sports-hot-matches-analysis__button--link {
  background-color: transparent;
  color: #8B0000;
  border: 2px solid #8B0000;
}

.page-sports-hot-matches-analysis__button--link:hover {
  background-color: #8B0000;
  color: #FFD700;
}

.page-sports-hot-matches-analysis__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Dark Red */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

.page-sports-hot-matches-analysis__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-sports-hot-matches-analysis__why-choose-section,
.page-sports-hot-matches-analysis__top-matches-section,
.page-sports-hot-matches-analysis__deep-dive-section,
.page-sports-hot-matches-analysis__betting-strategies-section,
.page-sports-hot-matches-analysis__live-betting-section,
.page-sports-hot-matches-analysis__responsible-gambling-section,
.page-sports-hot-matches-analysis__join-community-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-sports-hot-matches-analysis__why-choose-section {
  background-color: #fefefe;
}

.page-sports-hot-matches-analysis__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports-hot-matches-analysis__feature-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.page-sports-hot-matches-analysis__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-sports-hot-matches-analysis__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-sports-hot-matches-analysis__feature-description {
  color: #666666;
}

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

.page-sports-hot-matches-analysis__match-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.page-sports-hot-matches-analysis__match-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-sports-hot-matches-analysis__match-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-sports-hot-matches-analysis__match-card h3,
.page-sports-hot-matches-analysis__match-card p {
  padding: 0 20px;
}

.page-sports-hot-matches-analysis__match-title {
  font-size: 1.4em;
  color: #8B0000; /* Dark Red */
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-sports-hot-matches-analysis__match-details {
  font-size: 0.9em;
  color: #999;
  margin-bottom: 15px;
}

.page-sports-hot-matches-analysis__match-snippet {
  color: #666;
  margin-bottom: 20px;
}

.page-sports-hot-matches-analysis__match-card .page-sports-hot-matches-analysis__button--link {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px 20px;
  text-align: center;
  padding: 10px 20px;
}

.page-sports-hot-matches-analysis__deep-dive-section {
  background-color: #fefefe;
}

.page-sports-hot-matches-analysis__sport-analysis-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.page-sports-hot-matches-analysis__sport-analysis-card--reversed {
  flex-direction: row-reverse;
}

.page-sports-hot-matches-analysis__sport-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-sports-hot-matches-analysis__sport-title {
  font-size: 2em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-sports-hot-matches-analysis__sport-description {
  color: #555555;
  margin-bottom: 20px;
}

.page-sports-hot-matches-analysis__sport-list {
  list-style-type: disc;
  margin-left: 20px;
  color: #666666;
}

.page-sports-hot-matches-analysis__sport-list li {
  margin-bottom: 8px;
}

.page-sports-hot-matches-analysis__betting-strategies-section {
  background-color: #fefefe;
}

.page-sports-hot-matches-analysis__strategy-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-sports-hot-matches-analysis__strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports-hot-matches-analysis__strategy-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.page-sports-hot-matches-analysis__strategy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-sports-hot-matches-analysis__strategy-title {
  font-size: 1.5em;
  color: #8B0000; /* Dark Red */
  margin-bottom: 15px;
}

.page-sports-hot-matches-analysis__strategy-description {
  color: #666666;
}

.page-sports-hot-matches-analysis__live-betting-section {
  text-align: center;
  background-color: #FFD700; /* Gold background */
  color: #8B0000;
}

.page-sports-hot-matches-analysis__live-betting-section .page-sports-hot-matches-analysis__section-title {
  color: #8B0000;
}

.page-sports-hot-matches-analysis__live-betting-section .page-sports-hot-matches-analysis__section-intro {
  color: #6a0000;
}

.page-sports-hot-matches-analysis__live-betting-section .page-sports-hot-matches-analysis__button--primary {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

.page-sports-hot-matches-analysis__live-betting-section .page-sports-hot-matches-analysis__button--primary:hover {
  background-color: #6a0000;
  border-color: #6a0000;
}

.page-sports-hot-matches-analysis__responsible-gambling-section {
  text-align: center;
}

.page-sports-hot-matches-analysis__join-community-section {
  text-align: center;
  background-color: #8B0000; /* Dark Red background */
  color: #ffffff;
}

.page-sports-hot-matches-analysis__join-community-section .page-sports-hot-matches-analysis__section-title {
  color: #FFD700;
}

.page-sports-hot-matches-analysis__join-community-section .page-sports-hot-matches-analysis__section-intro {
  color: #f0f0f0;
}

.page-sports-hot-matches-analysis__join-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-sports-hot-matches-analysis__community-image {
  display: block;
  margin: 60px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-sports-hot-matches-analysis__hero-title {
    font-size: 2.8em;
  }
  .page-sports-hot-matches-analysis__section-title {
    font-size: 2em;
  }
  .page-sports-hot-matches-analysis__sport-analysis-card {
    flex-direction: column;
    gap: 20px;
  }
  .page-sports-hot-matches-analysis__sport-analysis-card--reversed {
    flex-direction: column;
  }
  .page-sports-hot-matches-analysis__sport-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-sports-hot-matches-analysis__hero-title {
    font-size: 2em;
  }
  .page-sports-hot-matches-analysis__hero-description {
    font-size: 1em;
  }
  .page-sports-hot-matches-analysis__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports-hot-matches-analysis__button {
    width: 100%;
    max-width: 300px;
  }
  .page-sports-hot-matches-analysis__section-title {
    font-size: 1.8em;
  }
  .page-sports-hot-matches-analysis__section-intro {
    font-size: 1em;
  }
  .page-sports-hot-matches-analysis__features-grid,
  .page-sports-hot-matches-analysis__matches-grid,
  .page-sports-hot-matches-analysis__strategies-grid {
    grid-template-columns: 1fr;
  }
  .page-sports-hot-matches-analysis__sport-image {
    width: 100%; /* Ensure images are responsive */
    max-width: 100%; /* Important for preventing overflow */
    height: auto; /* Maintain aspect ratio */
  }
  .page-sports-hot-matches-analysis__strategy-image,
  .page-sports-hot-matches-analysis__community-image {
    max-width: 100%;
    height: auto;
  }
  /* Content area images should not cause horizontal scroll */
  .page-sports-hot-matches-analysis img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure no image is smaller than 200px in content area */
  .page-sports-hot-matches-analysis__match-image,
  .page-sports-hot-matches-analysis__sport-image,
  .page-sports-hot-matches-analysis__strategy-image,
  .page-sports-hot-matches-analysis__community-image {
    min-width: 200px;
    min-height: 200px;
  }
  /* Ensure no selector targeting img within .page-sports-hot-matches-analysis results in width/height less than 200px */
  .page-sports-hot-matches-analysis__hero-image { 
    /* Specific override if needed for hero, but max-width 100% and height auto are general */
  }
  .page-sports-hot-matches-analysis__match-image {
    height: 200px; /* Adjust height for mobile while maintaining min-size */
  }
}

@media (max-width: 480px) {
  .page-sports-hot-matches-analysis__hero-title {
    font-size: 1.8em;
  }
  .page-sports-hot-matches-analysis__hero-content {
    padding: 20px;
  }
}