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

.page-blog-fishing-game-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Minimal top padding */
  margin-bottom: 40px;
  background-color: #0a0909; /* Dark background for hero */
  color: #FFFFFF;
}

.page-blog-fishing-game-guide__hero-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.page-blog-fishing-game-guide__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to slightly overlap the image for visual flow, but not text ON image */
  position: relative; /* Ensure it's above other elements if any */
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  margin-bottom: 40px;
}

.page-blog-fishing-game-guide__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #6FA3FF; /* Highlighted color */
  margin-bottom: 15px;
  max-width: 100%;
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Using clamp for responsive H1 */
}

.page-blog-fishing-game-guide__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0E0E0;
}

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

.page-blog-fishing-game-guide__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-blog-fishing-game-guide__section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.page-blog-fishing-game-guide__section-title {
  font-size: 2.5rem;
  color: #2F6BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-fishing-game-guide__paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1F2D3D;
  margin-bottom: 20px;
}

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

.page-blog-fishing-game-guide__feature-card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-fishing-game-guide__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-blog-fishing-game-guide__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-fishing-game-guide__feature-title {
  font-size: 1.5rem;
  color: #2F6BFF;
  margin-bottom: 10px;
  font-weight: bold;
}

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

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

.page-blog-fishing-game-guide__tip-item {
  background-color: #F4F7FB;
  border-left: 5px solid #6FA3FF;
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-blog-fishing-game-guide__tip-title {
  font-size: 1.4rem;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-fishing-game-guide__promotions-button {
  margin-top: 30px;
  text-align: center;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-fishing-game-guide__container {
    max-width: 960px;
  }
}

@media (max-width: 768px) {
  .page-blog-fishing-game-guide__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }

  .page-blog-fishing-game-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-fishing-game-guide__hero-description {
    font-size: 1rem;
  }

  .page-blog-fishing-game-guide__section {
    padding: 40px 0;
  }

  .page-blog-fishing-game-guide__section-title {
    font-size: 2rem;
  }

  .page-blog-fishing-game-guide__features-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-fishing-game-guide__feature-image {
    height: 200px; /* Adjust height for smaller screens */
  }

  /* Ensure all images within main content are responsive */
  .page-blog-fishing-game-guide img {
    max-width: 100%;
    height: auto;
  }

  /* Content area image size enforcement */
  .page-blog-fishing-game-guide__feature-image,
  .page-blog-fishing-game-guide__hero-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-blog-fishing-game-guide__hero-content {
    margin-top: -30px;
    padding: 20px 10px;
  }

  .page-blog-fishing-game-guide__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

.page-blog-fishing-game-guide__cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .page-blog-fishing-game-guide__section-title {
    font-size: 1.8rem;
  }

  .page-blog-fishing-game-guide__paragraph,
  .page-blog-fishing-game-guide__feature-description,
  .page-blog-fishing-game-guide__tip-title {
    font-size: 0.95rem;
  }

  .page-blog-fishing-game-guide__feature-image {
    height: 180px;
    min-width: 200px;
    min-height: 180px;
  }

  .page-blog-fishing-game-guide__tip-item {
    padding: 20px;
  }
}