.page-betting-guides-football {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --background-dark: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --glow-color: #57E38D;
  --divider-color: #1E3A2A;

  background-color: var(--background-dark);
  color: var(--text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 0; /* body handles padding-top: var(--header-offset) */
}

.page-betting-guides-football strong.page-betting-guides-football__highlight {
  color: var(--glow-color);
}

.page-betting-guides-football a {
  color: var(--glow-color);
  text-decoration: none;
}

.page-betting-guides-football a:hover {
  text-decoration: underline;
}

.page-betting-guides-football__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-betting-guides-football__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-betting-guides-football__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast, but not changing color */
  min-width: 200px;
  min-height: 200px;
}

.page-betting-guides-football__hero-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  margin-top: -100px; /* Pull content up over image a bit for visual flow, but not overlap text */
  position: relative;
  z-index: 1;
}

.page-betting-guides-football__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-betting-guides-football__description {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-guides-football__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-betting-guides-football__btn-primary,
.page-betting-guides-football__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-betting-guides-football__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-betting-guides-football__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-betting-guides-football__btn-secondary {
  background: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-betting-guides-football__btn-secondary:hover {
  background: var(--glow-color);
  color: var(--background-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-betting-guides-football__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--divider-color);
}

.page-betting-guides-football__intro-section,
.page-betting-guides-football__types-section,
.page-betting-guides-football__strategy-section,
.page-betting-guides-football__why-vui88-section,
.page-betting-guides-football__how-to-start-section,
.page-betting-guides-football__faq-section,
.page-betting-guides-football__cta-bottom-section {
  background-color: var(--background-dark);
}

.page-betting-guides-football__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-betting-guides-football__container--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.page-betting-guides-football__section-title {
  font-size: 2.5em;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-betting-guides-football__text-block {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-betting-guides-football__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-betting-guides-football__card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-betting-guides-football__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(34, 199, 104, 0.4);
}

.page-betting-guides-football__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-betting-guides-football__card-title {
  font-size: 1.5em;
  color: var(--text-main);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-betting-guides-football__card-text {
  font-size: 1em;
  color: var(--text-secondary);
  flex-grow: 1;
}

.page-betting-guides-football__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.page-betting-guides-football__content-block {
  color: var(--text-secondary);
}

.page-betting-guides-football__sub-title {
  font-size: 1.8em;
  color: var(--text-main);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-betting-guides-football__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-betting-guides-football__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-betting-guides-football__feature-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-betting-guides-football__feature-icon {
  width: 100px; /* Adjusting for minimum size requirement */
  height: 100px; /* Adjusting for minimum size requirement */
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-betting-guides-football__feature-card .page-betting-guides-football__feature-icon {
  width: 200px; /* Ensure display size is at least 200px for feature icons */
  height: 150px;
  object-fit: contain;
}

.page-betting-guides-football__feature-title {
  font-size: 1.4em;
  color: var(--text-main);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-betting-guides-football__feature-text {
  font-size: 1em;
  color: var(--text-secondary);
}

.page-betting-guides-football__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-guides-football__step-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-betting-guides-football__step-item::before {
  content: counters(step-counter, ".") ". ";
  counter-increment: step-counter;
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 2.5em;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.2;
}

.page-betting-guides-football__step-title {
  font-size: 1.5em;
  color: var(--text-main);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 60px; /* Make space for step number */
  font-weight: 600;
}

.page-betting-guides-football__step-text {
  font-size: 1em;
  color: var(--text-secondary);
  padding-left: 60px; /* Make space for step number */
}

.page-betting-guides-football__cta-buttons--center {
  margin-top: 40px;
  text-align: center;
}

.page-betting-guides-football__faq-list {
  margin-top: 30px;
}

.page-betting-guides-football__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-betting-guides-football__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  user-select: none;
}

.page-betting-guides-football__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-betting-guides-football__faq-qtext {
  flex-grow: 1;
}

.page-betting-guides-football__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 20px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-betting-guides-football__faq-item[open] .page-betting-guides-football__faq-toggle {
  transform: rotate(45deg);
}

.page-betting-guides-football__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-secondary);
}

.page-betting-guides-football__cta-bottom-section {
  padding: 80px 20px;
  background: linear-gradient(90deg, #0A4B2C 0%, var(--primary-color) 100%);
  text-align: center;
}

.page-betting-guides-football__cta-text {
  flex-grow: 1;
  text-align: left;
}

.page-betting-guides-football__cta-bottom-section .page-betting-guides-football__section-title {
  color: #ffffff;
  margin-bottom: 15px;
  text-align: left;
}

.page-betting-guides-football__cta-bottom-section .page-betting-guides-football__description {
  color: #f0f0f0;
  text-align: left;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-betting-guides-football__hero-content {
    margin-top: -50px;
  }
  .page-betting-guides-football__section-title {
    font-size: 2em;
  }
  .page-betting-guides-football__content-grid {
    grid-template-columns: 1fr;
  }
  .page-betting-guides-football__content-block:first-of-type {
    order: 2;
  }
  .page-betting-guides-football__content-block:last-of-type {
    order: 1;
  }
  .page-betting-guides-football__container--flex {
    flex-direction: column;
    text-align: center;
  }
  .page-betting-guides-football__cta-text {
    text-align: center;
  }
  .page-betting-guides-football__cta-bottom-section .page-betting-guides-football__section-title,
  .page-betting-guides-football__cta-bottom-section .page-betting-guides-football__description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-betting-guides-football {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-betting-guides-football__hero-content {
    padding: 15px;
    margin-top: -30px;
  }
  .page-betting-guides-football__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-betting-guides-football__description {
    font-size: 1em;
  }
  .page-betting-guides-football__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-betting-guides-football__btn-primary,
  .page-betting-guides-football__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-betting-guides-football__section {
    padding: 40px 15px;
  }
  .page-betting-guides-football__container,
  .page-betting-guides-football__section,
  .page-betting-guides-football__card,
  .page-betting-guides-football__container--flex,
  .page-betting-guides-football__cta-buttons,
  .page-betting-guides-football__cta-buttons--center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-betting-guides-football__card-image,
  .page-betting-guides-football__content-image,
  .page-betting-guides-football__feature-icon,
  .page-betting-guides-football img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-betting-guides-football video,
  .page-betting-guides-football__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-betting-guides-football__video-section,
  .page-betting-guides-football__video-container,
  .page-betting-guides-football__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-betting-guides-football__video-section {
    padding-top: 10px !important;
  }
  .page-betting-guides-football__section-title {
    font-size: 1.8em;
  }
  .page-betting-guides-football__sub-title {
    font-size: 1.5em;
  }
  .page-betting-guides-football__card-title {
    font-size: 1.3em;
  }
  .page-betting-guides-football__feature-title {
    font-size: 1.2em;
  }
  .page-betting-guides-football__step-title {
    font-size: 1.3em;
    padding-left: 40px;
  }
  .page-betting-guides-football__step-text {
    padding-left: 40px;
  }
  .page-betting-guides-football__step-item::before {
    font-size: 2em;
    top: 20px;
    left: 20px;
  }
  .page-betting-guides-football__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-betting-guides-football__faq-answer {
    padding: 0 20px 15px;
  }
  .page-betting-guides-football__cta-bottom-section {
    padding: 60px 15px;
  }
}