/* style/sports-football-betting-guide.css */

/* --- General Styles --- */
.page-sports-football-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensure consistency with body background */
}

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

.page-sports-football-betting-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-sports-football-betting-guide__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports-football-betting-guide__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-sports-football-betting-guide__text-block p {
  margin-bottom: 1em;
}

.page-sports-football-betting-guide a {
  color: #FFD700; /* Links use primary brand color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-sports-football-betting-guide a:hover {
  color: #e6c200; /* Slightly darker gold on hover */
  text-decoration: underline;
}

/* --- Buttons --- */
.page-sports-football-betting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-sports-football-betting-guide__btn-primary,
.page-sports-football-betting-guide__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

.page-sports-football-betting-guide__btn-primary {
  background-color: #FFD700; /* Primary brand color */
  color: #000000; /* Black text for contrast */
  border: 2px solid #FFD700;
}

.page-sports-football-betting-guide__btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  border-color: #e6c200;
  color: #000000;
}

.page-sports-football-betting-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Primary brand color */
  border: 2px solid #FFD700;
}

.page-sports-football-betting-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

/* --- Hero Section --- */
.page-sports-football-betting-guide__hero-section {
  position: relative;
  width: 100%;
  height: 70vh; /* Responsive height */
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-sports-football-betting-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-sports-football-betting-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: -1;
}

.page-sports-football-betting-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-sports-football-betting-guide__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports-football-betting-guide__hero-description {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* --- Video Section --- */
.page-sports-football-betting-guide__video-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
}