.page-blog-fishing-games-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
}

.page-blog-fishing-games-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  margin-bottom: 40px;
  overflow: hidden;
}

.page-blog-fishing-games-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-blog-fishing-games-guide__hero-content {
  position: relative;
  padding: 40px 20px;
  background: #0A4B2C; /* Deep Green for hero content background */
  color: #F2FFF6; /* Text Main */
  width: 100%;
  box-sizing: border-box;
}

.page-blog-fishing-games-guide__hero-title {
  font-size: clamp(2em, 4vw, 2.8em);
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-fishing-games-guide__hero-description {
  font-size: clamp(1em, 2vw, 1.2em);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-fishing-games-guide__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-blog-fishing-games-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background: transparent;
  color: #11A84E; /* Primary color */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #11A84E; /* Primary color */
  cursor: pointer;
  margin-left: 15px;
}

.page-blog-fishing-games-guide__btn-secondary:hover {
  background: #11A84E;
  color: #F2FFF6;
}

.page-blog-fishing-games-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-fishing-games-guide__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  padding-top: 40px;
}

.page-blog-fishing-games-guide__intro-section,
.page-blog-fishing-games-guide__why-choose,
.page-blog-fishing-games-guide__gameplay-guide,
.page-blog-fishing-games-guide__new-player-tips,
.page-blog-fishing-games-guide__promotions,
.page-blog-fishing-games-guide__conclusion {
  padding: 60px 0;
  background: #ffffff; /* Light background for these sections */
  color: #333333; /* Dark text for light background */
}

.page-blog-fishing-games-guide__game-overview,
.page-blog-fishing-games-guide__popular-games,
.page-blog-fishing-games-guide__advanced-strategies,
.page-blog-fishing-games-guide__security,
.page-blog-fishing-games-guide__faq-section {
  padding: 60px 0;
  background: #08160F; /* Custom dark background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-fishing-games-guide__game-overview .page-blog-fishing-games-guide__section-title,
.page-blog-fishing-games-guide__popular-games .page-blog-fishing-games-guide__section-title,
.page-blog-fishing-games-guide__advanced-strategies .page-blog-fishing-games-guide__section-title,
.page-blog-fishing-games-guide__security .page-blog-fishing-games-guide__section-title,
.page-blog-fishing-games-guide__faq-section .page-blog-fishing-games-guide__section-title {
  color: #F2FFF6; /* Text Main for dark background sections */
}

.page-blog-fishing-games-guide__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-blog-fishing-games-guide__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-blog-fishing-games-guide__ordered-list {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-blog-fishing-games-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-blog-fishing-games-guide__content-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-blog-fishing-games-guide__content-row--reverse {
  flex-direction: row-reverse;
}

.page-blog-fishing-games-guide__text-content {
  flex: 1;
}

.page-blog-fishing-games-guide__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-blog-fishing-games-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Min size for content images */
  min-height: 200px;
}

.page-blog-fishing-games-guide__image-center {
  margin: 30px auto;
  display: block;
}

.page-blog-fishing-games-guide__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-fishing-games-guide__card {
  background: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-fishing-games-guide__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #57E38D; /* Glow color for highlights */
}

.page-blog-fishing-games-guide__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-fishing-games-guide__faq-list {
  margin-top: 40px;
}

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

.page-blog-fishing-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  list-style: none; /* For details/summary */
}

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

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

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

.page-blog-fishing-games-guide__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-fishing-games-guide__hero-title {
    font-size: clamp(2em, 5vw, 2.5em);
  }
  .page-blog-fishing-games-guide__hero-description {
    font-size: clamp(1em, 2.5vw, 1.1em);
  }
  .page-blog-fishing-games-guide__content-row {
    flex-direction: column;
    gap: 20px;
  }
  .page-blog-fishing-games-guide__content-row--reverse {
    flex-direction: column;
  }
  .page-blog-fishing-games-guide__text-content, .page-blog-fishing-games-guide__image-wrapper {
    width: 100%;
    flex: none;
  }
}

@media (max-width: 768px) {
  .page-blog-fishing-games-guide__hero-section {
    margin-bottom: 20px;
  }
  .page-blog-fishing-games-guide__hero-content {
    padding: 30px 15px;
  }
  .page-blog-fishing-games-guide__hero-title {
    font-size: clamp(1.8em, 6vw, 2.2em);
  }
  .page-blog-fishing-games-guide__hero-description {
    font-size: clamp(0.9em, 3vw, 1em);
    margin-bottom: 20px;
  }
  .page-blog-fishing-games-guide__btn-primary,
  .page-blog-fishing-games-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    margin: 0;
    margin-bottom: 10px;
  }
  .page-blog-fishing-games-guide__btn-secondary {
    margin-left: 0 !important;
  }
  .page-blog-fishing-games-guide__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: 20px;
    padding-top: 30px;
  }
  .page-blog-fishing-games-guide__intro-section,
  .page-blog-fishing-games-guide__game-overview,
  .page-blog-fishing-games-guide__why-choose,
  .page-blog-fishing-games-guide__popular-games,
  .page-blog-fishing-games-guide__gameplay-guide,
  .page-blog-fishing-games-guide__advanced-strategies,
  .page-blog-fishing-games-guide__new-player-tips,
  .page-blog-fishing-games-guide__security,
  .page-blog-fishing-games-guide__promotions,
  .page-blog-fishing-games-guide__faq-section,
  .page-blog-fishing-games-guide__conclusion {
    padding: 40px 0;
  }
  .page-blog-fishing-games-guide__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-fishing-games-guide__text-block,
  .page-blog-fishing-games-guide__list-item {
    font-size: 1em;
  }
  .page-blog-fishing-games-guide__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-fishing-games-guide__card {
    padding: 20px;
  }
  .page-blog-fishing-games-guide__card-title {
    font-size: 1.2em;
  }
  .page-blog-fishing-games-guide__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-blog-fishing-games-guide__faq-answer {
    padding: 0 20px 15px;
  }
  .page-blog-fishing-games-guide__grid-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-fishing-games-guide__hero-content {
    padding: 20px 10px;
  }
  .page-blog-fishing-games-guide__hero-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-blog-fishing-games-guide__hero-description {
    font-size: clamp(0.85em, 4vw, 0.95em);
  }
  .page-blog-fishing-games-guide__section-title {
    font-size: clamp(1.3em, 6vw, 1.8em);
  }
  .page-blog-fishing-games-guide__btn-primary,
  .page-blog-fishing-games-guide__btn-secondary {
    margin-bottom: 10px;
  }
}