.page-game-strategies {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #1a1a2e; /* Inherited from body, explicit for clarity */
}

.page-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-game-strategies__hero-section {
  position: relative;
  padding: 120px 0 80px; /* Adjust padding-top to compensate for header, padding-top: 0 because shared.css handles body padding */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #1a1a2e; /* Dark background */
}

.page-game-strategies__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-game-strategies__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-game-strategies__hero-section .page-game-strategies__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-game-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-strategies__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-game-strategies__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-game-strategies__btn-primary,
.page-game-strategies__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.page-game-strategies__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-game-strategies__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-game-strategies__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-game-strategies__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-game-strategies__section {
  padding: 60px 0;
}

.page-game-strategies__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
}

.page-game-strategies__introduction-section .page-game-strategies__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-game-strategies__sports-strategy-section,
.page-game-strategies__slots-fishing-strategy-section,
.page-game-strategies__management-psychology-section {
  background-color: #1a1a2e; /* Dark background */
  color: #f0f0f0;
}

.page-game-strategies__casino-strategy-section,
.page-game-strategies__cockfighting-strategy-section {
  background-color: #1a1a2e; /* Dark background */
  color: #f0f0f0;
}

.page-game-strategies__text-block {
  margin-bottom: 20px;
  color: #f0f0f0;
  font-size: 1.05em;
}

.page-game-strategies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-game-strategies__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-strategies__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-strategies__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-game-strategies__card-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-game-strategies__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-game-strategies__faq-section {
  background-color: #1a1a2e; /* Dark background */
  color: #ffffff;
  padding-bottom: 80px;
}

.page-game-strategies__faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-game-strategies__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  transition: color 0.3s ease;
}

.page-game-strategies__faq-question:hover {
  color: #26A9E0;
}

.page-game-strategies__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-game-strategies__faq-item.active .page-game-strategies__faq-toggle {
  transform: rotate(45deg);
}

.page-game-strategies__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-game-strategies__faq-item.active .page-game-strategies__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 15px;
}

/* Ensure all images meet minimum size requirements */
.page-game-strategies img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-strategies__hero-title {
    font-size: 3em;
  }

  .page-game-strategies__hero-description {
    font-size: 1.2em;
  }

  .page-game-strategies__section-title {
    font-size: 2em;
  }

  .page-game-strategies__card-title {
    font-size: 1.4em;
  }

  .page-game-strategies__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-game-strategies__hero-section {
    padding-top: 80px; /* Adjust for smaller header on mobile, shared.css will handle body padding-top */
    padding-bottom: 60px;
  }

  .page-game-strategies__hero-title {
    font-size: 2.2em !important;
    margin-bottom: 15px;
  }

  .page-game-strategies__hero-description {
    font-size: 1em !important;
    margin-bottom: 30px;
  }

  .page-game-strategies__hero-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 20px;
  }

  /* 产品展示图区域 & 通用图片与容器 */
  .page-game-strategies__grid {
    grid-template-columns: 1fr !important; /* Single column layout for cards */
    gap: 20px !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 20px;
  }

  .page-game-strategies__card {
    padding: 20px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-game-strategies__card-image {
    height: 180px !important;
    min-width: unset !important; /* Allow smaller width if needed, but still >= 200px due to general img rule */
    min-height: 200px !important; /* Maintain minimum height */
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-game-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-strategies__section,
  .page-game-strategies__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* 按钮与按钮容器 */
  .page-game-strategies__btn-primary,
  .page-game-strategies__btn-secondary,
  .page-game-strategies a[class*="button"],
  .page-game-strategies 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 !important;
    padding-right: 15px !important;
  }

  .page-game-strategies__cta-buttons,
  .page-game-strategies__button-group,
  .page-game-strategies__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    display: flex;
    flex-direction: column; /* Ensure vertical stacking for multiple buttons */
  }

  /* 其他内容模块 */
  .page-game-strategies__section-title {
    font-size: 1.8em !important;
    margin-bottom: 25px !important;
  }

  .page-game-strategies__text-block {
    font-size: 1em !important;
  }

  .page-game-strategies__faq-question {
    font-size: 1em !important;
    padding: 15px 0 !important;
  }

  .page-game-strategies__faq-answer {
    padding: 10px 15px !important;
  }

  .page-game-strategies__faq-item.active .page-game-strategies__faq-answer {
    padding: 15px !important;
  }
}