/* style/fishing-games-strategy.css */
/* body đã padding-top: var(--header-offset)；trang này không được viết lại biến đó */

.page-fishing-games-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

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

.page-fishing-games-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Chỉ một khoảng đệm nhỏ, body đã xử lý offset */
  background: var(--deep-green);
  overflow: hidden;
}

.page-fishing-games-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

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

.page-fishing-games-strategy__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

.page-fishing-games-strategy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games-strategy__intro-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

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

.page-fishing-games-strategy__btn-primary,
.page-fishing-games-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

.page-fishing-games-strategy__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* Luôn dùng màu trắng cho chữ trên nền nút đậm */
  border: none;
}

.page-fishing-games-strategy__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fishing-games-strategy__btn-secondary {
  background: var(--card-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-fishing-games-strategy__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-fishing-games-strategy__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games-strategy__overview-section {
  background-color: var(--background);
}

.page-fishing-games-strategy__principles-section {
  background-color: var(--deep-green);
}

.page-fishing-games-strategy__advanced-section {
  background-color: var(--background);
}

.page-fishing-games-strategy__tips-section {
  background-color: var(--deep-green);
}

.page-fishing-games-strategy__conclusion-section {
  background-color: var(--deep-green);
  padding-bottom: 80px;
}

.page-fishing-games-strategy__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-main);
  margin-bottom: 40px;
  font-weight: 700;
}

.page-fishing-games-strategy__paragraph {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.7;
}

.page-fishing-games-strategy__highlight-text {
  color: var(--text-main);
  font-weight: 600;
}

.page-fishing-games-strategy__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  object-fit: cover;
}

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

.page-fishing-games-strategy__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.page-fishing-games-strategy__card-title {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games-strategy__card-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-fishing-games-strategy__card-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games-strategy__faq-section {
  background-color: var(--background);
}

.page-fishing-games-strategy__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-strategy__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-secondary);
}

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--card-bg);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-fishing-games-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games-strategy__faq-question:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
}

.page-fishing-games-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-fishing-games-strategy__faq-item[open] .page-fishing-games-strategy__faq-toggle {
  content: "−";
}

.page-fishing-games-strategy__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: left;
  line-height: 1.7;
}

.page-fishing-games-strategy__faq-answer p {
  margin-bottom: 0;
}

.page-fishing-games-strategy__faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-fishing-games-strategy__faq-answer a:hover {
  color: var(--secondary-color);
}

/* Đảm bảo độ tương phản màu sắc cho các vùng tối */
.page-fishing-games-strategy__dark-section {
  background-color: var(--deep-green);
  color: var(--text-main);
}

.page-fishing-games-strategy__dark-section .page-fishing-games-strategy__section-title,
.page-fishing-games-strategy__dark-section .page-fishing-games-strategy__main-title {
  color: var(--text-main);
}

.page-fishing-games-strategy__dark-section .page-fishing-games-strategy__paragraph,
.page-fishing-games-strategy__dark-section .page-fishing-games-strategy__intro-text {
  color: var(--text-secondary);
}

.page-fishing-games-strategy__light-bg {
  background-color: var(--background);
  color: var(--text-secondary);
}

.page-fishing-games-strategy__light-bg .page-fishing-games-strategy__section-title {
  color: var(--text-main);
}

.page-fishing-games-strategy__light-bg .page-fishing-games-strategy__card {
  background-color: var(--card-bg);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.page-fishing-games-strategy__light-bg .page-fishing-games-strategy__card-title {
  color: var(--text-main);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-strategy__hero-section {
    padding: 40px 20px;
  }
  .page-fishing-games-strategy__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-fishing-games-strategy__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-fishing-games-strategy__grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games-strategy__hero-section {
    padding: 30px 15px;
  }
  .page-fishing-games-strategy__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-fishing-games-strategy__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-fishing-games-strategy__intro-text {
    font-size: 1rem;
  }
  .page-fishing-games-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-fishing-games-strategy__btn-primary,
  .page-fishing-games-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-fishing-games-strategy__section {
    padding: 40px 0;
  }
  .page-fishing-games-strategy__container {
    padding: 0 15px;
  }
  .page-fishing-games-strategy__paragraph,
  .page-fishing-games-strategy__card-text,
  .page-fishing-games-strategy__faq-answer p {
    font-size: 0.95rem;
  }
  .page-fishing-games-strategy__card-title {
    font-size: 1.4rem;
  }
  .page-fishing-games-strategy__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-fishing-games-strategy__faq-toggle {
    font-size: 1.2rem;
  }
  /* 强制图片响应 thích ứng trên thiết bị di động */
  .page-fishing-games-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games-strategy__hero-image-wrapper,
  .page-fishing-games-strategy__section,
  .page-fishing-games-strategy__card,
  .page-fishing-games-strategy__container,
  .page-fishing-games-strategy__cta-buttons,
  .page-fishing-games-strategy__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games-strategy__hero-section {
    padding-top: 10px !important;
  }
  .page-fishing-games-strategy__video-section {
    padding-top: 10px !important; /* body đã xử lý --header-offset, tại đây không dùng var(--header-offset) */
  }
  .page-fishing-games-strategy__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

/* Global Color Variables from Custom Palette */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-fishing-games-strategy a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-fishing-games-strategy a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

/* Đảm bảo tất cả hình ảnh trong khu vực nội dung không bị nhỏ hơn 200px */
.page-fishing-games-strategy__hero-image,
.page-fishing-games-strategy__image-full-width,
.page-fishing-games-strategy__card-image {
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games-strategy__paragraph img,
.page-fishing-games-strategy__list-item img {
  min-width: 200px;
  min-height: 200px;
}

/* Đảm bảo CSS không ghi đè HTML width/height nếu CSS làm nhỏ hơn */
.page-fishing-games-strategy img[width][height] {
  max-width: 100%;
  height: auto;
  /* Không đặt width/height cố định ở đây nếu nó nhỏ hơn HTML attribute */
}

/* Color contrast fix if needed (fallback) */
.page-fishing-games-strategy__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-fishing-games-strategy__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}