.page-fishing-games-guide {
  padding-top: 120px; /* Cho desktop */
  color: #f0f0f0; /* Màu chữ nhạt trên nền tối */
  background-color: var(--dark-bg-1); /* Kế thừa từ shared.css */
}

@media (max-width: 768px) {
  .page-fishing-games-guide {
    padding-top: 100px; /* Cho mobile */
  }
}

.page-fishing-games-guide__hero-guide-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #004499; /* Một biến thể của màu chủ đạo */
}

.page-fishing-games-guide__hero-guide-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games-guide__hero-guide-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-fishing-games-guide__hero-guide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff;
}

.page-fishing-games-guide__hero-guide-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Màu phụ đạo để nổi bật */
}

.page-fishing-games-guide__hero-guide-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-fishing-games-guide__hero-guide-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Vàng cam */
  color: #000000; /* Đen để tương phản với vàng */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-fishing-games-guide__hero-guide-cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-guide__content-section {
  padding: 40px 20px;
  background-color: var(--dark-bg-1); /* Nền tối */
  color: #f0f0f0; /* Chữ nhạt */
}

.page-fishing-games-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Nền hơi trong suốt */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-guide__intro-paragraph {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

.page-fishing-games-guide__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #FFD700; /* Màu phụ đạo */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-fishing-games-guide__sub-section-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff; /* Trắng */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fishing-games-guide__container p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.page-fishing-games-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-fishing-games-guide__list li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.page-fishing-games-guide__content-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Giới hạn chiều rộng hình ảnh nội dung */
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-guide__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-fishing-games-guide__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #0056B3, #004499); /* Xanh đậm */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-fishing-games-guide__cta-button:hover {
  background: linear-gradient(135deg, #004499, #003366);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-guide__link-text {
  color: #FFD700; /* Màu vàng nổi bật */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games-guide__link-text:hover {
  color: #FFA500;
  text-decoration: underline;
}

.page-fishing-games-guide__faq-list {
  margin-top: 30px;
  padding: 0 10px;
}

.page-fishing-games-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-fishing-games-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-fishing-games-guide__faq-item.active .page-fishing-games-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1); /* Nền nhạt hơn cho câu trả lời */
  border-radius: 0 0 5px 5px;
  color: #f0f0f0;
}

.page-fishing-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #0056B3; /* Màu xanh đậm */
  border: 1px solid #004499;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-fishing-games-guide__faq-question:hover {
  background: #004499;
  border-color: #003366;
}

.page-fishing-games-guide__faq-question:active {
  background: #003366;
}

.page-fishing-games-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-fishing-games-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Màu vàng */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-fishing-games-guide__faq-item.active .page-fishing-games-guide__faq-toggle {
  color: #FFA500;
}

.page-fishing-games-guide__conclusion-paragraph {
  font-size: 17px;
  line-height: 1.7;
  margin-top: 40px;
  text-align: justify;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-guide__hero-guide-title {
    font-size: 36px;
  }
  .page-fishing-games-guide__hero-guide-description,
  .page-fishing-games-guide__intro-paragraph,
  .page-fishing-games-guide__conclusion-paragraph {
    font-size: 16px;
  }
  .page-fishing-games-guide__section-title {
    font-size: 28px;
  }
  .page-fishing-games-guide__sub-section-title {
    font-size: 22px;
  }
  .page-fishing-games-guide__container p,
  .page-fishing-games-guide__list li {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-guide__hero-guide-section {
    padding: 40px 15px;
  }
  .page-fishing-games-guide__hero-guide-title {
    font-size: 28px;
  }
  .page-fishing-games-guide__hero-guide-description,
  .page-fishing-games-guide__intro-paragraph,
  .page-fishing-games-guide__conclusion-paragraph {
    font-size: 15px;
  }
  .page-fishing-games-guide__hero-guide-cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-fishing-games-guide__content-section {
    padding: 20px 15px;
  }
  .page-fishing-games-guide__container {
    padding: 15px;
  }
  .page-fishing-games-guide__section-title {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-fishing-games-guide__sub-section-title {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
  }
  .page-fishing-games-guide__container p,
  .page-fishing-games-guide__list li {
    font-size: 14px;
    line-height: 1.6;
  }
  .page-fishing-games-guide__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-fishing-games-guide__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-fishing-games-guide__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-fishing-games-guide__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-fishing-games-guide__faq-answer {
    padding: 0 15px;
  }
  .page-fishing-games-guide__faq-item.active .page-fishing-games-guide__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-guide__hero-guide-title {
    font-size: 24px;
  }
  .page-fishing-games-guide__hero-guide-description {
    font-size: 14px;
  }
  .page-fishing-games-guide__hero-guide-cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .page-fishing-games-guide__section-title {
    font-size: 22px;
  }
  .page-fishing-games-guide__sub-section-title {
    font-size: 18px;
  }
  .page-fishing-games-guide__container p,
  .page-fishing-games-guide__list li {
    font-size: 13px;
  }
  .page-fishing-games-guide__cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}