.page-blog-5fun-fishing-games-strategy {
  background-color: #08160F; /* Custom Background color */
  color: #F2FFF6; /* Custom Text Main color */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

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

.page-blog-5fun-fishing-games-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-blog-5fun-fishing-games-strategy__hero-image {
  width: 100%;
  max-height: 675px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
}

.page-blog-5fun-fishing-games-strategy__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-5fun-fishing-games-strategy__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-5fun-fishing-games-strategy__description-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Custom Text Secondary color */
  margin-bottom: 30px;
}

.page-blog-5fun-fishing-games-strategy__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button color */
  color: #F2FFF6; /* Custom Text Main for button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-5fun-fishing-games-strategy__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-5fun-fishing-games-strategy__section-title {
  font-size: 2.5em;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-5fun-fishing-games-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #57E38D; /* Custom Glow color */
  border-radius: 2px;
}

.page-blog-5fun-fishing-games-strategy__introduction-section,
.page-blog-5fun-fishing-games-strategy__core-mechanics-section,
.page-blog-5fun-fishing-games-strategy__advanced-strategy-section,
.page-blog-5fun-fishing-games-strategy__mistakes-section,
.page-blog-5fun-fishing-games-strategy__maximise-winnings-section,
.page-blog-5fun-fishing-games-strategy__video-section,
.page-blog-5fun-fishing-games-strategy__faq-section,
.page-blog-5fun-fishing-games-strategy__cta-final-section {
  padding: 80px 0;
  border-bottom: 1px solid #1E3A2A; /* Custom Divider color */
}

.page-blog-5fun-fishing-games-strategy__introduction-section p,
.page-blog-5fun-fishing-games-strategy__core-mechanics-section p,
.page-blog-5fun-fishing-games-strategy__advanced-strategy-section p,
.page-blog-5fun-fishing-games-strategy__mistakes-section p,
.page-blog-5fun-fishing-games-strategy__maximise-winnings-section p,
.page-blog-5fun-fishing-games-strategy__faq-section p {
  color: #A7D9B8;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-blog-5fun-fishing-games-strategy__card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-5fun-fishing-games-strategy__card {
  background-color: #11271B; /* Custom Card BG color */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #2E7A4E; /* Custom Border color */
}

.page-blog-5fun-fishing-games-strategy__card-title {
  font-size: 1.8em;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-blog-5fun-fishing-games-strategy__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-5fun-fishing-games-strategy__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #A7D9B8;
}

.page-blog-5fun-fishing-games-strategy__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #57E38D; /* Custom Glow color */
  font-weight: bold;
}

.page-blog-5fun-fishing-games-strategy__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
  min-height: 200px; /* Min size requirement */
}

.page-blog-5fun-fishing-games-strategy__strategy-item {
  background-color: #11271B; /* Custom Card BG color */
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid #2E7A4E; /* Custom Border color */
}

.page-blog-5fun-fishing-games-strategy__strategy-title {
  font-size: 2em;
  color: #F2FFF6;
  margin-bottom: 20px;
}

.page-blog-5fun-fishing-games-strategy__strategy-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
  min-height: 200px; /* Min size requirement */
}

.page-blog-5fun-fishing-games-strategy__card-button {
  display: inline-block;
  background: #0A4B2C; /* Custom Deep Green color */
  color: #F2FFF6;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background 0.3s ease;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-5fun-fishing-games-strategy__card-button:hover {
  background: #13994A; /* Darker green on hover */
}

.page-blog-5fun-fishing-games-strategy__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  aspect-ratio: 16 / 9; /* For responsive video */
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-5fun-fishing-games-strategy__video {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-blog-5fun-fishing-games-strategy__video-cta {
  margin-top: 20px;
}

.page-blog-5fun-fishing-games-strategy__faq-list {
  margin-top: 40px;
}

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

.page-blog-5fun-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #0A4B2C; /* Custom Deep Green for summary background */
  color: #F2FFF6;
  border-bottom: 1px solid #1E3A2A;
  list-style: none;
}

.page-blog-5fun-fishing-games-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-5fun-fishing-games-strategy__faq-question::marker {
  display: none;
}

.page-blog-5fun-fishing-games-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Custom Glow color */
}

.page-blog-5fun-fishing-games-strategy__faq-item[open] .page-blog-5fun-fishing-games-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-5fun-fishing-games-strategy__faq-answer {
  padding: 20px;
  font-size: 1.05em;
  color: #A7D9B8; /* Custom Text Secondary color */
  background-color: #11271B; /* Custom Card BG color for answer */
}

.page-blog-5fun-fishing-games-strategy__cta-final-section {
  text-align: center;
}

.page-blog-5fun-fishing-games-strategy__cta-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* --- Responsive Styles --- */

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

  .page-blog-5fun-fishing-games-strategy__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-5fun-fishing-games-strategy__hero-image {
    max-height: 400px;
  }

  .page-blog-5fun-fishing-games-strategy__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-5fun-fishing-games-strategy__section-title {
    font-size: 2em;
  }

  .page-blog-5fun-fishing-games-strategy__card-list {
    grid-template-columns: 1fr;
  }

  /* Buttons responsive */
  .page-blog-5fun-fishing-games-strategy__cta-button,
  .page-blog-5fun-fishing-games-strategy__card-button {
    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;
  }
  
  /* Images responsive */
  .page-blog-5fun-fishing-games-strategy img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-5fun-fishing-games-strategy__hero-section,
  .page-blog-5fun-fishing-games-strategy__introduction-section,
  .page-blog-5fun-fishing-games-strategy__core-mechanics-section,
  .page-blog-5fun-fishing-games-strategy__advanced-strategy-section,
  .page-blog-5fun-fishing-games-strategy__mistakes-section,
  .page-blog-5fun-fishing-games-strategy__maximise-winnings-section,
  .page-blog-5fun-fishing-games-strategy__video-section,
  .page-blog-5fun-fishing-games-strategy__faq-section,
  .page-blog-5fun-fishing-games-strategy__cta-final-section,
  .page-blog-5fun-fishing-games-strategy__card,
  .page-blog-5fun-fishing-games-strategy__strategy-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-blog-5fun-fishing-games-strategy__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Video responsive */
  .page-blog-5fun-fishing-games-strategy video,
  .page-blog-5fun-fishing-games-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-5fun-fishing-games-strategy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}