/* style/blog-how-to-choose-fishing-game.css */
/* body đã padding-top: var(--header-offset); trang này không được viết lại biến này */

.page-blog-how-to-choose-fishing-game {
  background-color: #08160F; /* 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-blog-how-to-choose-fishing-game__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-choose-fishing-game__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px; /* Nhỏ hơn so với --header-offset */
  overflow: hidden;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-how-to-choose-fishing-game__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-blog-how-to-choose-fishing-game__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Tạo hiệu ứng nền mờ */
  display: block;
}

.page-blog-how-to-choose-fishing-game__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #F2FFF6;
  padding: 20px;
}

.page-blog-how-to-choose-fishing-game__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Sử dụng clamp cho H1 */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F2C14E; /* Gold color for main title */
}

.page-blog-how-to-choose-fishing-game__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

/* Section Titles */
.page-blog-how-to-choose-fishing-game__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F2C14E; /* Gold color for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

/* Text Blocks */
.page-blog-how-to-choose-fishing-game__text-block {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #F2FFF6;
}

/* Buttons */
.page-blog-how-to-choose-fishing-game__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main for button text */
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-how-to-choose-fishing-game__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-how-to-choose-fishing-game__cta-button--secondary {
  background: none;
  border: 2px solid #2AD16F; /* Border with main green */
  color: #2AD16F;
}

.page-blog-how-to-choose-fishing-game__cta-button--secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  color: #F2FFF6;
}

.page-blog-how-to-choose-fishing-game__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25rem;
}

/* Sections */
.page-blog-how-to-choose-fishing-game__introduction-section,
.page-blog-how-to-choose-fishing-game__how-to-play-section,
.page-blog-how-to-choose-fishing-game__conclusion-section {
  padding: 60px 0;
  background-color: #08160F; /* Background color */
}

.page-blog-how-to-choose-fishing-game__factors-section,
.page-blog-how-to-choose-fishing-game__faq-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG color */
}

/* Factor Items */
.page-blog-how-to-choose-fishing-game__factor-item {
  margin-bottom: 40px;
  padding: 30px;
  background-color: rgba(17, 39, 27, 0.7); /* Slightly transparent card background */
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border color */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
}

.page-blog-how-to-choose-fishing-game__factor-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #57E38D; /* Glow color for sub-titles */
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-how-to-choose-fishing-game__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 25px;
  display: block;
  min-width: 200px; /* Minimum image size */
  min-height: 200px;
}

/* Step Items */
.page-blog-how-to-choose-fishing-game__step-item {
  margin-bottom: 40px;
  padding: 30px;
  background-color: rgba(17, 39, 27, 0.7); /* Slightly transparent card background */
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border color */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
  text-align: center;
}

.page-blog-how-to-choose-fishing-game__step-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #57E38D; /* Glow color for sub-titles */
  margin-bottom: 20px;
}

/* FAQ Section */
.page-blog-how-to-choose-fishing-game__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-choose-fishing-game__faq-item {
  background-color: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-how-to-choose-fishing-game__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: #F2FFF6;
  background-color: #0A4B2C; /* Deep Green for question background */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-choose-fishing-game__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-blog-how-to-choose-fishing-game__faq-question:hover {
  background-color: #11A84E; /* Main color on hover */
}

.page-blog-how-to-choose-fishing-game__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-choose-fishing-game__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow color for toggle */
}

.page-blog-how-to-choose-fishing-game__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG color */
  border-top: 1px solid #1E3A2A; /* Divider color */
}

/* Conclusion Section specific styles */
.page-blog-how-to-choose-fishing-game__conclusion-section .page-blog-how-to-choose-fishing-game__section-title,
.page-blog-how-to-choose-fishing-game__conclusion-section .page-blog-how-to-choose-fishing-game__text-block {
  text-align: center;
}

.page-blog-how-to-choose-fishing-game__conclusion-section .page-blog-how-to-choose-fishing-game__cta-button {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}


/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-how-to-choose-fishing-game__container {
    padding: 0 15px;
  }

  .page-blog-how-to-choose-fishing-game__hero-section {
    padding: 60px 15px 30px;
  }

  .page-blog-how-to-choose-fishing-game__main-title {
    font-size: 2rem;
  }

  .page-blog-how-to-choose-fishing-game__description {
    font-size: 1rem;
  }

  .page-blog-how-to-choose-fishing-game__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-blog-how-to-choose-fishing-game__factor-title,
  .page-blog-how-to-choose-fishing-game__step-title {
    font-size: 1.5rem;
  }

  .page-blog-how-to-choose-fishing-game__cta-button,
  .page-blog-how-to-choose-fishing-game__cta-button--large {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Images responsive */
  .page-blog-how-to-choose-fishing-game img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-to-choose-fishing-game__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important; /* Hero image needs to cover its wrapper */
    object-fit: cover !important;
  }
  .page-blog-how-to-choose-fishing-game__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-to-choose-fishing-game__hero-image-wrapper,
  .page-blog-how-to-choose-fishing-game__container,
  .page-blog-how-to-choose-fishing-game__factor-item,
  .page-blog-how-to-choose-fishing-game__step-item,
  .page-blog-how-to-choose-fishing-game__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-how-to-choose-fishing-game__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .page-blog-how-to-choose-fishing-game__introduction-section,
  .page-blog-how-to-choose-fishing-game__factors-section,
  .page-blog-how-to-choose-fishing-game__how-to-play-section,
  .page-blog-how-to-choose-fishing-game__faq-section,
  .page-blog-how-to-choose-fishing-game__conclusion-section {
    padding: 30px 0;
  }
  .page-blog-how-to-choose-fishing-game__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-blog-how-to-choose-fishing-game__faq-answer {
    padding: 15px 20px;
  }
}