.page-fishing-games-guide {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Body background is #0a0a0a (dark), so text should be light */
  background-color: #0a0a0a; /* Ensure consistency with body background */
  line-height: 1.6;
}

.page-fishing-games-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  min-height: 500px;
}

.page-fishing-games-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-fishing-games-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-fishing-games-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games-guide__intro-text {
  font-size: 1.15rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-fishing-games-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-fishing-games-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-fishing-games-guide__btn-primary:hover {
  background-color: #1e87b6;
  transform: translateY(-2px);
}

.page-fishing-games-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-fishing-games-guide__section {
  padding: 60px 20px;
}

.page-fishing-games-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-games-guide__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-fishing-games-guide__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games-guide__text-block {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-fishing-games-guide__text-block p {
  margin-bottom: 1em;
}

.page-fishing-games-guide__text-block ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 1em;
}

.page-fishing-games-guide__text-block li {
  margin-bottom: 0.5em;
}

.page-fishing-games-guide__text-block a {
  color: #26A9E0;
  text-decoration: none;
}

.page-fishing-games-guide__text-block a:hover {
  text-decoration: underline;
}

.page-fishing-games-guide__image-content,
.page-fishing-games-guide__image-cta {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games-guide__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  list-style: none; /* Hide default marker */
}

.page-fishing-games-guide__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit */
}

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

.page-fishing-games-guide__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-fishing-games-guide__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.05rem;
  color: #e0e0e0;
}

.page-fishing-games-guide__call-to-action {
  text-align: center;
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}

.page-fishing-games-guide__image-cta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-fishing-games-guide__cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-fishing-games-guide {
    font-size: 15px;
  }

  .page-fishing-games-guide__hero-section {
    padding: 10px 15px 40px;
    min-height: 400px;
  }

  .page-fishing-games-guide__main-title {
    font-size: 2rem;
  }

  .page-fishing-games-guide__intro-text {
    font-size: 1rem;
  }

  .page-fishing-games-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games-guide__btn-primary,
  .page-fishing-games-guide__btn-secondary {
    width: 100% !important; /* Ensure buttons take full width */
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-fishing-games-guide__section {
    padding: 40px 15px;
  }

  .page-fishing-games-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-fishing-games-guide__sub-title {
    font-size: 1.3rem;
    margin-top: 25px;
  }

  .page-fishing-games-guide__text-block {
    font-size: 1rem;
  }

  .page-fishing-games-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-guide__section,
  .page-fishing-games-guide__card,
  .page-fishing-games-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-guide__faq-item summary {
    font-size: 1.1rem;
    padding: 15px;
  }

  .page-fishing-games-guide__faq-answer {
    padding: 0 15px 15px;
  }

  .page-fishing-games-guide__call-to-action {
    padding: 60px 15px;
  }
}