.page-sports-football-betting {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text color for light background */
  background-color: var(--secondary-color, #FFFFFF); /* 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__dark-section {
  background-color: #017439; /* Primary brand color */
  color: #ffffff;
}

.page-sports-football-betting__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-sports-football-betting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  position: relative;
  overflow: hidden;
  min-height: 600px; /* Minimum height for hero */
}

.page-sports-football-betting__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-sports-football-betting__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-sports-football-betting__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-sports-football-betting__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.page-sports-football-betting__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-sports-football-betting__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-sports-football-betting__btn-primary,
.page-sports-football-betting__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;
  font-size: 1.1em;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  cursor: pointer;
}

.page-sports-football-betting__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-sports-football-betting__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
}

.page-sports-football-betting__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-sports-football-betting__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

.page-sports-football-betting__section {
  padding: 60px 0;
  text-align: center;
}

.page-sports-football-betting__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #017439;
}

.page-sports-football-betting__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-sports-football-betting__dark-section .page-sports-football-betting__section-title {
  color: #ffffff;
}

.page-sports-football-betting__dark-section .page-sports-football-betting__section-description {
  color: #f0f0f0;
}

.page-sports-football-betting__feature-grid,
.page-sports-football-betting__card-grid,
.page-sports-football-betting__steps-grid,
.page-sports-football-betting__promo-grid,
.page-sports-football-betting__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}