.page-game-types-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #d8d8d8; /* Light grey for general text on dark background */
  background-color: #0A2342; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-game-types-fishing-games__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%); /* Dark blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-types-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E6B31E; /* Accent gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-game-types-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-types-fishing-games__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-types-fishing-games__btn {
  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;
}

.page-game-types-fishing-games__btn--primary {
  background-color: #E6B31E; /* Accent gold */
  color: #0A2342; /* Dark blue text */
}

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

.page-game-types-fishing-games__btn--secondary {
  background-color: transparent;
  color: #E6B31E; /* Accent gold text */
  border: 2px solid #E6B31E;
}

.page-game-types-fishing-games__btn--secondary:hover {
  background-color: #E6B31E;
  color: #0A2342;
  transform: translateY(-3px);
}

.page-game-types-fishing-games__btn--inline {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  margin-top: 10px;
}

.page-game-types-fishing-games__section {
  padding: 60px 0;
  background-color: #1a3a60; /* Slightly lighter dark blue for sections */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-types-fishing-games__section:nth-child(even) {
  background-color: #0A2342;
}

.page-game-types-fishing-games__section-title {
  font-size: 2.5em;
  color: #E6B31E; /* Accent gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-types-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E6B31E;
  border-radius: 2px;
}

.page-game-types-fishing-games__subsection-title {
  font-size: 1.8em;
  color: #E6B31E;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-game-types-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.page-game-types-fishing-games__list li {
  background-color: #2b4c73; /* Slightly lighter dark blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  color: #e0e0e0;
}

.page-game-types-fishing-games__list li::before {
  content: '✓';
  color: #E6B31E; /* Accent gold checkmark */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-game-types-fishing-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-types-fishing-games__grid-item {
  background-color: #2b4c73;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-fishing-games__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-game-types-fishing-games__grid-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #E6B31E;
}

.page-game-types-fishing-games__grid-title {
  font-size: 1.5em;
  color: #E6B31E;
  margin-bottom: 10px;
}

.page-game-types-fishing-games__text-center {
  text-align: center;
  margin-top: 40px;
}

.page-game-types-fishing-games__numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-game-types-fishing-games__numbered-list li {
  counter-increment: step-counter;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
  background-color: #2b4c73;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #e0e0e0;
}

.page-game-types-fishing-games__numbered-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 20px;
  background-color: #E6B31E;
  color: #0A2342;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.5em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-game-types-fishing-games__faq-item {
  background-color: #2b4c73;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-game-types-fishing-games__faq-question {
  font-size: 1.4em;
  color: #E6B31E;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

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

.page-game-types-fishing-games__faq-question.active::after {
  transform: rotate(45deg);
}

.page-game-types-fishing-games__faq-answer {
  color: #d8d8d8;
  margin-top: 10px;
  display: none;
}

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

.page-game-types-fishing-games__cta-section {
  background: linear-gradient(45deg, #E6B31E, #ffc93d);
  color: #0A2342;
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-types-fishing-games__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #0A2342;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-game-types-fishing-games__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #333;
}

.page-game-types-fishing-games__cta-actions .page-game-types-fishing-games__btn--primary {
  background-color: #0A2342;
  color: #E6B31E;
}

.page-game-types-fishing-games__cta-actions .page-game-types-fishing-games__btn--primary:hover {
  background-color: #1a3a60;
  color: #ffc93d;
}

.page-game-types-fishing-games__cta-actions .page-game-types-fishing-games__btn--secondary {
  background-color: transparent;
  color: #0A2342;
  border: 2px solid #0A2342;
}

.page-game-types-fishing-games__cta-actions .page-game-types-fishing-games__btn--secondary:hover {
  background-color: #0A2342;
  color: #E6B31E;
}

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

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

  .page-game-types-fishing-games__subsection-title {
    font-size: 1.5em;
  }

  .page-game-types-fishing-games__grid {
    grid-template-columns: 1fr;
  }

  .page-game-types-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-types-fishing-games__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-game-types-fishing-games__numbered-list li::before {
    position: static;
    margin-right: 15px;
    margin-bottom: 10px;
  }

  .page-game-types-fishing-games__numbered-list li {
    padding-left: 25px;
    text-align: left;
  }

  .page-game-types-fishing-games__cta-title {
    font-size: 2em;
  }
}

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

  .page-game-types-fishing-games__hero-description {
    font-size: 1em;
  }

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

  .page-game-types-fishing-games__btn {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }

  .page-game-types-fishing-games__list li {
    font-size: 0.9em;
    padding: 10px 15px;
  }

  .page-game-types-fishing-games__cta-title {
    font-size: 1.8em;
  }
  .page-game-types-fishing-games__cta-description {
    font-size: 1em;
  }
}