/* style/blog-online-fishing-game-tips.css */
.page-blog-online-fishing-game-tips {
  background-color: #08160F; /* Nền tối, theo màu tùy chỉnh */
  color: #F2FFF6; /* Chữ sáng */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-online-fishing-game-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Nhỏ top padding, lớn bottom padding */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-online-fishing-game-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-blog-online-fishing-game-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Giảm độ sáng để chữ dễ đọc */
  display: block;
}

.page-blog-online-fishing-game-tips__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  background: rgba(17, 39, 27, 0.7); /* Card B G với độ trong suốt */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  margin-top: 100px; /* Đẩy nội dung xuống dưới hình ảnh */
}

.page-blog-online-fishing-game-tips__main-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-blog-online-fishing-game-tips__description {
  color: #F2FFF6;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-blog-online-fishing-game-tips__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-online-fishing-game-tips__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-online-fishing-game-tips__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
  transform: translateY(-2px);
}

.page-blog-online-fishing-game-tips__btn-secondary {
  background: #11271B; /* Card B G */
  color: #2AD16F; /* Màu xanh lá cây từ gradient */
  border: 2px solid #2AD16F;
  margin-left: 15px;
}

.page-blog-online-fishing-game-tips__btn-secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
  border-color: #2AD16F;
  transform: translateY(-2px);
}

.page-blog-online-fishing-game-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #08160F; /* Đảm bảo nền khớp body */
  box-sizing: border-box;
}

.page-blog-online-fishing-game-tips__article {
  background-color: #11271B; /* Card B G */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: #F2FFF6;
}

.page-blog-online-fishing-game-tips__section-title {
  color: #F2C14E; /* Gold */
  font-size: 2.2rem;
  margin-bottom: 25px;
  border-bottom: 2px solid #2E7A4E; /* Border */
  padding-bottom: 15px;
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.4);
}

.page-blog-online-fishing-game-tips__sub-title {
  color: #2AD16F; /* Màu xanh lá cây từ gradient */
  font-size: 1.6rem;
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-blog-online-fishing-game-tips__paragraph {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #F2FFF6;
}

.page-blog-online-fishing-game-tips__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-online-fishing-game-tips__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-online-fishing-game-tips__list-item::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #F2C14E; /* Gold */
  font-size: 1.2rem;
  line-height: 1;
}

.page-blog-online-fishing-game-tips__image-container {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-blog-online-fishing-game-tips__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-blog-online-fishing-game-tips__text-link {
  color: #2AD16F; /* Màu xanh lá cây từ gradient */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-online-fishing-game-tips__text-link:hover {
  color: #F2C14E; /* Gold */
}

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

.page-blog-online-fishing-game-tips__faq-section {
  margin-top: 50px;
}

.page-blog-online-fishing-game-tips__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-online-fishing-game-tips__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  list-style: none;
  color: #F2FFF6;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-blog-online-fishing-game-tips__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-online-fishing-game-tips__faq-item summary:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-blog-online-fishing-game-tips__faq-qtext {
  flex-grow: 1;
  color: #F2C14E; /* Gold */
}

.page-blog-online-fishing-game-tips__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2AD16F;
  margin-left: 15px;
}

.page-blog-online-fishing-game-tips__faq-answer {
  padding: 0 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-blog-online-fishing-game-tips__cta-section {
  background: linear-gradient(90deg, #0A4B2C 0%, #11A84E 100%); /* Deep Green to Primary */
  padding: 80px 20px;
  text-align: center;
  color: #F2FFF6;
  border-top: 5px solid #2AD16F;
  box-sizing: border-box;
}

.page-blog-online-fishing-game-tips__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-online-fishing-game-tips__cta-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-blog-online-fishing-game-tips__cta-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #F2FFF6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-online-fishing-game-tips__hero-content {
    padding: 30px;
  }
  .page-blog-online-fishing-game-tips__article {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-blog-online-fishing-game-tips__hero-section {
    padding: 10px 15px 40px;
  }
  .page-blog-online-fishing-game-tips__hero-content {
    padding: 20px;
    margin-top: 80px;
  }
  .page-blog-online-fishing-game-tips__main-title {
    font-size: 2.2rem;
  }
  .page-blog-online-fishing-game-tips__description {
    font-size: 1rem;
  }
  .page-blog-online-fishing-game-tips__content-area {
    padding: 40px 15px;
  }
  .page-blog-online-fishing-game-tips__article {
    padding: 20px;
  }
  .page-blog-online-fishing-game-tips__section-title {
    font-size: 1.8rem;
  }
  .page-blog-online-fishing-game-tips__sub-title {
    font-size: 1.4rem;
  }
  .page-blog-online-fishing-game-tips__paragraph,
  .page-blog-online-fishing-game-tips__list-item {
    font-size: 0.95rem;
  }
  .page-blog-online-fishing-game-tips__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-online-fishing-game-tips__btn-secondary {
    margin-left: 0;
  }
  .page-blog-online-fishing-game-tips__cta-section {
    padding: 60px 15px;
  }
  .page-blog-online-fishing-game-tips__cta-title {
    font-size: 2rem;
  }
  .page-blog-online-fishing-game-tips__cta-description {
    font-size: 1rem;
  }
  
  /* Mobile image, video, button responsiveness */
  .page-blog-online-fishing-game-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-online-fishing-game-tips video,
  .page-blog-online-fishing-game-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-online-fishing-game-tips__hero-image-wrapper,
  .page-blog-online-fishing-game-tips__image-container,
  .page-blog-online-fishing-game-tips__video-section,
  .page-blog-online-fishing-game-tips__video-container,
  .page-blog-online-fishing-game-tips__video-wrapper,
  .page-blog-online-fishing-game-tips__section,
  .page-blog-online-fishing-game-tips__card,
  .page-blog-online-fishing-game-tips__container,
  .page-blog-online-fishing-game-tips__cta-buttons,
  .page-blog-online-fishing-game-tips__button-group,
  .page-blog-online-fishing-game-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-online-fishing-game-tips__cta-button,
  .page-blog-online-fishing-game-tips__btn-primary,
  .page-blog-online-fishing-game-tips__btn-secondary,
  .page-blog-online-fishing-game-tips a[class*="button"],
  .page-blog-online-fishing-game-tips 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-blog-online-fishing-game-tips__cta-group {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-online-fishing-game-tips__video-section {
    padding-top: 10px !important;
  }
  .page-blog-online-fishing-game-tips__hero-image {
    filter: brightness(0.4) !important;
  }
}

@media (max-width: 480px) {
  .page-blog-online-fishing-game-tips__hero-content {
    margin-top: 60px;
  }
  .page-blog-online-fishing-game-tips__main-title {
    font-size: 1.8rem;
  }
  .page-blog-online-fishing-game-tips__section-title {
    font-size: 1.6rem;
  }
  .page-blog-online-fishing-game-tips__sub-title {
    font-size: 1.2rem;
  }
  .page-blog-online-fishing-game-tips__cta-button {
    padding: 12px 20px;
  }
}