.page-resources-aw8-fishing-game-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: #1a1a1a; /* Dark background for professional feel */
}

.page-resources-aw8-fishing-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-aw8-fishing-game-guide__hero {
  background: linear-gradient(135deg, #0056b3, #007BFF, #FFC107); /* Gradient with main and accent colors */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-resources-aw8-fishing-game-guide__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:aw8,fishing_game,underwater,bubbles,light_rays]');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-resources-aw8-fishing-game-guide__hero > * {
  position: relative;
  z-index: 1;
}

.page-resources-aw8-fishing-game-guide__back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #FFC107; /* Accent color for link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-aw8-fishing-game-guide__back-link:hover {
  color: #fff;
}

.page-resources-aw8-fishing-game-guide__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.page-resources-aw8-fishing-game-guide__description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-resources-aw8-fishing-game-guide__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-aw8-fishing-game-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-resources-aw8-fishing-game-guide__button--primary {
  background-color: #FFC107; /* Accent color */
  color: #1a1a1a; /* Dark text for contrast */
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-resources-aw8-fishing-game-guide__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-resources-aw8-fishing-game-guide__button--secondary {
  background-color: #007BFF; /* Main color */
  color: #ffffff;
  border: 2px solid #007BFF;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.page-resources-aw8-fishing-game-guide__button--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.page-resources-aw8-fishing-game-guide__button--register, .page-resources-aw8-fishing-game-guide__button--download {
  background-color: #FFC100;
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(255, 193, 0, 0.4);
  margin-top: 20px;
}

.page-resources-aw8-fishing-game-guide__button--register:hover, .page-resources-aw8-fishing-game-guide__button--download:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-resources-aw8-fishing-game-guide__button--text {
  background: none;
  color: #FFC107;
  border: 2px solid #FFC107;
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-aw8-fishing-game-guide__button--text:hover {
  color: #fff;
  border-color: #fff;
  background-color: rgba(255,255,255,0.1);
}

.page-resources-aw8-fishing-game-guide__content-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-resources-aw8-fishing-game-guide__article-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #2a2a2a; /* Slightly lighter dark background for readability */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-resources-aw8-fishing-game-guide__heading {
  color: #007BFF; /* Main color for headings */
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFC107; /* Accent underline */
  padding-bottom: 10px;
}

.page-resources-aw8-fishing-game-guide__sub-heading {
  color: #FFC107; /* Accent color for sub-headings */
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-aw8-fishing-game-guide__article-content p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-resources-aw8-fishing-game-guide__article-content a {
  color: #FFC107; /* Accent color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-aw8-fishing-game-guide__article-content a:hover {
  color: #007BFF;
}

.page-resources-aw8-fishing-game-guide__article-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 1em;
  color: #e0e0e0;
}

.page-resources-aw8-fishing-game-guide__article-content ul li {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}

.page-resources-aw8-fishing-game-guide__article-content strong {
  color: #FFC107;
}

.page-resources-aw8-fishing-game-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-aw8-fishing-game-guide__blockquote {
  border-left: 5px solid #007BFF; /* Main color for blockquote border */
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #bdbdbd;
  font-size: 1.1em;
}

.page-resources-aw8-fishing-game-guide__blockquote p {
  margin: 0;
}

.page-resources-aw8-fishing-game-guide__cta-bottom {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

  .page-resources-aw8-fishing-game-guide__description {
    font-size: 1em;
  }

  .page-resources-aw8-fishing-game-guide__heading {
    font-size: 1.8em;
  }

  .page-resources-aw8-fishing-game-guide__sub-heading {
    font-size: 1.4em;
  }

  .page-resources-aw8-fishing-game-guide__article-content {
    padding: 20px;
  }

  .page-resources-aw8-fishing-game-guide__cta-group, .page-resources-aw8-fishing-game-guide__cta-bottom {
    flex-direction: column;
    align-items: center;
  }

  .page-resources-aw8-fishing-game-guide__button {
    width: 80%;
    max-width: 300px;
  }
}

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

  .page-resources-aw8-fishing-game-guide__hero {
    padding: 60px 0;
  }

  .page-resources-aw8-fishing-game-guide__heading {
    font-size: 1.5em;
  }

  .page-resources-aw8-fishing-game-guide__sub-heading {
    font-size: 1.2em;
  }
}