.page-blog-fishing-games-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  margin: 0;
  padding: 0;
}

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

.page-blog-fishing-games-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top from header */
  overflow: hidden;
}

.page-blog-fishing-games-tips__hero-image-wrapper {
  width: 100%;
  height: auto;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-blog-fishing-games-tips__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-blog-fishing-games-tips__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-blog-fishing-games-tips__description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-fishing-games-tips__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-fishing-games-tips__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff; /* Button text always white */
  border: none;
}

.page-blog-fishing-games-tips__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-fishing-games-tips__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-fishing-games-tips__section:last-of-type {
  border-bottom: none;
}

.page-blog-fishing-games-tips__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-fishing-games-tips__sub-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-fishing-games-tips__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-blog-fishing-games-tips__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-blog-fishing-games-tips__ordered-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-blog-fishing-games-tips__list-item {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
}

.page-blog-fishing-games-tips__text-link {
  color: #57E38D; /* Glow for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-fishing-games-tips__text-link:hover {
  color: #F2C14E; /* Gold on hover */
  text-decoration: underline;
}

.page-blog-fishing-games-tips__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* FAQ Styles */
.page-blog-fishing-games-tips__faq-list {
  margin-top: 30px;
}

.page-blog-fishing-games-tips__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-blog-fishing-games-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E;
  transition: background-color 0.3s ease;
}

.page-blog-fishing-games-tips__faq-question:hover {
  background-color: #11A84E;
}

.page-blog-fishing-games-tips__faq-item[open] .page-blog-fishing-games-tips__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-blog-fishing-games-tips__faq-qtext {
  flex-grow: 1;
}

.page-blog-fishing-games-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-fishing-games-tips__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-fishing-games-tips__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8; /* Text Secondary */
}

/* Remove default details arrow */
.page-blog-fishing-games-tips__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-fishing-games-tips__faq-item summary {
  list-style: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-fishing-games-tips__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-blog-fishing-games-tips__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-fishing-games-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-fishing-games-tips__container {
    padding: 0 15px;
  }

  .page-blog-fishing-games-tips__hero-section {
    padding: 10px 0 40px 0;
  }

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

  .page-blog-fishing-games-tips__main-title {
    font-size: 2em;
    margin-bottom: 10px;
  }

  .page-blog-fishing-games-tips__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-fishing-games-tips__cta-button,
  .page-blog-fishing-games-tips__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-blog-fishing-games-tips__section {
    padding: 40px 0;
  }

  .page-blog-fishing-games-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-fishing-games-tips__sub-title {
    font-size: 1.5em;
  }

  .page-blog-fishing-games-tips__text-block {
    font-size: 0.95em;
  }

  .page-blog-fishing-games-tips__list-item,
  .page-blog-fishing-games-tips__ordered-list-item {
    font-size: 0.95em;
  }

  .page-blog-fishing-games-tips__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 30px auto;
  }

  .page-blog-fishing-games-tips__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-fishing-games-tips__faq-answer {
    padding: 10px 20px;
    font-size: 0.95em;
  }

  /* Containers for images/videos/buttons */
  .page-blog-fishing-games-tips__section,
  .page-blog-fishing-games-tips__card,
  .page-blog-fishing-games-tips__container,
  .page-blog-fishing-games-tips__hero-section,
  .page-blog-fishing-games-tips__hero-image-wrapper,
  .page-blog-fishing-games-tips__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-fishing-games-tips__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-blog-fishing-games-tips__main-title {
    font-size: 1.8em;
  }

  .page-blog-fishing-games-tips__section-title {
    font-size: 1.6em;
  }

  .page-blog-fishing-games-tips__sub-title {
    font-size: 1.3em;
  }
}