.page-game-guides-and-tips {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-game-guides-and-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-and-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top */
  overflow: hidden;
}

.page-game-guides-and-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  max-height: 700px; /* Limit height for hero image */
}

.page-game-guides-and-tips__hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 20px 0;
  background: linear-gradient(0deg, rgba(8, 22, 15, 0.8) 0%, rgba(8, 22, 15, 0) 100%);
  width: 100%;
  box-sizing: border-box;
}

.page-game-guides-and-tips__hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-game-guides-and-tips__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #F2FFF6; /* Text Main */
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-game-guides-and-tips__hero-cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-game-guides-and-tips__hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-game-guides-and-tips__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: 700;
}

.page-game-guides-and-tips__sub-section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #22C768; /* Auxiliary Color */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-game-guides-and-tips__text-block {
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-game-guides-and-tips__text-block a {
  color: #57E38D;
  text-decoration: none;
  font-weight: bold;
}

.page-game-guides-and-tips__text-block a:hover {
  text-decoration: underline;
}

.page-game-guides-and-tips__introduction-section,
.page-game-guides-and-tips__advanced-tips-section,
.page-game-guides-and-tips__faq-section {
  background-color: #11271B; /* Card BG */
  padding: 60px 0;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-game-guides-and-tips__game-types-section,
.page-game-guides-and-tips__safety-section,
.page-game-guides-and-tips__conclusion-section {
  padding: 60px 0;
}

.page-game-guides-and-tips__game-category {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #2E7A4E; /* Border */
}

.page-game-guides-and-tips__image-content {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  display: block;
}

.page-game-guides-and-tips__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-game-guides-and-tips__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-game-guides-and-tips__list-item strong {
  color: #F2FFF6; /* Text Main */
}

.page-game-guides-and-tips__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-guides-and-tips__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-game-guides-and-tips__cta-button--small {
  font-size: 0.95rem;
  padding: 10px 20px;
}

.page-game-guides-and-tips__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
}

.page-game-guides-and-tips__cta-button--secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D;
}

.page-game-guides-and-tips__cta-button--secondary:hover {
  background-color: rgba(87, 227, 141, 0.1);
}

.page-game-guides-and-tips__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-game-guides-and-tips__faq-list {
  margin-top: 30px;
}

.page-game-guides-and-tips__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E;
}

.page-game-guides-and-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15rem;
  color: #F2FFF6; /* Text Main */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-game-guides-and-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-game-guides-and-tips__faq-question:hover {
  background-color: rgba(42, 209, 111, 0.1);
}

.page-game-guides-and-tips__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-game-guides-and-tips__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-game-guides-and-tips__faq-answer p {
  margin-bottom: 15px;
}

.page-game-guides-and-tips__faq-answer a {
  color: #57E38D;
  text-decoration: none;
  font-weight: bold;
}

.page-game-guides-and-tips__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-guides-and-tips__hero-content {
    padding-top: 80px;
  }
  .page-game-guides-and-tips__section-title {
    margin-bottom: 30px;
  }
  .page-game-guides-and-tips__sub-section-title {
    margin-top: 25px;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .page-game-guides-and-tips {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-game-guides-and-tips__hero-section {
    padding-bottom: 40px;
  }
  .page-game-guides-and-tips__hero-content {
    padding: 60px 15px 0;
  }
  .page-game-guides-and-tips__hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .page-game-guides-and-tips__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-game-guides-and-tips__introduction-section,
  .page-game-guides-and-tips__game-types-section,
  .page-game-guides-and-tips__advanced-tips-section,
  .page-game-guides-and-tips__safety-section,
  .page-game-guides-and-tips__faq-section,
  .page-game-guides-and-tips__conclusion-section {
    padding: 40px 0;
  }
  .page-game-guides-and-tips__container {
    padding: 0 15px;
  }
  .page-game-guides-and-tips__section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 25px;
  }
  .page-game-guides-and-tips__sub-section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .page-game-guides-and-tips__text-block,
  .page-game-guides-and-tips__list-item,
  .page-game-guides-and-tips__faq-answer {
    font-size: 1rem;
  }
  .page-game-guides-and-tips__game-category {
    padding: 20px;
    margin-bottom: 20px;
  }
  .page-game-guides-and-tips__cta-group {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  .page-game-guides-and-tips__hero-cta-button,
  .page-game-guides-and-tips__cta-button,
  .page-game-guides-and-tips__cta-button--small,
  .page-game-guides-and-tips__cta-button--primary,
  .page-game-guides-and-tips__cta-button--secondary {
    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;
  }

  /* Image and Video Responsive */
  .page-game-guides-and-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-guides-and-tips video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-guides-and-tips__section,
  .page-game-guides-and-tips__card,
  .page-game-guides-and-tips__container,
  .page-game-guides-and-tips__game-category,
  .page-game-guides-and-tips__hero-section,
  .page-game-guides-and-tips__video-section,
  .page-game-guides-and-tips__video-container,
  .page-game-guides-and-tips__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-game-guides-and-tips__video-section {
    padding-top: 10px !important; /* body 已承担 --header-offset */
  }
  .page-game-guides-and-tips__hero-image {
    position: relative;
    height: 250px; /* Adjust hero image height for mobile */
    max-height: 250px;
  }
  .page-game-guides-and-tips__hero-content {
    background: linear-gradient(0deg, rgba(8, 22, 15, 0.9) 0%, rgba(8, 22, 15, 0.7) 100%);
    padding-top: 20px;
  }
}