.page-blog-fishing-game-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Body background from shared.css */
}

.page-blog-fishing-game-tips__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  overflow: hidden;
  background-color: #017439; /* Brand color as fallback */
}

.page-blog-fishing-game-tips__hero-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-blog-fishing-game-tips__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

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

.page-blog-fishing-game-tips__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-fishing-game-tips__hero-description {
  font-size: 1.15rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-fishing-game-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-fishing-game-tips__btn-primary,
.page-blog-fishing-game-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  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;
  text-align: center;
}

.page-blog-fishing-game-tips__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-blog-fishing-game-tips__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-blog-fishing-game-tips__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-blog-fishing-game-tips__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.page-blog-fishing-game-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-blog-fishing-game-tips__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-fishing-game-tips__intro-paragraph {
  font-size: 1.1rem;
  margin-bottom: 40px;
  text-align: justify;
}

.page-blog-fishing-game-tips__section-title {
  font-size: 2.5rem;
  color: #017439;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-blog-fishing-game-tips__sub-title {
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-fishing-game-tips p {
  margin-bottom: 15px;
  color: #f0f0f0;
  text-align: justify;
}

.page-blog-fishing-game-tips__highlight {
  color: #FFFF00; /* Highlight color for keywords */
}

.page-blog-fishing-game-tips__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-fishing-game-tips__faq-list {
  margin-top: 40px;
}

.page-blog-fishing-game-tips__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-blog-fishing-game-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  list-style: none;
}

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

.page-blog-fishing-game-tips__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #FFFF00;
}

.page-blog-fishing-game-tips__faq-item[open] .page-blog-fishing-game-tips__faq-toggle {
  content: '−';
}

.page-blog-fishing-game-tips__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #f0f0f0;
}

.page-blog-fishing-game-tips__faq-answer p {
  margin-bottom: 0;
}

.page-blog-fishing-game-tips__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-blog-fishing-game-tips__related-articles {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-blog-fishing-game-tips__card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-blog-fishing-game-tips__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-blog-fishing-game-tips__card-title {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 15px 20px 10px;
}

.page-blog-fishing-game-tips__card-title a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-fishing-game-tips__card-title a:hover {
  color: #FFFF00;
}

.page-blog-fishing-game-tips__card-excerpt {
  font-size: 0.95rem;
  color: #cccccc;
  padding: 0 20px 15px;
}

.page-blog-fishing-game-tips__card-link {
  display: inline-block;
  background-color: #017439;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-blog-fishing-game-tips__card-link:hover {
  background-color: #005f2f;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-fishing-game-tips__hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-fishing-game-tips__hero-description {
    font-size: 1rem;
  }

  .page-blog-fishing-game-tips__section-title {
    font-size: 2rem;
  }

  .page-blog-fishing-game-tips__sub-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-blog-fishing-game-tips__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-blog-fishing-game-tips__hero-content {
    padding: 0 15px;
  }

  .page-blog-fishing-game-tips__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    margin-bottom: 15px;
  }

  .page-blog-fishing-game-tips__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .page-blog-fishing-game-tips__cta-buttons {
    flex-direction: column !important;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-fishing-game-tips__btn-primary,
  .page-blog-fishing-game-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-fishing-game-tips__content-area {
    padding: 40px 15px;
  }

  .page-blog-fishing-game-tips__container {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-fishing-game-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-blog-fishing-game-tips__content-image {
    margin: 20px auto;
  }

  .page-blog-fishing-game-tips__section-title {
    font-size: 2rem !important;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-blog-fishing-game-tips__sub-title {
    font-size: 1.3rem !important;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-fishing-game-tips p {
    font-size: 0.95rem;
  }

  .page-blog-fishing-game-tips__faq-question {
    font-size: 1.05rem;
    padding: 15px;
  }

  .page-blog-fishing-game-tips__faq-answer {
    padding: 0 15px 15px;
  }

  .page-blog-fishing-game-tips__article-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-fishing-game-tips__card {
    margin: 0 15px;
  }
  
  .page-blog-fishing-game-tips__related-articles {
    margin-top: 60px;
    padding-top: 30px;
  }
}