.page-fishing-games {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

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

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small padding, body handles --header-offset */
  margin-bottom: 40px;
  background-color: #F4F7FB;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 15px;
}

.page-fishing-games__hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-fishing-games__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-fishing-games__text-content {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
  color: #1F2D3D;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-fishing-games__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__secondary-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: transparent;
  color: #2F6BFF;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid #2F6BFF;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-fishing-games__secondary-cta-button:hover {
  background-color: #2F6BFF;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-fishing-games__intro-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-fishing-games__features-section {
  padding: 60px 0;
  margin-bottom: 40px;
  background-color: #F4F7FB;
}

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

.page-fishing-games__feature-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-fishing-games__feature-image {
  width: 100%;
  height: 250px; /* Ensure minimum size is met, aspect ratio maintained by object-fit */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}

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

.page-fishing-games__tips-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 30px auto;
  max-width: 800px;
}

.page-fishing-games__tip-item {
  background-color: #F4F7FB;
  border-left: 5px solid #2F6BFF;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: left;
}

.page-fishing-games__tip-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.page-fishing-games__tip-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-fishing-games__cta-button--small {
  padding: 12px 25px;
  font-size: 1rem;
}

.page-fishing-games__cta-final-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-fishing-games__cta-final-section .page-fishing-games__section-title,
.page-fishing-games__cta-final-section .page-fishing-games__text-content {
  color: #FFFFFF;
}

.page-fishing-games__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-fishing-games__cta-final-section .page-fishing-games__cta-button {
  background: #FFFFFF;
  color: #2F6BFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-final-section .page-fishing-games__cta-button:hover {
  background: #E0E0E0;
  color: #2F6BFF;
}

.page-fishing-games__cta-final-section .page-fishing-games__secondary-cta-button {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.page-fishing-games__cta-final-section .page-fishing-games__secondary-cta-button:hover {
  background-color: #FFFFFF;
  color: #2F6BFF;
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    margin-bottom: 20px;
  }
  .page-fishing-games__main-title {
    font-size: 2rem;
  }
  .page-fishing-games__hero-description {
    font-size: 1rem;
  }
  .page-fishing-games__section-title {
    font-size: 1.8rem;
  }
  .page-fishing-games__text-content {
    font-size: 0.95rem;
  }
  .page-fishing-games__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-fishing-games__secondary-cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-fishing-games__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__feature-image {
    height: 200px;
  }
  .page-fishing-games__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__button-group .page-fishing-games__cta-button,
  .page-fishing-games__button-group .page-fishing-games__secondary-cta-button {
    width: 100%;
    max-width: 300px; /* To prevent extremely wide buttons on narrow screens */
    margin: 0 auto;
  }

  /* Ensure content area images do not overflow */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 1.7rem;
  }
  .page-fishing-games__section-title {
    font-size: 1.5rem;
  }
  .page-fishing-games__feature-title {
    font-size: 1.2rem;
  }
  .page-fishing-games__tip-title {
    font-size: 1.1rem;
  }
}