/* style/game-reviews-fishing-games.css */
.page-game-reviews-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2342; /* Primary dark blue background */
  line-height: 1.6;
}

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

.page-game-reviews-fishing-games__hero {
  background: linear-gradient(135deg, #0A2342 0%, #3a5b8a 100%); /* Dark blue to slightly lighter blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-game-reviews-fishing-games__hero-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);
}

.page-game-reviews-fishing-games__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-fishing-games__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, transform 0.3s ease;
}

.page-game-reviews-fishing-games__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-game-reviews-fishing-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-reviews-fishing-games__btn--action {
  background-color: #DC3545; /* Red action button */
  color: #FFFFFF; /* White text on red */
  border: 2px solid #DC3545;
}

.page-game-reviews-fishing-games__btn--action:hover {
  background-color: #c82333;
  transform: translateY(-3px);
}

.page-game-reviews-fishing-games__section {
  padding: 60px 0;
}

.page-game-reviews-fishing-games__section--dark {
  background-color: #081a30; /* Slightly lighter dark blue for contrast */
}

.page-game-reviews-fishing-games__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-game-reviews-fishing-games__sub-title {
  font-size: 2em;
  color: #FFFFFF; /* White for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-game-reviews-fishing-games__content-wrapper p,
.page-game-reviews-fishing-games__list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-game-reviews-fishing-games__list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-game-reviews-fishing-games__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}

.page-game-reviews-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-fishing-games__section--cta {
  background: #0A2342; /* Main dark blue */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-reviews-fishing-games__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-game-reviews-fishing-games__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-fishing-games__faq-list {
  margin-top: 40px;
}

.page-game-reviews-fishing-games__faq-item {
  background-color: #081a30; /* Darker background for FAQ items */
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-fishing-games__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-reviews-fishing-games__faq-answer {
  font-size: 1.1em;
  color: #B0B0B0;
}

.page-game-reviews-fishing-games__section--conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-game-reviews-fishing-games__section--conclusion p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-reviews-fishing-games__hero-title {
    font-size: 2.5em;
  }

  .page-game-reviews-fishing-games__hero-subtitle {
    font-size: 1.2em;
  }

  .page-game-reviews-fishing-games__section-title {
    font-size: 2em;
  }

  .page-game-reviews-fishing-games__sub-title {
    font-size: 1.6em;
  }

  .page-game-reviews-fishing-games__cta-title {
    font-size: 2.2em;
  }

  .page-game-reviews-fishing-games__cta-text {
    font-size: 1em;
  }

  .page-game-reviews-fishing-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-fishing-games__hero-title {
    font-size: 2em;
  }

  .page-game-reviews-fishing-games__hero-subtitle {
    font-size: 1em;
  }

  .page-game-reviews-fishing-games__section-title {
    font-size: 1.8em;
  }

  .page-game-reviews-fishing-games__sub-title {
    font-size: 1.4em;
  }

  .page-game-reviews-fishing-games__cta-title {
    font-size: 1.8em;
  }

  .page-game-reviews-fishing-games__cta-text {
    font-size: 0.9em;
  }

  .page-game-reviews-fishing-games__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-reviews-fishing-games__faq-question {
    font-size: 1.2em;
  }
  .page-game-reviews-fishing-games__faq-answer {
    font-size: 0.95em;
  }
}