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

/* Base styles for the page */
.page-sports-football-betting {
  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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

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

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

.page-sports-football-betting__light-bg {
  background-color: #ffffff;
  color: #333333;
  padding: 80px 0;
}

.page-sports-football-betting__light-bg .page-sports-football-betting__section-title,
.page-sports-football-betting__light-bg .page-sports-football-betting__section-intro {
  color: #333333;
}

/* Hero Section */
.page-sports-football-betting__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 100px 40px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

.page-sports-football-betting__hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.page-sports-football-betting__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFF00; /* Custom color for hero title */
}

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

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

.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;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

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

.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__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.page-sports-football-betting__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page-sports-football-betting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-sports-football-betting__feature-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-sports-football-betting__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports-football-betting__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports-football-betting__feature-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #017439;
}

.page-sports-football-betting__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Guide Section */
.page-sports-football-betting__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-sports-football-betting__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-sports-football-betting__step-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports-football-betting__step-title {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #FFFF00;
}

.page-sports-football-betting__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Bet Types Section */
.page-sports-football-betting__types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-sports-football-betting__type-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: #333333;
  min-height: 200px;
}

.page-sports-football-betting__type-card:hover {
  transform: translateY(-5px);
}

.page-sports-football-betting__type-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #017439;
}

.page-sports-football-betting__type-description {
  font-size: 1em;
  color: #555555;
}

/* Strategy Section */
.page-sports-football-betting__strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-sports-football-betting__strategy-cards .page-sports-football-betting__card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-sports-football-betting__strategy-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports-football-betting__strategy-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #FFFF00;
}

.page-sports-football-betting__strategy-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Promotions Section */
.page-sports-football-betting__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-sports-football-betting__promo-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
  text-align: center;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-sports-football-betting__promo-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports-football-betting__promo-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #017439;
}

.page-sports-football-betting__promo-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* App Download Section */
.page-sports-football-betting__app-flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.page-sports-football-betting__app-content {
  flex: 1;
  max-width: 600px;
}

.page-sports-football-betting__app-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-sports-football-betting__app-benefits li {
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  color: #f0f0f0;
}

.page-sports-football-betting__app-benefits li::before {
  content: '✔';
  color: #FFFF00; /* Custom checkmark color */
  position: absolute;
  left: 0;
  top: 0;
}

.page-sports-football-betting__app-image-wrapper {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-sports-football-betting__app-qr-code {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Video Section */
.page-sports-football-betting__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-sports-football-betting__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-sports-football-betting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block; /* Ensure video takes full space */
}

/* FAQ Section */
.page-sports-football-betting__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-sports-football-betting__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-sports-football-betting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #017439;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-sports-football-betting__faq-question:hover {
  background-color: #005f2e;
}

.page-sports-football-betting__faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #ffffff;
}

.page-sports-football-betting__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFFF00;
  transition: transform 0.3s ease;
}

.page-sports-football-betting__faq-item.active .page-sports-football-betting__faq-toggle {
  transform: rotate(45deg);
}

.page-sports-football-betting__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-sports-football-betting__faq-item.active .page-sports-football-betting__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-sports-football-betting__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

/* General Image Styling */
.page-sports-football-betting img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports-football-betting__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .page-sports-football-betting__hero-content {
    max-width: 100%;
  }

  .page-sports-football-betting__hero-image-wrapper {
    margin-top: 40px;
  }

  .page-sports-football-betting__hero-cta-buttons {
    justify-content: center;
  }

  .page-sports-football-betting__app-flex-container {
    flex-direction: column;
    text-align: center;
  }

  .page-sports-football-betting__app-content {
    max-width: 100%;
  }

  .page-sports-football-betting__app-image-wrapper {
    margin-top: 40px;
  }

  .page-sports-football-betting__app-benefits {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-sports-football-betting {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-sports-football-betting__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
    min-height: auto;
  }

  .page-sports-football-betting__hero-title {
    font-size: 2.5em;
  }

  .page-sports-football-betting__hero-description {
    font-size: 1em;
  }

  .page-sports-football-betting__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports-football-betting__btn-primary,
  .page-sports-football-betting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-sports-football-betting__section-title {
    font-size: 2em;
  }

  .page-sports-football-betting__section-intro {
    font-size: 0.95em;
  }

  .page-sports-football-betting__dark-bg,
  .page-sports-football-betting__light-bg {
    padding: 60px 0;
  }

  .page-sports-football-betting__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Images responsiveness */
  .page-sports-football-betting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video responsiveness */
  .page-sports-football-betting video,
  .page-sports-football-betting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-sports-football-betting__video-section,
  .page-sports-football-betting__video-container,
  .page-sports-football-betting__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-sports-football-betting__promo-card,
  .page-sports-football-betting__feature-card,
  .page-sports-football-betting__step-item,
  .page-sports-football-betting__type-card,
  .page-sports-football-betting__strategy-cards .page-sports-football-betting__card {
    padding: 20px;
    min-height: auto;
  }

  .page-sports-football-betting__faq-question {
    padding: 15px 20px;
  }

  .page-sports-football-betting__faq-question h3 {
    font-size: 1.1em;
  }

  .page-sports-football-betting__faq-answer {
    padding: 0 20px;
  }

  .page-sports-football-betting__faq-item.active .page-sports-football-betting__faq-answer {
    padding: 15px 20px;
  }

  .page-sports-football-betting__app-benefits li {
    font-size: 1em;
  }
}