.page-fishing-games {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 20px;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games__hero-content-wrapper {
  width: 100%;
  max-width: 900px;
}

.page-fishing-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 15px;
}

.page-fishing-games__hero-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #1F2D3D;
}

.page-fishing-games__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-fishing-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-fishing-games__btn--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
}

.page-fishing-games__btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fishing-games__btn--secondary {
  background-color: #FFFFFF;
  color: #2F6BFF;
  border: 1px solid #2F6BFF;
}

.page-fishing-games__btn--secondary:hover {
  background-color: #2F6BFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-fishing-games__features-section,
.page-fishing-games__gameplay-guide,
.page-fishing-games__faq-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-fishing-games__feature-card {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #F4F7FB;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 15px;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-fishing-games__feature-text {
  font-size: 1em;
  color: #1F2D3D;
  line-height: 1.6;
}

.page-fishing-games__guide-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-fishing-games__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #1F2D3D;
}

.page-fishing-games__guide-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-fishing-games__list-item {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #1F2D3D;
}

.page-fishing-games__list-item strong {
  color: #000000;
}

.page-fishing-games__btn--centered {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.page-fishing-games__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__faq-item {
  margin-bottom: 20px;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  background-color: #F4F7FB;
  padding: 15px 20px;
  font-size: 1.2em;
  color: #000000;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: #E6ECF5;
}

.page-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #2F6BFF;
}

/* For an active state, if JS is added to toggle */
/* .page-fishing-games__faq-question.active::after { content: '-'; } */

.page-fishing-games__faq-answer {
  padding: 15px 20px;
  font-size: 1em;
  color: #1F2D3D;
  line-height: 1.6;
  background-color: #FFFFFF;
  display: none; /* Hidden by default, JS would toggle this */
}

@media (max-width: 1024px) {
  .page-fishing-games__hero-section {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-fishing-games__features-section,
  .page-fishing-games__gameplay-guide,
  .page-fishing-games__faq-section {
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 15px;
  }

  .page-fishing-games__main-title {
    font-size: 2em;
  }

  .page-fishing-games__hero-description {
    font-size: 1em;
  }

  .page-fishing-games__hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-fishing-games__btn {
    width: 100%;
    padding: 10px 20px;
  }

  .page-fishing-games__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-fishing-games__features-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__feature-icon {
    max-width: 200px; /* Ensure images are not smaller than 200px */
  }

  .page-fishing-games__feature-title {
    font-size: 1.3em;
  }

  .page-fishing-games__text-block,
  .page-fishing-games__list-item,
  .page-fishing-games__faq-answer {
    font-size: 0.95em;
  }

  .page-fishing-games__faq-question {
    font-size: 1.1em;
    padding: 12px 15px;
  }

  /* Ensure all content area images are responsive */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 1.7em;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
}