.page-resources-nohu90-fishing-game-tips {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for text on dark background */
  background-color: #1A1A2E; /* Dark blue/near black background */
  line-height: 1.6;
}

.page-resources-nohu90-fishing-game-tips__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #DC143C 100%); /* Deep red accent */
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-resources-nohu90-fishing-game-tips__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-resources-nohu90-fishing-game-tips__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-nohu90-fishing-game-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-resources-nohu90-fishing-game-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
  z-index: 0;
}

.page-resources-nohu90-fishing-game-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
}

.page-resources-nohu90-fishing-game-tips__section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #22223B; /* Slightly lighter dark background for sections */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
}

.page-resources-nohu90-fishing-game-tips__section--intro {
  background-color: #1A1A2E;
}

.page-resources-nohu90-fishing-game-tips__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 3px solid #DC143C;
  padding-bottom: 15px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.page-resources-nohu90-fishing-game-tips__sub-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #DC143C;
  padding-left: 15px;
}

.page-resources-nohu90-fishing-game-tips__section p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-resources-nohu90-fishing-game-tips__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-resources-nohu90-fishing-game-tips__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-nohu90-fishing-game-tips__list strong {
  color: #FFD700;
}

.page-resources-nohu90-fishing-game-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid #DC143C;
}

.page-resources-nohu90-fishing-game-tips__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 10px;
}

.page-resources-nohu90-fishing-game-tips__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A1A2E; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-resources-nohu90-fishing-game-tips__btn--primary:hover {
  background-color: #DC143C; /* Deep red on hover */
  color: #FFFFFF;
  border-color: #DC143C;
  transform: translateY(-3px);
}

.page-resources-nohu90-fishing-game-tips__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-resources-nohu90-fishing-game-tips__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  transform: translateY(-3px);
}

.page-resources-nohu90-fishing-game-tips__cta-buttons {
  text-align: center;
  margin-top: 40px;
}

.page-resources-nohu90-fishing-game-tips__section--cta {
  background: linear-gradient(45deg, #DC143C, #1A1A2E);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
}

.page-resources-nohu90-fishing-game-tips__section--cta .page-resources-nohu90-fishing-game-tips__section-title {
  color: #FFD700;
  border-bottom-color: #FFD700;
}

.page-resources-nohu90-fishing-game-tips__section--cta p {
  color: #F0F0F0;
  font-size: 1.15em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-nohu90-fishing-game-tips__hero-title {
    font-size: 2.5em;
  }

  .page-resources-nohu90-fishing-game-tips__hero-description,
  .page-resources-nohu90-fishing-game-tips__section p,
  .page-resources-nohu90-fishing-game-tips__list li {
    font-size: 1em;
  }

  .page-resources-nohu90-fishing-game-tips__section-title {
    font-size: 1.8em;
  }

  .page-resources-nohu90-fishing-game-tips__sub-title {
    font-size: 1.4em;
  }

  .page-resources-nohu90-fishing-game-tips__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-nohu90-fishing-game-tips__hero-title {
    font-size: 2em;
  }

  .page-resources-nohu90-fishing-game-tips__section {
    padding: 20px 15px;
  }

  .page-resources-nohu90-fishing-game-tips__btn {
    display: block;
    width: 90%;
    margin: 10px auto;
  }
}