.page-blog-top-5-fishing-games-on-39win {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #F5F7FA; /* Background color from custom palette */
}

.page-blog-top-5-fishing-games-on-39win__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-top-5-fishing-games-on-39win__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 50px;
  color: #ffffff;
  overflow: hidden;
}

.page-blog-top-5-fishing-games-on-39win__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-top-5-fishing-games-on-39win__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-top-5-fishing-games-on-39win__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.page-blog-top-5-fishing-games-on-39win__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-top-5-fishing-games-on-39win__description {
  font-size: clamp(1em, 1.5vw, 1.3em);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-top-5-fishing-games-on-39win__section {
  padding: 60px 0;
}

.page-blog-top-5-fishing-games-on-39win__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #E53935; /* Brand primary color for titles */
}

.page-blog-top-5-fishing-games-on-39win__content-block {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
}

.page-blog-top-5-fishing-games-on-39win__content-block p {
  margin-bottom: 1em;
}

.page-blog-top-5-fishing-games-on-39win__content-block strong {
  color: #E53935; /* Highlight keywords with primary color */
}

.page-blog-top-5-fishing-games-on-39win__content-block a {
  color: #FF5A4F;
  text-decoration: underline;
}

.page-blog-top-5-fishing-games-on-39win__content-block a:hover {
  color: #E53935;
}

.page-blog-top-5-fishing-games-on-39win__image-inline {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-top-5-fishing-games-on-39win__checklist,
.page-blog-top-5-fishing-games-on-39win__strategy-list,
.page-blog-top-5-fishing-games-on-39win__promotion-list,
.page-blog-top-5-fishing-games-on-39win__steps-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-blog-top-5-fishing-games-on-39win__checklist li,
.page-blog-top-5-fishing-games-on-39win__strategy-list li,
.page-blog-top-5-fishing-games-on-39win__promotion-list li,
.page-blog-top-5-fishing-games-on-39win__steps-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-blog-top-5-fishing-games-on-39win__checklist li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

.page-blog-top-5-fishing-games-on-39win__strategy-list li::before {
  content: '💡';
  position: absolute;
  left: 0;
  top: 0;
}

.page-blog-top-5-fishing-games-on-39win__promotion-list li::before {
  content: '🎁';
  position: absolute;
  left: 0;
  top: 0;
}

.page-blog-top-5-fishing-games-on-39win__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  background-color: #E53935;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.8em;
  font-weight: bold;
}

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

.page-blog-top-5-fishing-games-on-39win__card {
  background: #FFFFFF; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #333333; /* Text Main */
}

.page-blog-top-5-fishing-games-on-39win__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}