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

/* Base styles for the page content, ensuring contrast with dark body background */
.page-sports-football-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light content sections */
  background-color: #f8f9fa; /* Light background for content sections to contrast with dark body */
  padding-bottom: 60px; /* Space before footer */
}

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

/* Hero Section */
.page-sports-football-betting-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

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

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

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

.page-sports-football-betting-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-sports-football-betting-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

/* Section Titles */
.page-sports-football-betting-guide__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-sports-football-betting-guide__dark-section .page-sports-football-betting-guide__section-title {
  color: #ffffff;
}

/* Text Blocks */
.page-sports-football-betting-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-sports-football-betting-guide__dark-section .page-sports-football-betting-guide__text-block {
  color: #f0f0f0;
}

/* Keywords */
.page-sports-football-betting-guide__keyword {
  font-weight: bold;
  color: #017439;
}
.page-sports-football-betting-guide__dark-section .page-sports-football-betting-guide__keyword {
  color: #FFFF00; /* Yellow for keywords on dark background */
}

/* Buttons */
.page-sports-football-betting-guide__btn-primary,
.page-sports-football-betting-guide__btn-secondary,
.page-sports-football-betting-guide a[class*="button"],
.page-sports-football-betting-guide a[class*="btn"] {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

/* Custom colors for Register/Login buttons as per prompt */
.page-sports-football-betting-guide__btn-primary {
  background: #C30808; /* Custom color for Register/Login buttons */
  color: #FFFF00; /* Custom font color for Register/Login buttons */
  border: 2px solid #C30808;
}

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

.page-sports-football-betting-guide__btn-secondary {
  background: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-sports-football-betting-guide__btn-secondary:hover {
  background: #f0f0f0;
  color: #005a2e;
  border-color: #005a2e;
}

/* General Sections */
.page-sports-football-betting-guide__introduction-section,
.page-sports-football-betting-guide__strategy-section,
.page-sports-football-betting-guide__responsibility-section,
.page-sports-football-betting-guide__faq-section {
  padding: 60px 0;
  background-color: #ffffff; /* Light background for contrast */
}

.page-sports-football-betting-guide__dark-section {
  background-color: #017439; /* Brand primary color for dark sections */
  color: #ffffff;
  padding: 60px 0;
}

/* Cards */
.page-sports-football-betting-guide__bet-types-grid,
.page-sports-football-betting-guide__responsibility-grid,
.page-sports-football-betting-guide__vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-sports-football-betting-guide__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 400px; /* Ensure cards have enough space for images and content */
}

.page-sports-football-betting-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-sports-football-betting-guide__dark-section .page-sports-football-betting-guide__card {
  background: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports-football-betting-guide__card-title {
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #017439;
  font-weight: bold;
}

.page-sports-football-betting-guide__dark-section .page-sports-football-betting-guide__card-title {
  color: #FFFF00; /* Yellow for card titles on dark background */
}

.page-sports-football-betting-guide__card-text {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-sports-football-betting-guide__dark-section .page-sports-football-betting-guide__card-text {
  color: #f0f0f0;
}

.page-sports-football-betting-guide__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* Strategy Section */
.page-sports-football-betting-guide__strategy-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

.page-sports-football-betting-guide__strategy-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-sports-football-betting-guide__strategy-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-sports-football-betting-guide__list-item {
  background: #f0f0f0;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  font-size: 1.1em;
  color: #333333;
}

.page-sports-football-betting-guide__list-item strong {
  color: #017439;
  margin-right: 10px;
  white-space: nowrap;
}

/* Live Betting Section (Video) */
.page-sports-football-betting-guide__live-betting-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

.page-sports-football-betting-guide__video-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background-color: #000;
}

.page-sports-football-betting-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}

.page-sports-football-betting-guide__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-sports-football-betting-guide__video-wrapper:hover .page-sports-football-betting-guide__video-overlay {
  opacity: 1;
}