/* style/resources-58win1-fishing-game-guide.css */
.page-resources-58win1-fishing-game-guide {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for text on dark background */
  background-color: #0A2342; /* Main dark blue background */
}

.page-resources-58win1-fishing-game-guide__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-resources-58win1-fishing-game-guide__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-resources-58win1-fishing-game-guide__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Auxiliary gold for titles */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-58win1-fishing-game-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-resources-58win1-fishing-game-guide__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-58win1-fishing-game-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-58win1-fishing-game-guide__btn--primary {
  background-color: #FFD700; /* Auxiliary gold for primary button */
  color: #0A2342; /* Dark blue text on gold */
}

.page-resources-58win1-fishing-game-guide__btn--primary:hover {
  background-color: #E0B500;
  transform: translateY(-2px);
}

.page-resources-58win1-fishing-game-guide__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-58win1-fishing-game-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-resources-58win1-fishing-game-guide__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.15;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.page-resources-58win1-fishing-game-guide__hero-image {
  max-width: 60%;
  height: auto;
  object-fit: contain;
  transform: translateX(10%) translateY(10%);
}

.page-resources-58win1-fishing-game-guide__section {
  padding: 60px 20px;
  background-color: #0F2D52;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-58win1-fishing-game-guide__section:nth-of-type(even) {
  background-color: #1A3A60;
}

.page-resources-58win1-fishing-game-guide__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-58win1-fishing-game-guide__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-58win1-fishing-game-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-58win1-fishing-game-guide__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #FFD700;
  padding-left: 15px;
}

.page-resources-58win1-fishing-game-guide__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-resources-58win1-fishing-game-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-resources-58win1-fishing-game-guide__list li {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #E0E0E0;
}

.page-resources-58win1-fishing-game-guide__list li::before {
  content: '\2713'; /* Checkmark icon */
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-resources-58win1-fishing-game-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-58win1-fishing-game-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-58win1-fishing-game-guide__hero-title {
    font-size: 2.5em;
  }
  .page-resources-58win1-fishing-game-guide__hero-description {
    font-size: 1.1em;
  }
  .page-resources-58win1-fishing-game-guide__section-title {
    font-size: 2em;
  }
  .page-resources-58win1-fishing-game-guide__sub-title {
    font-size: 1.5em;
  }
  .page-resources-58win1-fishing-game-guide__hero-image-wrapper {
    display: none; /* Hide large image on smaller screens for better performance */
  }
}

@media (max-width: 768px) {
  .page-resources-58win1-fishing-game-guide__hero {
    padding: 60px 15px;
  }
  .page-resources-58win1-fishing-game-guide__hero-title {
    font-size: 2em;
  }
  .page-resources-58win1-fishing-game-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-58win1-fishing-game-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-58win1-fishing-game-guide__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-resources-58win1-fishing-game-guide__section {
    padding: 40px 15px;
  }
  .page-resources-58win1-fishing-game-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-58win1-fishing-game-guide__sub-title {
    font-size: 1.3em;
  }
  .page-resources-58win1-fishing-game-guide__paragraph,
  .page-resources-58win1-fishing-game-guide__list li {
    font-size: 0.95em;
  }
  .page-resources-58win1-fishing-game-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-58win1-fishing-game-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-58win1-fishing-game-guide__section-title {
    font-size: 1.5em;
  }
}