.page-fishing-games {
  padding-top: 10px; /* Small top padding for content, body handles --header-offset */
  background-color: #F4F7FB; /* Background color */
  color: #1F2D3D; /* Text Main color */
}

.page-fishing-games__section {
  padding: 40px 0;
}

.page-fishing-games__section--dark-bg {
  background-color: #f0f3f8; /* Slightly darker background for contrast */
}

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

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Blue White gradient */
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

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

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-fishing-games__hero-title {
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}

.page-fishing-games__hero-description {
  color: #E0E7FF;
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-fishing-games__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-fishing-games__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games__button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #FFFFFF;
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__button--primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

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

.page-fishing-games__button--secondary:hover {
  background-color: #E0E7FF;
  color: #1F2D3D;
}

.page-fishing-games__section-title {
  color: #1F2D3D; /* Text Main color */
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-fishing-games__section--dark-bg .page-fishing-games__section-title {
  color: #000000; /* Custom Color_1776249996415 */
}

.page-fishing-games__paragraph {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #1F2D3D;
}

.page-fishing-games__section--dark-bg .page-fishing-games__paragraph {
  color: #1F2D3D;
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-fishing-games__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__feature-card {
  background-color: #FFFFFF; /* Card BG color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border color */
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__feature-icon {
  width: 100%; /* Ensure large images */
  max-width: 400px; /* Max width for feature image */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

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

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

.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__step-item {
  background-color: #FFFFFF; /* Card BG color */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #2F6BFF;
}

.page-fishing-games__step-title {
  font-size: 1.3em;
  color: #2F6BFF;
  margin-bottom: 10px;
}

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

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  background-color: #FFFFFF; /* Card BG color */
  border: 1px solid #D6E2FF; /* Border color */
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-fishing-games__faq-question {
  font-size: 1.2em;
  color: #2F6BFF;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-fishing-games__faq-answer {
  font-size: 1em;
  color: #1F2D3D;
  line-height: 1.6;
  display: block; /* Ensure it's visible by default for this static page */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 40px 20px;
  }

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

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

  .page-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__button {
    width: 100%;
    max-width: 280px;
  }

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

  .page-fishing-games__paragraph,
  .page-fishing-games__feature-description,
  .page-fishing-games__step-description,
  .page-fishing-games__faq-answer {
    font-size: 0.95em;
  }

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

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

  .page-fishing-games__step-title {
    font-size: 1.1em;
  }

  .page-fishing-games__faq-question {
    font-size: 1.1em;
  }

  .page-fishing-games__image,
  .page-fishing-games__feature-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size even on mobile */
    min-height: 200px; /* Enforce min size even on mobile */
  }
}