/* style/resources-fishing-games-high-score-guide.css */
.page-resources-fishing-games-high-score-guide {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Main dark blue background */
  line-height: 1.6;
}

.page-resources-fishing-games-high-score-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-fishing-games-high-score-guide__hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #0A1931 0%, #1a3a61 100%); /* Dark blue gradient */
  overflow: hidden;
}

.page-resources-fishing-games-high-score-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-resources-fishing-games-high-score-guide__hero .page-resources-fishing-games-high-score-guide__container {
  position: relative;
  z-index: 1;
}

.page-resources-fishing-games-high-score-guide__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-resources-fishing-games-high-score-guide__subtitle {
  font-size: 1.4em;
  color: #FFFFFF; /* White for subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-fishing-games-high-score-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-resources-fishing-games-high-score-guide__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold */
  border: none;
}

.page-resources-fishing-games-high-score-guide__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-fishing-games-high-score-guide__section {
  padding: 60px 0;
  background-color: #0A1931;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-resources-fishing-games-high-score-guide__section:nth-of-type(even) {
  background-color: #0E1F3F; /* Slightly lighter dark blue for alternating sections */
}

.page-resources-fishing-games-high-score-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-resources-fishing-games-high-score-guide__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-fishing-games-high-score-guide p {
  margin-bottom: 15px;
  color: #E0E0E0; /* Light gray for paragraphs */
}

.page-resources-fishing-games-high-score-guide ul,
.page-resources-fishing-games-high-score-guide ol {
  margin-bottom: 15px;
  padding-left: 25px;
  color: #E0E0E0;
}

.page-resources-fishing-games-high-score-guide li {
  margin-bottom: 10px;
}

.page-resources-fishing-games-high-score-guide__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.page-resources-fishing-games-high-score-guide__text-content {
  flex: 1;
}

.page-resources-fishing-games-high-score-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-games-high-score-guide__image--right {
  flex: 0 0 45%;
  order: 2;
}

.page-resources-fishing-games-high-score-guide__image--left {
  flex: 0 0 45%;
  order: 1;
}

.page-resources-fishing-games-high-score-guide__image--center {
  display: block;
  margin: 40px auto;
  max-width: 80%;
}

.page-resources-fishing-games-high-score-guide__image--wide {
  display: block;
  margin: 40px auto;
  max-width: 90%;
}

.page-resources-fishing-games-high-score-guide__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-fishing-games-high-score-guide__feature-item {
  background-color: #1a3a61; /* Dark blue variant */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-resources-fishing-games-high-score-guide__feature-item .page-resources-fishing-games-high-score-guide__sub-title {
  color: #FFD700;
  margin-top: 0;
}

.page-resources-fishing-games-high-score-guide__feature-item p {
  color: #D0D0D0;
}

.page-resources-fishing-games-high-score-guide__section--cta {
  text-align: center;
  background: linear-gradient(135deg, #0A1931, #1a3a61);
  padding: 80px 0;
}

.page-resources-fishing-games-high-score-guide__container--cta {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  max-width: 900px;
}

.page-resources-fishing-games-high-score-guide__btn--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 20px;
  width: fit-content;
  background-color: #FFD700;
  color: #0A1931;
  padding: 18px 35px;
  font-size: 1.3em;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-games-high-score-guide__btn--cta:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

.page-resources-fishing-games-high-score-guide__btn-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: brightness(0.2);
}

.page-resources-fishing-games-high-score-guide__cta-note {
  font-size: 1.1em;
  color: #B0B0B0;
}

.page-resources-fishing-games-high-score-guide__link--underline {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-resources-fishing-games-high-score-guide__link--underline:hover {
  color: #FFFFFF;
}

.page-resources-fishing-games-high-score-guide .highlight-text {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-fishing-games-high-score-guide__title {
    font-size: 2.8em;
  }
  .page-resources-fishing-games-high-score-guide__subtitle {
    font-size: 1.2em;
  }
  .page-resources-fishing-games-high-score-guide__section-title {
    font-size: 2em;
  }
  .page-resources-fishing-games-high-score-guide__sub-title {
    font-size: 1.5em;
  }
  .page-resources-fishing-games-high-score-guide__content-grid {
    flex-direction: column;
  }
  .page-resources-fishing-games-high-score-guide__image--right,
  .page-resources-fishing-games-high-score-guide__image--left {
    order: unset;
    flex: unset;
  }
}

@media (max-width: 768px) {
  .page-resources-fishing-games-high-score-guide__hero {
    padding: 90px 0 60px;
  }
  .page-resources-fishing-games-high-score-guide__title {
    font-size: 2.2em;
  }
  .page-resources-fishing-games-high-score-guide__subtitle {
    font-size: 1em;
  }
  .page-resources-fishing-games-high-score-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-fishing-games-high-score-guide__section {
    padding: 40px 0;
  }
  .page-resources-fishing-games-high-score-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-fishing-games-high-score-guide__sub-title {
    font-size: 1.3em;
  }
  .page-resources-fishing-games-high-score-guide__feature-list {
    grid-template-columns: 1fr;
  }
  .page-resources-fishing-games-high-score-guide__image--center,
  .page-resources-fishing-games-high-score-guide__image--wide {
    max-width: 100%;
  }
  .page-resources-fishing-games-high-score-guide__btn--cta {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-resources-fishing-games-high-score-guide__btn-icon {
    width: 25px;
    height: 25px;
  }
  .page-resources-fishing-games-high-score-guide__container--cta {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-fishing-games-high-score-guide__title {
    font-size: 1.8em;
  }
  .page-resources-fishing-games-high-score-guide__subtitle {
    font-size: 0.9em;
  }
  .page-resources-fishing-games-high-score-guide__section-title {
    font-size: 1.5em;
  }
  .page-resources-fishing-games-high-score-guide__btn--cta {
    flex-direction: column;
    gap: 10px;
  }
  .page-resources-fishing-games-high-score-guide__btn-icon {
    margin-right: 0;
  }
}