.page--blog-fishing-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f8f9fa; /* Light background for the page content */
}

/* Hero Section */
.page--blog-fishing-tips__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 40px;
  background-color: #e0f2f7;
  text-align: center;
  overflow: hidden; /* Ensure no horizontal scroll from hero image */
}

.page--blog-fishing-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit height for aesthetic */
  margin-bottom: 20px;
}

.page--blog-fishing-tips__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page--blog-fishing-tips__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page--blog-fishing-tips__intro-text {
  font-size: 1.15rem;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page--blog-fishing-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%; /* Ensure container takes full width */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page--blog-fishing-tips__cta-buttons--centered {
  justify-content: center;
}

.page--blog-fishing-tips__btn-primary,
.page--blog-fishing-tips__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure button itself respects max-width */
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Ensure long words break */
  text-align: center;
}

.page--blog-fishing-tips__btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  border: 2px solid #2563eb;
}

.page--blog-fishing-tips__btn-primary:hover {
  background-color: #1e40af;
  border-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page--blog-fishing-tips__btn-secondary {
  background-color: #ffffff;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.page--blog-fishing-tips__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* General Section Styling */
.page--blog-fishing-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page--blog-fishing-tips__why-g666-section,
.page--blog-fishing-tips__strategy-section,
.page--blog-fishing-tips__download-cta-section,
.page--blog-fishing-tips__faq-section,
.page--blog-fishing-tips__related-games-section,
.page--blog-fishing-tips__conclusion-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.page--blog-fishing-tips__section-title {
  font-size: 2.2rem;
  color: #2563eb;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page--blog-fishing-tips__section-description {
  font-size: 1.1rem;
  color: #666666;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Grid */
.page--blog-fishing-tips__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page--blog-fishing-tips__feature-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page--blog-fishing-tips__feature-item:hover {
  transform: translateY(-5px);
}

.page--blog-fishing-tips__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page--blog-fishing-tips__feature-title {
  font-size: 1.4rem;
  color: #2563eb;
  margin-bottom: 15px;
  font-weight: 600;
}

.page--blog-fishing-tips__feature-text {
  font-size: 1rem;
  color: #555555;
}

/* Strategy Section */
.page--blog-fishing-tips__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.page--blog-fishing-tips__strategy-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.page--blog-fishing-tips__strategy-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page--blog-fishing-tips__strategy-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page--blog-fishing-tips__strategy-title {
  font-size: 1.5rem;
  color: #2563eb;
  margin-bottom: 15px;
  font-weight: 600;
}

.page--blog-fishing-tips__strategy-text {
  font-size: 1rem;
  color: #444444;
}

/* Download CTA Section */
.page--blog-fishing-tips__download-cta-section {
  background-color: #2563eb;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.page--blog-fishing-tips__download-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.page--blog-fishing-tips__download-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page--blog-fishing-tips__download-cta-section .page--blog-fishing-tips__section-title {
  color: #ffffff;
  text-align: left;
}

.page--blog-fishing-tips__download-cta-section .page--blog-fishing-tips__section-description {
  color: #e0f2f7;
  text-align: left;
  margin-bottom: 30px;
}

.page--blog-fishing-tips__download-image {
  flex-shrink: 0;
  width: 400px; /* Base width for desktop */
  height: 300px; /* Base height for desktop */
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page--blog-fishing-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page--blog-fishing-tips__faq-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.page--blog-fishing-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2563eb;
  cursor: pointer;
  user-select: none;
  background-color: #f0f8ff;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.page--blog-fishing-tips__faq-question:hover {
  background-color: #e0f2f7;
}

.page--blog-fishing-tips__faq-qtext {
  pointer-events: none; /* Prevent text from blocking click event on question div */
  flex-grow: 1;
}

.page--blog-fishing-tips__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event on question div */
  transition: transform 0.3s ease;
}

.page--blog-fishing-tips__faq-item.active .page--blog-fishing-tips__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' or 'minus' effect */
}

.page--blog-fishing-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  color: #444444;
}

.page--blog-fishing-tips__faq-item.active .page--blog-fishing-tips__faq-answer {
  max-height: 2000px !important; /* Use !important to override transition max-height */
  padding: 20px 25px !important;
  opacity: 1;
}

