.page-game-guides {
  color: #FFF6D6;
  background-color: #0A0A0A;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-game-guides__hero-section {
  position: relative;
  padding-top: 10px; /* Fixed header spacing */
  margin-bottom: 40px;
  overflow: hidden;
}

.page-game-guides__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.page-game-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: -15% auto 0; /* Pull content up over image slightly */
  padding: 40px;
  background: rgba(17, 17, 17, 0.95); /* Card BG with slight transparency */
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12; /* Border color */
}

.page-game-guides__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFD36B;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
}

.page-game-guides__hero-description {
  font-size: 1.15rem;
  color: #FFF6D6;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-game-guides__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  line-height: 1.3;
}

.page-game-guides__text-block {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-guides__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-game-guides__btn-primary:hover {
  background: linear-gradient(180deg, #FFE187 0%, #E6AE2C 100%);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
  transform: translateY(-2px);
}

.page-game-guides__btn-secondary {
  background: #111111;
  color: #F2C14E;
  border: 2px solid #F2C14E;
  margin-left: 20px;
}

.page-game-guides__btn-secondary:hover {
  background: #1D1D1D;
  color: #FFD36B;
  border-color: #FFD36B;
  transform: translateY(-2px);
}

.page-game-guides__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-game-guides__game-guide-item {
  display: flex;
  align-items: center;
  background: #111111;
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  gap: 30px;
}

.page-game-guides__game-guide-item--reverse {
  flex-direction: row-reverse;
}

.page-game-guides__game-image {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  display: block;
  height: auto;
  object-fit: cover;
}

.page-game-guides__game-content {
  flex: 1;
  color: #FFF6D6;
}

.page-game-guides__game-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-guides__sub-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #FFD36B;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 500;
}

.page-game-guides__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-game-guides__list-item {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #FFF6D6;
}

.page-game-guides__list-item::before {
  content: '★';
  color: #FFD36B;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

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

.page-game-guides__strategy-card {
  background: #111111;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease;
}

.page-game-guides__strategy-card:hover {
  transform: translateY(-5px);
}

.page-game-guides__card-title {
  font-size: 1.4rem;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-guides__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-game-guides__benefits-list .page-game-guides__list-item {
  background: #111111;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-game-guides__benefits-list .page-game-guides__list-item::before {
  content: '✓';
  color: #FFD36B;
  font-size: 1.3em;
  top: 15px;
}

/* FAQ Styles */
details.page-game-guides__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #111111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-game-guides__faq-item summary.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF6D6;
}
details.page-game-guides__faq-item summary.page-game-guides__faq-question::-webkit-details-marker {
  display: none;
}
details.page-game-guides__faq-item summary.page-game-guides__faq-question:hover {
  background: #1D1D1D;
}
.page-game-guides__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E;
}
.page-game-guides__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-game-guides__faq-item .page-game-guides__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A;
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
}

/* General image styling */
.page-game-guides img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-guides__hero-content {
    margin-top: -10%;
    padding: 30px;
  }
  .page-game-guides__game-guide-item {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .page-game-guides__game-guide-item--reverse {
    flex-direction: column;
  }
  .page-game-guides__game-image {
    max-width: 100%;
  }
  .page-game-guides__benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-game-guides__hero-section { 
    margin-bottom: 20px; 
    padding-top: 10px; /* Ensure small top padding */
  }
  .page-game-guides__hero-image-wrapper {
    padding-bottom: 75%; /* 4:3 Aspect Ratio for mobile hero */
  }
  .page-game-guides__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
  }
  .page-game-guides__hero-content {
    margin-top: -20%; /* Adjust pull-up for mobile */
    padding: 20px;
    max-width: 95%;
  }
  .page-game-guides__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-game-guides__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  /* General containers and text */
  .page-game-guides__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-game-guides__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }
  .page-game-guides__text-block {
    font-size: 0.95rem;
  }

  /* 通用图片与容器 */
  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-game-guides__game-image {
    border-radius: 5px;
  }

  /* 按钮与按钮容器 */
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-game-guides__btn-primary,
  .page-game-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0;
    font-size: 1rem;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* 产品展示图区域 (Game Guide Items) */
  .page-game-guides__game-guide-item {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
    gap: 15px;
  }
  .page-game-guides__game-guide-item--reverse {
    flex-direction: column;
  }
  .page-game-guides__game-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    text-align: center;
  }
  .page-game-guides__sub-title {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    text-align: center;
  }
  .page-game-guides__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-game-guides__strategy-card {
    padding: 20px;
  }
  .page-game-guides__card-title {
    font-size: 1.2rem;
  }
  .page-game-guides__benefits-list .page-game-guides__list-item {
    padding: 15px;
  }
  .page-game-guides__benefits-list .page-game-guides__list-item::before {
    top: 10px;
  }

  /* FAQ */
  details.page-game-guides__faq-item summary.page-game-guides__faq-question {
    padding: 15px;
  }
  .page-game-guides__faq-qtext {
    font-size: 1rem;
  }
  .page-game-guides__faq-toggle {
    font-size: 20px;
    width: 24px;
    margin-left: 10px;
  }
  details.page-game-guides__faq-item .page-game-guides__faq-answer {
    padding: 0 15px 15px;
  }
}