/* style/fishing-games-skill-guide.css */
.page-fishing-games-skill-guide {
  font-family: 'Arial', sans-serif;
  color: #1A2E44; /* Dark blue for main text */
  line-height: 1.6;
}

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

.page-fishing-games-skill-guide__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5c82 100%); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games-skill-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games-skill-guide__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-skill-guide__section {
  padding: 60px 0;
  background-color: #f8f8f8; /* Light grey background */
}

.page-fishing-games-skill-guide__section--dark {
  background-color: #e6eef7; /* Slightly darker light blue */
}

.page-fishing-games-skill-guide__section-title {
  font-size: 2.5em;
  color: #1A2E44; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games-skill-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  border-radius: 2px;
}

.page-fishing-games-skill-guide__sub-title {
  font-size: 1.8em;
  color: #1A2E44; /* Dark blue */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding-left: 15px;
}

.page-fishing-games-skill-guide p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333; /* Slightly lighter text for paragraphs */
}

.page-fishing-games-skill-guide .highlight {
  color: #FFD700; /* Gold for highlights */
  font-weight: bold;
}

.page-fishing-games-skill-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-fishing-games-skill-guide__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E44; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-fishing-games-skill-guide__btn--primary:hover {
  background-color: #e5c100; /* Darker gold on hover */
  color: #1A2E44;
  transform: translateY(-2px);
}

.page-fishing-games-skill-guide__btn--secondary {
  background-color: #1A2E44; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #1A2E44;
}

.page-fishing-games-skill-guide__btn--secondary:hover {
  background-color: #0f1e2d; /* Darker blue on hover */
  color: #FFD700;
  transform: translateY(-2px);
}

.page-fishing-games-skill-guide__image-wrapper {
  margin: 40px auto;
  text-align: center;
}

.page-fishing-games-skill-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-skill-guide__section--download {
  text-align: center;
  background-color: #1A2E44; /* Dark blue section for download */
  color: #FFFFFF; /* White text */
}

.page-fishing-games-skill-guide__section--download .page-fishing-games-skill-guide__section-title {
  color: #FFFFFF;
}

.page-fishing-games-skill-guide__section--download .page-fishing-games-skill-guide__section-title::after {
  background-color: #FFD700;
}

.page-fishing-games-skill-guide__section--download p {
  color: #e0e0e0; /* Light grey for paragraphs */
}

.page-fishing-games-skill-guide__image-wrapper--app {
  max-width: 600px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-fishing-games-skill-guide__hero {
    padding: 60px 0;
  }

  .page-fishing-games-skill-guide__hero-title {
    font-size: 2.5em;
  }

  .page-fishing-games-skill-guide__hero-subtitle {
    font-size: 1.2em;
  }

  .page-fishing-games-skill-guide__section-title {
    font-size: 2em;
  }

  .page-fishing-games-skill-guide__sub-title {
    font-size: 1.5em;
  }

  .page-fishing-games-skill-guide p {
    font-size: 1em;
  }

  .page-fishing-games-skill-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-skill-guide__hero {
    padding: 40px 0;
  }

  .page-fishing-games-skill-guide__hero-title {
    font-size: 2em;
  }

  .page-fishing-games-skill-guide__hero-subtitle {
    font-size: 1em;
  }

  .page-fishing-games-skill-guide__section-title {
    font-size: 1.8em;
  }

  .page-fishing-games-skill-guide__sub-title {
    font-size: 1.3em;
  }

  .page-fishing-games-skill-guide__btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}