/* style/fishing-games.css */
.page-fishing-games {
  background-color: #08160F; /* Nền tối theo yêu cầu */
  color: #F2FFF6; /* Màu chữ chính cho nền tối */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Chỉ 10px top padding, 0 left/right */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Giới hạn chiều cao của ảnh hero */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover; /* Đảm bảo ảnh bao phủ toàn bộ vùng */
}

.page-fishing-games__hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Kéo nội dung lên trên ảnh một chút để tạo hiệu ứng */
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, rgba(8, 22, 15, 0.95) 50%, #08160F 100%); /* Nền gradient cho nội dung hero */
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #F2C14E; /* Màu Gold cho tiêu đề chính */
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Màu Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Màu chữ trắng */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
  transform: translateY(-2px);
}

.page-fishing-games__cta-button--secondary {
  background: none;
  border: 2px solid #2AD16F;
  color: #2AD16F;
  box-shadow: none;
}

.page-fishing-games__cta-button--secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  color: #2AD16F;
  box-shadow: none;
}

.page-fishing-games__cta-button--large {
  padding: 20px 50px;
  font-size: 1.3rem;
}

.page-fishing-games__section {
  padding: 80px 20px;
  text-align: center;
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-games__section-title {
  font-size: 2.5rem;
  color: #57E38D; /* Màu Glow */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  border-radius: 2px;
}

.page-fishing-games__text-block {
  font-size: 1.1rem;
  color: #F2FFF6; /* Màu Text Main */
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__text-block a {
  color: #A7D9B8; /* Màu Text Secondary cho link trong đoạn văn */
  text-decoration: underline;
}

.page-fishing-games__text-block a:hover {
  color: #2AD16F;
}

.page-fishing-games__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-fishing-games__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-fishing-games__card {
  background-color: #11271B; /* Màu Card BG */
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Màu Border */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.page-fishing-games__card-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Màu Gold */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-fishing-games__card p {
  color: #F2FFF6; /* Màu Text Main */
  font-size: 1rem;
}

.page-fishing-games__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: #F2FFF6;
  font-size: 1rem;
}

.page-fishing-games__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-fishing-games__list--checklist li::before {
  content: '✓';
  color: #2AD16F;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-fishing-games__list--icon li::before {
  content: '★'; /* Hoặc icon khác phù hợp */
  color: #F2C14E;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-fishing-games__note {
  background-color: #0A4B2C; /* Màu Deep Green */
  padding: 20px;
  border-radius: 10px;
  margin-top: 40px;
  font-style: italic;
  color: #A7D9B8;
  border-left: 5px solid #2AD16F;
}

.page-fishing-games__note strong {
  color: #F2FFF6;
}

.page-fishing-games__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-fishing-games__faq-section {
  background-color: #0A4B2C; /* Màu Deep Green */
  padding: 80px 20px;
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-fishing-games__faq-item {
  background-color: #11271B; /* Màu Card BG */
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  color: #F2FFF6; /* Màu Text Main */
  font-weight: bold;
  cursor: pointer;
  background-color: #11271B;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: #1E3A2A; /* Màu Divider */
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #2AD16F;
  margin-left: 15px;
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Màu Text Secondary */
  line-height: 1.6;
}

.page-fishing-games__faq-answer p {
  margin: 0;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  background-color: #1E3A2A; /* Màu Divider */
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-fishing-games__section-title {
    font-size: 2rem;
  }

  .page-fishing-games__grid--2-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-fishing-games__hero-description {
    font-size: 1rem;
    max-width: 100%;
  }

  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-fishing-games__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .page-fishing-games__section {
    padding: 50px 15px;
  }

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

  .page-fishing-games__text-block {
    font-size: 1rem;
  }

  .page-fishing-games__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__card {
    padding: 25px;
  }

  .page-fishing-games__card-title {
    font-size: 1.4rem;
  }

  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-fishing-games__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }

  /* Mobile specific image, video, button adaptations */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-fishing-games__hero-section { /* Override to remove extra padding on mobile for hero */
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-fishing-games__hero-image-wrapper { /* Ensure image wrapper is full width */
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-fishing-games__video-section { /* Video section has small top padding */
    padding-top: 10px !important;
  }

  .page-fishing-games__cta-button,
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    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;
  }
  
  .page-fishing-games__button-group,
  .page-fishing-games__cta-buttons,
  .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;
  }
  .page-fishing-games__button-group {
    flex-direction: column;
  }
}