/* style/sports-football-betting.css */
.page-sports-football-betting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Matches body background from shared.css */
}

.page-sports-football-betting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-sports-football-betting__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-sports-football-betting__text-block {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-sports-football-betting__highlight {
  color: #FFFF00;
  font-weight: bold;
}

/* Hero Section */
.page-sports-football-betting__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  overflow: hidden;
  padding: 80px 0;
  background-color: #017439; /* Fallback for image loading */
}

.page-sports-football-betting__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Slightly darken image for text readability, as per prompt's guidance for hero images */
}

.page-sports-football-betting__hero-section .page-sports-football-betting__container {
  z-index: 1;
  max-width: 900px;
}