.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--Text-Main, #F3F8FF);
  background-color: var(--Deep-Navy, #08162B);
}

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

.page-fishing-games__dark-bg {
  background-color: var(--Deep-Navy, #08162B);
  color: var(--Text-Main, #F3F8FF);
}

.page-fishing-games__light-bg {
  background-color: #10233F; /* Card BG, slightly lighter than Deep Navy */
  color: var(--Text-Main, #F3F8FF);
}

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--Gold, #F2C14E);
  line-height: 1.3;
}

.page-fishing-games__text-block {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--Text-Secondary, #AFC4E8);
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-fishing-games__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-fishing-games__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Using clamp for responsive H1 */
  font-weight: 800;
  color: var(--Gold, #F2C14E);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--Text-Main, #F3F8FF);
}

.page-fishing-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-games__cta-buttons--center {
  margin-top: 40px;
}

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

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--Gold, #F2C14E);
  border: 2px solid var(--Gold, #F2C14E);
}

.page-fishing-games__btn-secondary:hover {
  background: var(--Gold, #F2C14E);
  color: var(--Deep-Navy, #08162B);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Gameplay Guide Section */
.page-fishing-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__guide-item {
  background-color: var(--Card-BG, #10233F);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--Border, #244D84);
}

.page-fishing-games__guide-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__guide-item h3 {
  font-size: 22px;
  color: var(--Gold, #F2C14E);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__guide-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--Text-Secondary, #AFC4E8);
  text-align: center;
}

.page-fishing-games__tip-text {
  text-align: center;
  font-style: italic;
  margin-top: 30px;
  color: var(--Glow, #4FA8FF);
  font-size: 17px;
}

/* Game Types Section */
.page-fishing-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__game-card {
  background-color: var(--Card-BG, #10233F);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--Border, #244D84);
  text-align: center;
}

.page-fishing-games__game-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games__game-card h3 {
  font-size: 24px;
  color: var(--Gold, #F2C14E);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-fishing-games__game-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--Text-Secondary, #AFC4E8);
  margin-bottom: 20px;
}

/* Strategy Tips Section */
.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games__strategy-list li {
  background-color: var(--Card-BG, #10233F);
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--Text-Main, #F3F8FF);
  border-left: 5px solid var(--Gold, #F2C14E);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__strategy-list li strong {
  color: var(--Glow, #4FA8FF);
}

.page-fishing-games__strategy-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Why Choose Us Section */
.page-fishing-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__feature-item {
  background-color: var(--Card-BG, #10233F);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--Border, #244D84);
}

.page-fishing-games__feature-item h3 {
  font-size: 22px;
  color: var(--Glow, #4FA8FF);
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.page-fishing-games__feature-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--Text-Secondary, #AFC4E8);
  text-align: justify;
}

/* Promotions Section */
.page-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games__promo-list li {
  background-color: var(--Card-BG, #10233F);
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--Text-Main, #F3F8FF);
  border-left: 5px solid var(--Glow, #4FA8FF);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__promo-list li strong {
  color: var(--Gold, #F2C14E);
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
}

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--Border, #244D84);
  overflow: hidden;
  background: var(--Card-BG, #10233F);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-fishing-games__faq-item summary.page-fishing-games__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;
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: rgba(var(--Main-Color-RGB), 0.1); /* Using main color for hover */
}

.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--Text-Main, #F3F8FF);
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--Gold, #F2C14E);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  background: rgba(16, 35, 63, 0.8); /* Slightly transparent Card BG */
  border-radius: 0 0 5px 5px;
  color: var(--Text-Secondary, #AFC4E8);
  font-size: 16px;
  line-height: 1.7;
}

/* Conclusion Section */
.page-fishing-games__conclusion .page-fishing-games__section-title {
  color: var(--Gold, #F2C14E);
}

/* Global Image Styles */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Media Queries --- */

@media (max-width: 1024px) {
  .page-fishing-games__container {
    padding: 30px 15px;
  }

  .page-fishing-games__section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(26px, 5vw, 42px);
  }

  .page-fishing-games__hero-description {
    font-size: 18px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }

  .page-fishing-games__guide-item h3,
  .page-fishing-games__feature-item h3 {
    font-size: 20px;
  }

  .page-fishing-games__game-card h3 {
    font-size: 22px;
  }

  .page-fishing-games__faq-qtext {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 20px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-fishing-games__section-title {
    font-size: 28px !important;
    margin-bottom: 25px !important;
  }

  .page-fishing-games__main-title {
    font-size: clamp(24px, 7vw, 36px) !important;
  }

  .page-fishing-games__hero-description {
    font-size: 17px !important;
  }

  /* HERO Chủ đề chính */
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

  .page-fishing-games__hero-image img {
    object-fit: contain !important; /* Bắt buộc phải là contain cho thiết bị di động */
    aspect-ratio: unset !important;
    border-radius: 0 !important;
  }

  /* Nút và vùng chứa nút */
  .page-fishing-games__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px !important;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 16px !important;
    padding: 14px 20px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Hình ảnh và vùng chứa chung */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__introduction,
  .page-fishing-games__gameplay-guide,
  .page-fishing-games__game-types,
  .page-fishing-games__strategy-tips,
  .page-fishing-games__why-choose-us,
  .page-fishing-games__promotions,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-fishing-games__text-block,
  .page-fishing-games__guide-item p,
  .page-fishing-games__game-card p,
  .page-fishing-games__feature-item p,
  .page-fishing-games__strategy-list li,
  .page-fishing-games__promo-list li,
  details.page-fishing-games__faq-item .page-fishing-games__faq-answer p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  /* Vùng hiển thị sản phẩm (Game Grid) */
  .page-fishing-games__game-grid {
    grid-template-columns: 1fr 1fr !important; /* 2 cột trên di động */
    gap: 20px !important;
    overflow-x: hidden !important;
  }
}