:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg: #17191F;
  --page-bg: #0D0E12;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
}

.page-sports-football-betting-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Default text color for the page */
  background-color: var(--page-bg); /* Use the specified background color */
}

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

.page-sports-football-betting-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-sports-football-betting-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-sports-football-betting-guide__text-content {
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-main);
}

/* Hero Section */
.page-sports-football-betting-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: var(--page-bg);
  overflow: hidden;
}

.page-sports-football-betting-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-sports-football-betting-guide__hero-image {
  width: 100%;
  margin-bottom: 40px;
}

.page-sports-football-betting-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-sports-football-betting-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-sports-football-betting-guide__main-title {
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-sports-football-betting-guide__description {
  font-size: 19px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports-football-betting-guide__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports-football-betting-guide__cta-button:hover {
  background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 165, 58, 0.6);
}

.page-sports-football-betting-guide__cta-button--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styling */
.page-sports-football-betting-guide__introduction-section,
.page-sports-football-betting-guide__strategy-section,
.page-sports-football-betting-guide__promotions-section,
.page-sports-football-betting-guide__cta-final-section {
  padding: 80px 0;
  background-color: var(--page-bg);
}

.page-sports-football-betting-guide__dark-section {
  background-color: var(--card-bg);
  padding: 80px 0;
}

.page-sports-football-betting-guide__light-text {
  color: var(--text-main);
}

.page-sports-football-betting-guide__image-wrapper {
  margin: 40px auto;
  max-width: 1000px;
  text-align: center;
}

.page-sports-football-betting-guide__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-sports-football-betting-guide__image-wrapper--margin-top {
    margin-top: 60px;
}

/* Grid Cards */
.page-sports-football-betting-guide__grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-sports-football-betting-guide__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-football-betting-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 140, 26, 0.3);
}

.page-sports-football-betting-guide__card-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-sports-football-betting-guide__card-text {
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.7;
}

/* Strategy List */
.page-sports-football-betting-guide__strategy-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px auto;
  max-width: 900px;
  text-align: left;
}

.page-sports-football-betting-guide__strategy-list li {
  background-color: var(--card-bg);
  border-left: 5px solid var(--primary-color);
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-sports-football-betting-guide__strategy-list li strong {
  color: var(--secondary-color);
}

/* Registration Steps */
.page-sports-football-betting-guide__registration-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px auto;
  max-width: 900px;
  counter-reset: step-counter;
  text-align: left;
}

.page-sports-football-betting-guide__registration-steps li {
  position: relative;
  padding: 20px 25px 20px 60px;
  margin-bottom: 15px;
  background-color: var(--card-bg);
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-sports-football-betting-guide__registration-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

/* FAQ Section */
.page-sports-football-betting-guide__faq-section {
  padding: 80px 0;
  background-color: var(--page-bg);
}

.page-sports-football-betting-guide__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

details.page-sports-football-betting-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

details.page-sports-football-betting-guide__faq-item summary.page-sports-football-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-sports-football-betting-guide__faq-item summary.page-sports-football-betting-guide__faq-question::-webkit-details-marker {
  display: none;
}

details.page-sports-football-betting-guide__faq-item summary.page-sports-football-betting-guide__faq-question:hover {
  background: rgba(255, 140, 26, 0.1);
}

.page-sports-football-betting-guide__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}

.page-sports-football-betting-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-sports-football-betting-guide__faq-item .page-sports-football-betting-guide__faq-answer {
  padding: 0 25px 25px;
  background: rgba(255, 140, 26, 0.05);
  border-radius: 0 0 10px 10px;
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.7;
}

/* Final CTA Section */
.page-sports-football-betting-guide__cta-final-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(90deg, #0D0E12 0%, #17191F 100%);
}

.page-sports-football-betting-guide__cta-final-section .page-sports-football-betting-guide__section-title {
  color: var(--text-main);
}

.page-sports-football-betting-guide__cta-final-section .page-sports-football-betting-guide__section-title::after {
  background-color: var(--primary-color);
}

.page-sports-football-betting-guide__cta-final-section .page-sports-football-betting-guide__text-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports-football-betting-guide__hero-image img {
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .page-sports-football-betting-guide__container {
    padding: 30px 15px;
  }

  .page-sports-football-betting-guide__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-sports-football-betting-guide__text-content {
    font-size: 15px;
    margin-bottom: 20px;
  }

  /* Hero Section */
  .page-sports-football-betting-guide__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports-football-betting-guide__hero-image {
    margin-bottom: 30px;
  }

  .page-sports-football-betting-guide__hero-image img {
    border-radius: 6px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports-football-betting-guide__main-title {
    font-size: 2.2rem; /* Adjusted for mobile, using rem for relative sizing */
    margin-bottom: 15px;
  }

  .page-sports-football-betting-guide__description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-sports-football-betting-guide__cta-button {
    padding: 15px 30px;
    font-size: 18px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0;
    margin-right: 0;
  }

  /* General Sections */
  .page-sports-football-betting-guide__introduction-section,
  .page-sports-football-betting-guide__strategy-section,
  .page-sports-football-betting-guide__promotions-section,
  .page-sports-football-betting-guide__cta-final-section,
  .page-sports-football-betting-guide__dark-section {
    padding: 50px 0;
  }

  .page-sports-football-betting-guide__image-wrapper img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports-football-betting-guide__grid-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .page-sports-football-betting-guide__card {
    padding: 25px;
  }

  .page-sports-football-betting-guide__card-title {
    font-size: 20px;
  }

  .page-sports-football-betting-guide__card-text {
    font-size: 15px;
  }

  .page-sports-football-betting-guide__strategy-list li,
  .page-sports-football-betting-guide__registration-steps li {
    padding: 18px 20px 18px 55px;
    font-size: 15px;
  }

  .page-sports-football-betting-guide__registration-steps li::before {
    width: 28px;
    height: 28px;
    font-size: 16px;
    left: 15px;
  }

  /* FAQ Section */
  details.page-sports-football-betting-guide__faq-item summary.page-sports-football-betting-guide__faq-question {
    padding: 18px 20px;
  }

  .page-sports-football-betting-guide__faq-qtext {
    font-size: 16px;
  }

  .page-sports-football-betting-guide__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
    width: 25px;
  }

  details.page-sports-football-betting-guide__faq-item .page-sports-football-betting-guide__faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  .page-sports-football-betting-guide__cta-final-section .page-sports-football-betting-guide__text-content {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .page-sports-football-betting-guide__main-title {
    font-size: 1.8rem;
  }
  .page-sports-football-betting-guide__description {
    font-size: 15px;
  }
  .page-sports-football-betting-guide__section-title {
    font-size: 24px;
  }
}