.page--blog-fishing-tips__faq-answer p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Related Games Section */
.page--blog-fishing-tips__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page--blog-fishing-tips__game-card {
  display: block;
  text-decoration: none;
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--blog-fishing-tips__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.page--blog-fishing-tips__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page--blog-fishing-tips__game-card-title {
  font-size: 1.3rem;
  color: #2563eb;
  padding: 15px 20px 5px;
  font-weight: 600;
}

.page--blog-fishing-tips__game-card-description {
  font-size: 0.95rem;
  color: #666666;
  padding: 0 20px 20px;
}

/* Conclusion Section */
.page--blog-fishing-tips__conclusion-section {
  text-align: center;
  background-color: #f0f8ff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page--blog-fishing-tips__conclusion-section .page--blog-fishing-tips__section-title {
  color: #2563eb;
}

.page--blog-fishing-tips__conclusion-section .page--blog-fishing-tips__section-description {
  color: #555555;
  margin-bottom: 30px;
}

/* Responsive Design */
/* General images and containers for mobile */
.page--blog-fishing-tips img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page--blog-fishing-tips__container,
.page--blog-fishing-tips__why-g666-section,
.page--blog-fishing-tips__strategy-section,
.page--blog-fishing-tips__download-cta-section,
.page--blog-fishing-tips__faq-section,
.page--blog-fishing-tips__related-games-section,
.page--blog-fishing-tips__conclusion-section {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden; /* Prevent horizontal scroll */
}

@media (max-width: 1024px) {
  .page--blog-fishing-tips__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page--blog-fishing-tips__section-title {
    font-size: 2rem;
  }
  .page--blog-fishing-tips__download-flex {
    flex-direction: column;
    text-align: center;
  }
  .page--blog-fishing-tips__download-content {
    text-align: center;
  }
  .page--blog-fishing-tips__download-cta-section .page--blog-fishing-tips__section-title,
  .page--blog-fishing-tips__download-cta-section .page--blog-fishing-tips__section-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page--blog-fishing-tips__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 30px;
  }
  .page--blog-fishing-tips__hero-image {
    max-height: 300px;
  }
  .page--blog-fishing-tips__main-title {
    font-size: 2rem;
    padding: 0 15px;
  }
  .page--blog-fishing-tips__intro-text {
    font-size: 1rem;
    padding: 0 15px;
  }

  /* Buttons & Button Containers */
  .page--blog-fishing-tips__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    padding: 0 15px;
  }
  .page--blog-fishing-tips__btn-primary,
  .page--blog-fishing-tips__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* General Images */
  .page--blog-fishing-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* General Sections & Containers */
  .page--blog-fishing-tips__why-g666-section,
  .page--blog-fishing-tips__strategy-section,
  .page--blog-fishing-tips__download-cta-section,
  .page--blog-fishing-tips__faq-section,
  .page--blog-fishing-tips__related-games-section,
  .page--blog-fishing-tips__conclusion-section {
    padding: 40px 0;
    margin-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page--blog-fishing-tips__container {
    padding: 0; /* Container padding handled by section padding */
  }

  .page--blog-fishing-tips__section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding: 0 10px;
  }
  .page--blog-fishing-tips__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  /* Feature Grid */
  .page--blog-fishing-tips__feature-grid {
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
  }
  .page--blog-fishing-tips__feature-item {
    padding: 20px;
  }
  .page--blog-fishing-tips__feature-image {
    height: 200px;
  }

  /* Strategy Grid */
  .page--blog-fishing-tips__strategy-grid {
    grid-template-columns: 1fr; /* Single column */
    gap: 25px;
  }
  .page--blog-fishing-tips__strategy-image {
    height: 220px;
  }

  /* Download CTA Section */
  .page--blog-fishing-tips__download-image {
    width: 100% !important;
    height: auto !important;
    max-width: 300px; /* Limit max width for image on mobile */
    margin-left: auto;
    margin-right: auto;
  }
  .page--blog-fishing-tips__download-content {
    min-width: unset;
  }

  /* FAQ Section */
  .page--blog-fishing-tips__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .page--blog-fishing-tips__faq-answer {
    padding: 15px 20px !important;
  }
  .page--blog-fishing-tips__faq-answer p {
    font-size: 0.95rem;
  }

  /* Related Games Section */
  .page--blog-fishing-tips__game-cards-grid {
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
  }
  .page--blog-fishing-tips__game-card-image {
    height: 180px;
  }
  .page--blog-fishing-tips__game-card-title {
    font-size: 1.2rem;
  }
  .page--blog-fishing-tips__game-card-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page--blog-fishing-tips__main-title {
    font-size: 1.8rem;
  }
  .page--blog-fishing-tips__section-title {
    font-size: 1.6rem;
  }
  .page--blog-fishing-tips__btn-primary,
  .page--blog-fishing-tips__btn-secondary {
    font-size: 0.95rem !important;
    padding: 10px 15px !important;
  }
  .page--blog-fishing-tips__faq-question {
    font-size: 1rem;
  }
  .page--blog-fishing-tips__faq-answer p {
    font-size: 0.9rem;
  }
}