.page-fishing-games-secrets {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: var(--background-color, #FFFFFF);
}

.page-fishing-games-secrets__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #26A9E0; /* Brand primary color for hero */
}

.page-fishing-games-secrets__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7); /* Darken image for text readability */
}

.page-fishing-games-secrets__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-fishing-games-secrets__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF;
}

.page-fishing-games-secrets__description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-fishing-games-secrets__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-games-secrets__btn-primary,
.page-fishing-games-secrets__btn-secondary {
  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, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-secrets__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-fishing-games-secrets__btn-primary:hover {
  background-color: #ff9900;
  border-color: #ff9900;
}

.page-fishing-games-secrets__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games-secrets__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-fishing-games-secrets__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF;
  color: #333333;
}

.page-fishing-games-secrets__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-fishing-games-secrets__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games-secrets__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-fishing-games-secrets__image-inline {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-secrets__faq-list {
  margin-top: 40px;
}

.page-fishing-games-secrets__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-fishing-games-secrets__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #eaf6ff; /* Light blue background for question */
  border-bottom: 1px solid #d0e7ff;
}

.page-fishing-games-secrets__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games-secrets__faq-question::marker {
  display: none;
}

.page-fishing-games-secrets__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games-secrets__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
}

.page-fishing-games-secrets__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  font-size: 1.05em;
  color: #555555;
}

.page-fishing-games-secrets__faq-item[open] .page-fishing-games-secrets__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px 25px;
}

.page-fishing-games-secrets__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #f0f8ff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-fishing-games-secrets__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games-secrets__main-title {
    font-size: 2.8em;
  }
  .page-fishing-games-secrets__description {
    font-size: 1.2em;
  }
  .page-fishing-games-secrets__section-title {
    font-size: 2em;
  }
  .page-fishing-games-secrets__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-secrets {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games-secrets__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-fishing-games-secrets__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-fishing-games-secrets__description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-fishing-games-secrets__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-secrets__btn-primary,
  .page-fishing-games-secrets__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-fishing-games-secrets__content-area {
    padding: 40px 15px;
  }
  .page-fishing-games-secrets__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-fishing-games-secrets__sub-title {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-fishing-games-secrets__text-block {
    font-size: 0.95em;
  }
  .page-fishing-games-secrets img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games-secrets__section,
  .page-fishing-games-secrets__card,
  .page-fishing-games-secrets__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games-secrets__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-fishing-games-secrets__faq-answer {
    padding: 0 20px;
  }
  .page-fishing-games-secrets__faq-item[open] .page-fishing-games-secrets__faq-answer {
    padding: 10px 20px 20px;
  }
  .page-fishing-games-secrets__cta-bottom {
    padding: 30px 15px;
  }
  .page-fishing-games-secrets__btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-secrets__main-title {
    font-size: 1.8em;
  }
  .page-fishing-games-secrets__section-title {
    font-size: 1.6em;
  }
  .page-fishing-games-secrets__sub-title {
    font-size: 1.2em;
  }
}