.page-game-guides-fishing-game-tips {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-game-guides-fishing-game-tips__hero {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-fishing-game-tips__hero-content {
  z-index: 10;
  position: relative;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-game-guides-fishing-game-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-guides-fishing-game-tips__hero-title .highlight {
  color: #FFCC00;
}

.page-game-guides-fishing-game-tips__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-guides-fishing-game-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
  background-size: cover;
  background-position: center;
  filter: grayscale(50%) blur(3px);
}

.page-game-guides-fishing-game-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-game-guides-fishing-game-tips__section {
  padding: 60px 0;
}

.page-game-guides-fishing-game-tips__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-game-guides-fishing-game-tips__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-guides-fishing-game-tips__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-guides-fishing-game-tips__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFCC00;
  padding-left: 15px;
}

.page-game-guides-fishing-game-tips__intro p,
.page-game-guides-fishing-game-tips__mechanics p,
.page-game-guides-fishing-game-tips__strategy p,
.page-game-guides-fishing-game-tips__advanced-tips p,
.page-game-guides-fishing-game-tips__responsible-gaming p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-guides-fishing-game-tips__intro p a,
.page-game-guides-fishing-game-tips__cta p a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
}

.page-game-guides-fishing-game-tips__intro p a:hover,
.page-game-guides-fishing-game-tips__cta p a:hover {
  text-decoration: underline;
  color: #FFCC00;
}

.page-game-guides-fishing-game-tips__strategy ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

.page-game-guides-fishing-game-tips__strategy ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-game-guides-fishing-game-tips__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-fishing-game-tips__image-small {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides-fishing-game-tips__image-medium {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-game-guides-fishing-game-tips__btn-primary,
.page-game-guides-fishing-game-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-game-guides-fishing-game-tips__btn-primary {
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.page-game-guides-fishing-game-tips__btn-primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-game-guides-fishing-game-tips__btn-secondary {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
}

.page-game-guides-fishing-game-tips__btn-secondary:hover {
  background-color: #003366;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-game-guides-fishing-game-tips__cta-inner {
  text-align: center;
  background-color: #003366;
  color: #ffffff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-game-guides-fishing-game-tips__cta-inner .page-game-guides-fishing-game-tips__section-title {
  color: #ffffff;
}

.page-game-guides-fishing-game-tips__cta-inner .page-game-guides-fishing-game-tips__section-title::after {
  background-color: #FFCC00;
}

.page-game-guides-fishing-game-tips__cta-inner p {
  color: #e0e0e0;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-game-guides-fishing-game-tips__cta-inner .page-game-guides-fishing-game-tips__btn-primary {
  background-color: #FFCC00;
  color: #003366;
  margin-right: 20px;
}

.page-game-guides-fishing-game-tips__cta-inner .page-game-guides-fishing-game-tips__btn-secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-game-guides-fishing-game-tips__cta-inner .page-game-guides-fishing-game-tips__btn-secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-game-guides-fishing-game-tips__btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-game-guides-fishing-game-tips .keyword-highlight {
  color: #003366;
  font-weight: bold;
}

.page-game-guides-fishing-game-tips__responsible-gaming {
  background-color: #e6f0f7; /* Light blue background for emphasis */
  border-top: 3px solid #FFCC00;
}

.page-game-guides-fishing-game-tips__responsible-gaming p {
  font-style: italic;
  text-align: center;
  max-width: 800px;
  margin: 20px auto;
  color: #003366;
}

@media (max-width: 992px) {
  .page-game-guides-fishing-game-tips__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides-fishing-game-tips__hero-subtitle {
    font-size: 1.3em;
  }
  .page-game-guides-fishing-game-tips__section-title {
    font-size: 2em;
  }
  .page-game-guides-fishing-game-tips__sub-title {
    font-size: 1.5em;
  }
  .page-game-guides-fishing-game-tips__intro p,
  .page-game-guides-fishing-game-tips__mechanics p,
  .page-game-guides-fishing-game-tips__strategy p,
  .page-game-guides-fishing-game-tips__advanced-tips p,
  .page-game-guides-fishing-game-tips__responsible-gaming p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-game-guides-fishing-game-tips__hero {
    padding: 60px 0;
  }
  .page-game-guides-fishing-game-tips__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides-fishing-game-tips__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-guides-fishing-game-tips__section {
    padding: 40px 0;
  }
  .page-game-guides-fishing-game-tips__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-fishing-game-tips__sub-title {
    font-size: 1.3em;
  }
  .page-game-guides-fishing-game-tips__btn-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides-fishing-game-tips__cta-inner .page-game-guides-fishing-game-tips__btn-primary,
  .page-game-guides-fishing-game-tips__cta-inner .page-game-guides-fishing-game-tips__btn-secondary {
    margin-right: 0;
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-fishing-game-tips__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides-fishing-game-tips__hero-subtitle {
    font-size: 1em;
  }
  .page-game-guides-fishing-game-tips__section-title {
    font-size: 1.5em;
  }
  .page-game-guides-fishing-game-tips__sub-title {
    font-size: 1.2em;
  }
  .page-game-guides-fishing-game-tips__btn-primary,
  .page-game-guides-fishing-game-tips__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-game-guides-fishing-game-tips__cta-inner {
    padding: 30px 20px;
  }
}