.page-game-types-fishing-games-detail {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Dark blue background */
  line-height: 1.6;
}

.page-game-types-fishing-games-detail__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-types-fishing-games-detail__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #343a40 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-game-types-fishing-games-detail__main-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);
  font-weight: bold;
}

.page-game-types-fishing-games-detail__subtitle {
  font-size: 1.5em;
  color: #B0B0B0;
  margin-bottom: 40px;
}

.page-game-types-fishing-games-detail__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-types-fishing-games-detail__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-game-types-fishing-games-detail__cta-button--secondary {
  background-color: #343a40;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-game-types-fishing-games-detail__cta-button--secondary:hover {
  background-color: #495057;
  color: #FFD700;
}

.page-game-types-fishing-games-detail__content-section {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-game-types-fishing-games-detail__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-game-types-fishing-games-detail__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-types-fishing-games-detail__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-game-types-fishing-games-detail__heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for headings */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-game-types-fishing-games-detail__sub-heading {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-types-fishing-games-detail__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-game-types-fishing-games-detail__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-game-types-fishing-games-detail__cta-group {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-game-types-fishing-games-detail__faq {
  margin-top: 40px;
}

.page-game-types-fishing-games-detail__faq-item {
  background-color: #2a303a; /* Slightly lighter dark blue for FAQ item */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-fishing-games-detail__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-types-fishing-games-detail__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-game-types-fishing-games-detail__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-types-fishing-games-detail__faq-answer {
  font-size: 1.05em;
  color: #B0B0B0;
  display: none;
  margin-top: 15px;
}

.page-game-types-fishing-games-detail__faq-answer.active {
  display: block;
}

.page-game-types-fishing-games-detail__conclusion-text {
  font-size: 1.2em;
  text-align: center;
  margin-top: 50px;
  font-style: italic;
  color: #FFD700;
}

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

  .page-game-types-fishing-games-detail__subtitle {
    font-size: 1.2em;
  }

  .page-game-types-fishing-games-detail__heading {
    font-size: 2em;
  }

  .page-game-types-fishing-games-detail__sub-heading {
    font-size: 1.5em;
  }

  .page-game-types-fishing-games-detail__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-types-fishing-games-detail__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-game-types-fishing-games-detail__cta-group {
    flex-direction: column;
    align-items: center;
  }
}

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

  .page-game-types-fishing-games-detail__subtitle {
    font-size: 1em;
  }

  .page-game-types-fishing-games-detail__heading {
    font-size: 1.8em;
  }

  .page-game-types-fishing-games-detail__sub-heading {
    font-size: 1.3em;
  }

  .page-game-types-fishing-games-detail__cta-button {
    width: 100%;
    margin-bottom: 10px;
  }

  .page-game-types-fishing-games-detail__cta-button--secondary {
    margin-left: 0;
  }
}