.page-blog-new-fishing-game-review {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--Text-Main, #F3F8FF);
  background-color: var(--Deep-Navy, #08162B); /* Body background from shared.css, ensuring text contrast */
}

.page-blog-new-fishing-game-review__hero-section {
  position: relative;
  padding-top: 10px; /* Aligns with common rule: 10px top padding if body has shared padding */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-blog-new-fishing-game-review__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for desktop */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-new-fishing-game-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-blog-new-fishing-game-review__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  z-index: 2;
  color: #ffffff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text on image */
  border-radius: 10px;
}

.page-blog-new-fishing-game-review__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--Text-Main, #F3F8FF);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-new-fishing-game-review__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 30px;
  color: var(--Text-Secondary, #AFC4E8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-new-fishing-game-review__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-new-fishing-game-review__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
}

.page-blog-new-fishing-game-review__cta-button--secondary {
  background: transparent;
  border: 2px solid var(--Glow, #4FA8FF);
  color: var(--Glow, #4FA8FF);
}

.page-blog-new-fishing-game-review__cta-button--secondary:hover {
  background: var(--Glow, #4FA8FF);
  color: #ffffff;
}

.page-blog-new-fishing-game-review__btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--Glow, #4FA8FF);
  color: var(--Glow, #4FA8FF);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  margin-top: 15px;
}

.page-blog-new-fishing-game-review__btn-secondary:hover {
  background: var(--Glow, #4FA8FF);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-new-fishing-game-review__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--Card-BG, #10233F); /* Inner content background */
  border-radius: 15px;
  margin-top: -40px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-blog-new-fishing-game-review__section-title {
  font-size: 2.5rem;
  color: var(--Gold, #F2C14E);
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid var(--Divider, #1B3357);
  padding-bottom: 15px;
  margin-top: 40px;
}

.page-blog-new-fishing-game-review__text-block {
  font-size: 1.1rem;
  color: var(--Text-Secondary, #AFC4E8);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-new-fishing-game-review__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-blog-new-fishing-game-review__feature-card {
  background-color: var(--Deep-Navy, #08162B);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-blog-new-fishing-game-review__feature-card:hover {
  transform: translateY(-5px);
}

.page-blog-new-fishing-game-review__feature-title {
  font-size: 1.6rem;
  color: var(--Gold, #F2C14E);
  margin-bottom: 15px;
}

.page-blog-new-fishing-game-review__feature-description {
  font-size: 1rem;
  color: var(--Text-Secondary, #AFC4E8);
  margin-bottom: 20px;
}

.page-blog-new-fishing-game-review__feature-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 15px;
}

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

.page-blog-new-fishing-game-review__step-card {
  background-color: var(--Deep-Navy, #08162B);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-blog-new-fishing-game-review__step-title {
  font-size: 1.8rem;
  color: var(--Glow, #4FA8FF);
  margin-bottom: 15px;
}

.page-blog-new-fishing-game-review__step-description {
  font-size: 1rem;
  color: var(--Text-Secondary, #AFC4E8);
  margin-bottom: 20px;
}

.page-blog-new-fishing-game-review__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-new-fishing-game-review__advantage-item {
  background-color: var(--Deep-Navy, #08162B);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-blog-new-fishing-game-review__advantage-title {
  font-size: 1.6rem;
  color: var(--Gold, #F2C14E);
  margin-bottom: 10px;
}

.page-blog-new-fishing-game-review__advantage-description {
  font-size: 1rem;
  color: var(--Text-Secondary, #AFC4E8);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-new-fishing-game-review__hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-new-fishing-game-review__hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }

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

  .page-blog-new-fishing-game-review__content-area {
    padding: 40px 15px;
  }

  .page-blog-new-fishing-game-review__features-grid,
  .page-blog-new-fishing-game-review__guide-steps,
  .page-blog-new-fishing-game-review__advantages-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-new-fishing-game-review {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-new-fishing-game-review__hero-section {
    padding-top: 10px !important; /* HERO top padding */
    padding-bottom: 40px;
  }

  .page-blog-new-fishing-game-review__hero-content {
    position: static; /* Remove absolute positioning on mobile */
    transform: none; /* Remove transform on mobile */
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6); /* Slightly darker overlay for better contrast */
    border-radius: 0;
  }

  .page-blog-new-fishing-game-review__hero-image-wrapper {
    max-height: 300px;
  }

  .page-blog-new-fishing-game-review__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 10px;
  }

  .page-blog-new-fishing-game-review__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 20px;
  }

  .page-blog-new-fishing-game-review__cta-button,
  .page-blog-new-fishing-game-review__cta-button--secondary,
  .page-blog-new-fishing-game-review__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 10px; /* Add some space if stacked */
  }

  .page-blog-new-fishing-game-review__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 30px;
  }

  .page-blog-new-fishing-game-review__text-block {
    font-size: 1rem;
    padding: 0 10px;
  }

  .page-blog-new-fishing-game-review__content-area {
    padding: 30px 10px;
    margin-top: -30px;
  }

  .page-blog-new-fishing-game-review__content-image,
  .page-blog-new-fishing-game-review__feature-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* General image and container rules */
  .page-blog-new-fishing-game-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-new-fishing-game-review__introduction-section,
  .page-blog-new-fishing-game-review__features-section,
  .page-blog-new-fishing-game-review__guide-section,
  .page-blog-new-fishing-game-review__promotions-section,
  .page-blog-new-fishing-game-review__why-choose-section,
  .page-blog-new-fishing-game-review__conclusion-section,
  .page-blog-new-fishing-game-review__feature-card,
  .page-blog-new-fishing-game-review__step-card,
  .page-blog-new-fishing-game-review__advantage-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 10px;
    padding-right: 10px;
  }

  .page-blog-new-fishing-game-review__features-grid,
  .page-blog-new-fishing-game-review__guide-steps,
  .page-blog-new-fishing-game-review__advantages-list {
    grid-template-columns: 1fr; /* Stack cards vertically */
    gap: 20px;
  }

  .page-blog-new-fishing-game-review__feature-title,
  .page-blog-new-fishing-game-review__step-title,
  .page-blog-new-fishing-game-review__advantage-title {
    font-size: 1.4rem;
  }

  .page-blog-new-fishing-game-review__feature-description,
  .page-blog-new-fishing-game-review__step-description,
  .page-blog-new-fishing-game-review__advantage-description {
    font-size: 0.95rem;
  }
}