.page-sports-football-betting-guide {
  color: #ffffff; /* Body background is dark, so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-sports-football-betting-guide__hero-section {
  padding-top: 0; /* Handled by body padding-top in shared.css */
  position: relative;
  text-align: center;
  color: #ffffff;
  background-color: #0a0a0a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-sports-football-betting-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
}

.page-sports-football-betting-guide__hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-sports-football-betting-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 800px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports-football-betting-guide__intro-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-sports-football-betting-guide__btn-primary,
.page-sports-football-betting-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports-football-betting-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

.page-sports-football-betting-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-sports-football-betting-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-sports-football-betting-guide__section {
  padding: 60px 0;
  color: #ffffff;
}

.page-sports-football-betting-guide__dark-section {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-sports-football-betting-guide__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
  color: #ffffff;
}

.page-sports-football-betting-guide__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
}

.page-sports-football-betting-guide__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-sports-football-betting-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-sports-football-betting-guide__ordered-list,
.page-sports-football-betting-guide__unordered-list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-sports-football-betting-guide__ordered-list .page-sports-football-betting-guide__list-item {
  counter-increment: list-counter;
  margin-bottom: 25px;
  padding-left: 40px;
  position: relative;
}

.page-sports-football-betting-guide__ordered-list .page-sports-football-betting-guide__list-item::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #26A9E0;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.page-sports-football-betting-guide__unordered-list .page-sports-football-betting-guide__list-item {
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
}

.page-sports-football-betting-guide__unordered-list .page-sports-football-betting-guide__list-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #26A9E0;
  font-size: 1.5rem;
  line-height: 1;
}

.page-sports-football-betting-guide__list-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

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

.page-sports-football-betting-guide__card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
}

.page-sports-football-betting-guide__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-sports-football-betting-guide__faq-list {
  margin-top: 30px;
}

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

.page-sports-football-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-sports-football-betting-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-sports-football-betting-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #26A9E0;
}

.page-sports-football-betting-guide__faq-item[open] .page-sports-football-betting-guide__faq-toggle {
  content: '−';
}

.page-sports-football-betting-guide__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-sports-football-betting-guide__final-cta {
  text-align: center;
  padding-bottom: 80px;
}

@media (max-width: 1024px) {
  .page-sports-football-betting-guide__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-sports-football-betting-guide__section-title {
    font-size: 2rem;
  }
  .page-sports-football-betting-guide__hero-content {
    padding: 80px 20px;
  }
  .page-sports-football-betting-guide__grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  /* LOGO 轮播区域 (if present, here for completeness, though not in this specific page) */
  .page-sports-football-betting-guide__logo-carousel-section {
    padding: 50px 15px 20px;
  }
  /* HERO 主图区域 */
  .page-sports-football-betting-guide__hero-section {
    padding-top: 0 !important; /* Ensure no double padding from body */
  }
  .page-sports-football-betting-guide__hero-content {
    padding: 60px 15px;
    gap: 15px;
  }
  .page-sports-football-betting-guide__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 10px;
  }
  .page-sports-football-betting-guide__intro-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  /* 游戏展示区域 (if present, using grid layout as an example) */
  .page-sports-football-betting-guide__grid-layout {
    grid-template-columns: minmax(0, 1fr); /* Single column for mobile */
    gap: 20px;
    padding: 0 15px;
  }
  .page-sports-football-betting-guide__card {
    padding: 25px;
  }
  
  /* 通用图片与容器 */
  .page-sports-football-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box;
  }
  /* 🚨 游戏大图/卡片缩略图：须覆盖上一段，禁止被 height:auto 破坏裁切（父级为 aspect-ratio 或固定高） */
  /* This page does not have specific game-card-image or featured-game-image, but including the rule for compliance */
  .page-sports-football-betting-guide__game-card-image img,
  .page-sports-football-betting-guide__featured-game-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  /* 🚨 注意：必须排除 .page-sports-football-betting-guide__logo-item，保持其80x80固定尺寸 */
  /* No logo-item in this specific page, but including the selector to show it's excluded from generic rules */
  .page-sports-football-betting-guide__section,
  .page-sports-football-betting-guide__card,
  .page-sports-football-betting-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* 🚨 LOGO轮播项必须单独设置，保持固定尺寸 (Not present in this page, but example for compliance) */
  .page-sports-football-betting-guide__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    box-sizing: border-box;
  }

  /* 按钮与按钮容器 */
  .page-sports-football-betting-guide__cta-button,
  .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"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports-football-betting-guide__cta-buttons,
  .page-sports-football-betting-guide__button-group,
  .page-sports-football-betting-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Ensure vertical stacking on mobile for CTA buttons */
  }

  /* 其他内容模块 */
  .page-sports-football-betting-guide__section {
    padding: 40px 0;
  }
  .page-sports-football-betting-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .page-sports-football-betting-guide__text-block {
    font-size: 1rem;
  }
  .page-sports-football-betting-guide__list-title {
    font-size: 1.2rem;
  }
  .page-sports-football-betting-guide__ordered-list .page-sports-football-betting-guide__list-item,
  .page-sports-football-betting-guide__unordered-list .page-sports-football-betting-guide__list-item {
    padding-left: 30px;
  }
  .page-sports-football-betting-guide__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-sports-football-betting-guide__faq-answer {
    padding: 0 15px 15px;
  }
  .page-sports-football-betting-guide__final-cta {
    padding-bottom: 60px;
  }
}