.page-fishing-games {
  background-color: #F4F7FB;
  color: #1F2D3D;
  padding-top: 10px; /* Small padding to avoid content touching header, body handles main offset */
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__hero-image {
  width: 1200px;
  height: 675px;
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

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

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

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

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__features-section,
.page-fishing-games__gameplay-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-games__section-title {
  font-weight: 700;
  line-height: 1.3;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-fishing-games__feature-card,
.page-fishing-games__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

.page-fishing-games__feature-description,
.page-fishing-games__game-description {
  color: #1F2D3D;
  line-height: 1.6;
}

.page-fishing-games__gameplay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-fishing-games__gameplay-image {
  width: 800px;
  height: 600px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-fishing-games__gameplay-steps ol {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 600px;
}

.page-fishing-games__gameplay-steps li {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #1F2D3D;
  line-height: 1.6;
  font-size: 1.05em;
}

.page-fishing-games__gameplay-steps strong {
  color: #2F6BFF;
}

.page-fishing-games__secondary-cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background-color: #6FA3FF;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-fishing-games__secondary-cta-button:hover {
  background-color: #4A8BFF;
}

.page-fishing-games__game-image {
  width: 600px;
  height: 400px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-fishing-games__game-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  margin-top: 15px;
  transition: transform 0.3s ease;
}

.page-fishing-games__game-button:hover {
  transform: translateY(-2px);
}

.page-fishing-games__cta-section {
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.page-fishing-games__cta-title {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-fishing-games__cta-description {
  font-size: 1.15em;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #E0EFFF;
}

.page-fishing-games__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

  .page-fishing-games__main-title {
    font-size: 1.8em; /* Adjusted for mobile, still not fixed large */
  }

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

  .page-fishing-games__features-section,
  .page-fishing-games__gameplay-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__cta-section {
    padding: 40px 15px;
  }

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

  .page-fishing-games__features-grid,
  .page-fishing-games__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__gameplay-content {
    flex-direction: column;
  }

  .page-fishing-games__gameplay-image {
    width: 100%; /* Ensure mobile images don't overflow */
    height: auto; /* Maintain aspect ratio */
  }

  .page-fishing-games__gameplay-steps ol {
    max-width: 100%;
  }

  .page-fishing-games__gameplay-steps li {
    padding: 15px;
  }

  .page-fishing-games__game-image {
    width: 100%; /* Ensure mobile images don't overflow */
    height: auto; /* Maintain aspect ratio */
  }

  .page-fishing-games__cta-title {
    font-size: 1.6em;
  }

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

  .page-fishing-games__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

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