/* style/fishing-games.css */
/* body đã padding-top: var(--header-offset) từ shared.css, không lặp lại ở đây */
.page-fishing-games {
  background-color: #08160F; /* Màu nền chính của trang */
  color: #F2FFF6; /* Màu chữ chính trên nền tối */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Chỉ một khoảng cách nhỏ, không dùng var(--header-offset) */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

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

.page-fishing-games__hero-content {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  text-align: center;
  background-color: #11271B; /* Sử dụng màu Card BG */
  border-radius: 10px;
  margin-top: -50px; /* Kéo lên một chút để tạo hiệu ứng */
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.page-fishing-games__hero-title {
  font-size: clamp(2em, 3.5vw, 3.2em);
  font-weight: bold;
  color: #F2C14E; /* Màu Gold cho tiêu đề chính */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Màu Button */
  color: #F2FFF6; /* Màu Text Main */
  border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Màu Gold */
  border: 2px solid #F2C14E;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #F2C14E;
  color: #11271B; /* Màu Card BG */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2C14E; /* Màu Gold */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-fishing-games__section-description {
  font-size: 1.05em;
  color: #A7D9B8; /* Màu Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__why-choose-us,
.page-fishing-games__how-to-play,
.page-fishing-games__popular-games,
.page-fishing-games__tips-strategies,
.page-fishing-games__mobile-experience,
.page-fishing-games__security,
.page-fishing-games__faq-section,
.page-fishing-games__cta-bottom {
  padding: 60px 0;
  border-top: 1px solid #1E3A2A; /* Màu Divider */
}

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

.page-fishing-games__card {
  background-color: #11271B; /* Màu Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #2E7A4E; /* Màu Border */
  color: #F2FFF6;
}

.page-fishing-games__card-title {
  font-size: 1.4em;
  color: #F2C14E; /* Màu Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__card-text {
  font-size: 1em;
  color: #A7D9B8; /* Màu Text Secondary */
  line-height: 1.5;
}

.page-fishing-games__feature-image,
.page-fishing-games__game-image,
.page-fishing-games__tips-image,
.page-fishing-games__mobile-image,
.page-fishing-games__security-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-fishing-games__tips-image,
.page-fishing-games__security-image {
  margin-top: 40px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__step-button {
  margin-top: 20px;
}

.page-fishing-games__mobile-experience .page-fishing-games__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-fishing-games__mobile-experience .page-fishing-games__mobile-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-fishing-games__mobile-experience .page-fishing-games__mobile-text ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-fishing-games__mobile-experience .page-fishing-games__mobile-text li {
  color: #F2FFF6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-fishing-games__mobile-experience .page-fishing-games__mobile-text li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #57E38D; /* Màu Glow */
}

.page-fishing-games__mobile-experience .page-fishing-games__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
}

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

.page-fishing-games__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #0A4B2C; /* Màu Deep Green */
  color: #F2C14E; /* Màu Gold */
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

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

.page-fishing-games__faq-item summary:hover {
  background-color: #13994A;
}

.page-fishing-games__faq-item[open] summary {
  background-color: #13994A;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #F2FFF6;
}

.page-fishing-games__faq-answer {
  padding: 20px;
  border-top: 1px solid #1E3A2A; /* Màu Divider */
  color: #A7D9B8; /* Màu Text Secondary */
  font-size: 1em;
  line-height: 1.6;
}

.page-fishing-games__cta-bottom {
  text-align: center;
  padding-bottom: 80px;
}

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

  .page-fishing-games__why-choose-us,
  .page-fishing-games__how-to-play,
  .page-fishing-games__popular-games,
  .page-fishing-games__tips-strategies,
  .page-fishing-games__mobile-experience,
  .page-fishing-games__security,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-bottom {
    padding: 40px 0;
  }

  .page-fishing-games__section-title {
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-content {
    margin-top: -20px;
    border-radius: 0;
  }

  .page-fishing-games__hero-title {
    font-size: 2.2em;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
  }

  .page-fishing-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Hình ảnh và container của chúng */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__container,
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__hero-content,
  .page-fishing-games__features-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__tips-grid,
  .page-fishing-games__security-grid,
  .page-fishing-games__mobile-experience .page-fishing-games__mobile-content,
  .page-fishing-games__mobile-experience .page-fishing-games__mobile-text,
  .page-fishing-games__mobile-experience .page-fishing-games__mobile-image-wrapper,
  .page-fishing-games__faq-list,
  .page-fishing-games__cta-bottom .page-fishing-games__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Ngăn chặn tràn ngang */
  }

  .page-fishing-games__mobile-experience .page-fishing-games__mobile-content {
    flex-direction: column;
  }
  
  .page-fishing-games__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

  .page-fishing-games__faq-answer {
    padding: 15px;
  }
}