.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #000;
}

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

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFD700; /* Gold for titles on dark background */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-fishing-games__text-block {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  background-color: #1a1a1a; /* Dark background for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-fishing-games__hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-fishing-games__hero-content {
  flex: 1;
  padding-right: 40px;
}

.page-fishing-games__hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
}

.page-fishing-games__hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
}

.page-fishing-games__hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
}

/* General Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background-color: #B22222; /* Main brand color */
  color: #ffffff;
  border: 2px solid #B22222;
}

.page-fishing-games__btn-primary:hover {
  background-color: #FFD700; /* Auxiliary brand color on hover */
  border-color: #FFD700;
  color: #B22222;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Auxiliary brand color */
  border: 2px solid #FFD700;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #FFD700;
  color: #B22222;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* About Section */
.page-fishing-games__about-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background */
}

/* Features Section */
.page-fishing-games__features-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

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

.page-fishing-games__feature-card {
  background-color: #2a2a2a; /* Dark card background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__feature-card img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games__feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games__feature-description {
  font-size: 16px;
  color: #cccccc;
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

.page-fishing-games__guide-content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.page-fishing-games__guide-steps {
  flex: 2;
}

.page-fishing-games__step-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 5px solid #B22222;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-fishing-games__step-item p {
  font-size: 17px;
  color: #cccccc;
}

.page-fishing-games__step-item a {
  color: #FFD700;
  text-decoration: underline;
}

.page-fishing-games__step-item a:hover {
  color: #B22222;
}

.page-fishing-games__guide-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.page-fishing-games__guide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-fishing-games__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__promo-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(178, 34, 34, 0.3);
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__promo-title {
  font-size: 22px;
  font-weight: 700;
  color: #B22222;
  margin-bottom: 15px;
}

.page-fishing-games__promo-description {
  font-size: 16px;
  color: #cccccc;
}

.page-fishing-games__cta-center {
  text-align: center;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

.page-fishing-games__why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__reason-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games__reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__reason-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games__reason-description {
  font-size: 16px;
  color: #cccccc;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-fishing-games__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ容器样式 */
.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #2a2a2a; /* Dark background for FAQ item */
  color: #f0f0f0;
}

/* FAQ默认状态 - 答案隐藏 */
.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #cccccc;
}

/* FAQ展开状态 - 🚨 使用!important và đủ lớn max-height đảm bảo mở rộng */
.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important; /* 🚨 Sử dụng !important đảm bảo ưu tiên, giá trị đủ lớn để chứa mọi nội dung */
  padding: 20px !important;
  opacity: 1;
  background-color: #3a3a3a;
  border-radius: 0 0 5px 5px;
}

/* Vấn đề FAQ */
.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background-color: #B22222; /* Main brand color for question background */
  border: 1px solid #B22222;
  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__faq-question:hover {
  background-color: #a01c1c;
  border-color: #a01c1c;
}

.page-fishing-games__faq-question:active {
  background-color: #8f1919;
}

/* Tiêu đề câu hỏi */
.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Ngăn h3 chặn sự kiện click */
  color: #ffffff;
}

/* Biểu tượng chuyển đổi */
.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Ngăn biểu tượng chặn sự kiện click */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
  padding: 60px 0;
  background-color: #0d0d0d;
  text-align: center;
}

.page-fishing-games__cta-final-section .page-fishing-games__container {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__cta-final-section .page-fishing-games__section-title {
  color: #FFD700;
}

.page-fishing-games__cta-final-section .page-fishing-games__text-block {
  font-size: 18px;
  margin-bottom: 30px;
}

.page-fishing-games__cta-final-section .page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 44px;
  }
  .page-fishing-games__hero-description {
    font-size: 18px;
  }
  .page-fishing-games__guide-content {
    flex-direction: column;
  }
  .page-fishing-games__guide-image {
    order: -1; /* Image above steps on smaller screens */
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-fishing-games__text-block {
    font-size: 16px;
  }

  /* Hero Section Mobile */
  .page-fishing-games__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-fishing-games__hero-container {
    flex-direction: column;
    padding: 30px 15px;
  }
  .page-fishing-games__hero-content {
    padding-right: 0;
    text-align: center;
  }
  .page-fishing-games__hero-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .page-fishing-games__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-fishing-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .page-fishing-games__hero-image {
    margin-top: 30px;
  }
  .page-fishing-games__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Feature Cards Mobile */
  .page-fishing-games__feature-card {
    padding: 20px;
  }
  .page-fishing-games__feature-title {
    font-size: 20px;
  }

  /* Guide Section Mobile */
  .page-fishing-games__guide-content {
    gap: 30px;
  }
  .page-fishing-games__guide-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__step-title {
    font-size: 20px;
  }

  /* Promotions & Why Choose Cards Mobile */
  .page-fishing-games__promo-card,
  .page-fishing-games__reason-card {
    padding: 20px;
  }
  .page-fishing-games__promo-title,
  .page-fishing-games__reason-title {
    font-size: 20px;
  }

  /* FAQ Mobile */
  .page-fishing-games__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 16px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-fishing-games__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 15px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px !important;
  }

  /* Final CTA Mobile */
  .page-fishing-games__cta-final-section .page-fishing-games__container {
    padding: 30px 15px;
  }
  .page-fishing-games__cta-final-section .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* All images mobile */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__promo-card,
  .page-fishing-games__reason-card,
  .page-fishing-games__feature-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__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;
  }
}