/* style/game-types-fishing-game-secrets.css */
.page-game-types-fishing-game-secrets {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-game-types-fishing-game-secrets__hero-section {
  background: linear-gradient(135deg, #003366, #1a4a7d);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-game-types-fishing-game-secrets__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-types-fishing-game-secrets__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  opacity: 0.9;
}

.page-game-types-fishing-game-secrets__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #003366; /* Deep blue text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  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-game-secrets__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-game-types-fishing-game-secrets__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  overflow: hidden;
}

.page-game-types-fishing-game-secrets__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-game-types-fishing-game-secrets__hero-section > .page-game-types-fishing-game-secrets__container {
  position: relative;
  z-index: 1;
}

.page-game-types-fishing-game-secrets__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-game-types-fishing-game-secrets__section-title {
  font-size: 2.5em;
  color: #003366; /* Deep blue */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-game-types-fishing-game-secrets__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-game-types-fishing-game-secrets__subsection-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding-left: 15px;
}

.page-game-types-fishing-game-secrets__content-section p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-game-types-fishing-game-secrets__content-section a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-game-types-fishing-game-secrets__content-section a:hover {
  color: #FFD700;
}

.page-game-types-fishing-game-secrets__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-game-types-fishing-game-secrets__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-game-types-fishing-game-secrets__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-game-types-fishing-game-secrets__cta-footer {
  background-color: #003366;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
}

.page-game-types-fishing-game-secrets__cta-footer-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-types-fishing-game-secrets__cta-footer p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

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

.page-game-types-fishing-game-secrets__cta-button--primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Deep blue */
}

.page-game-types-fishing-game-secrets__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-game-types-fishing-game-secrets__cta-button--secondary {
  background-color: #DC143C; /* Red accent */
  color: #fff;
}

.page-game-types-fishing-game-secrets__cta-button--secondary:hover {
  background-color: #c01032;
}

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

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

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

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

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

  .page-game-types-fishing-game-secrets__cta-footer p {
    font-size: 1em;
  }

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

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

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

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

  .page-game-types-fishing-game-secrets__subsection-title {
    font-size: 1.3em;
  }

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