/* style/game-guides-fishing-game-high-score-tips.css */
.page-game-guides-fishing-game-high-score-tips {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: 'Arial', sans-serif;
}

.page-game-guides-fishing-game-high-score-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  overflow: hidden;
  background-color: #08160F;
}

.page-game-guides-fishing-game-high-score-tips__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-game-guides-fishing-game-high-score-tips__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-game-guides-fishing-game-high-score-tips__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-game-guides-fishing-game-high-score-tips__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #F2FFF6;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  /* No fixed font-size for H1, relying on responsive scaling */
}

.page-game-guides-fishing-game-high-score-tips__description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-game-guides-fishing-game-high-score-tips__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-guides-fishing-game-high-score-tips__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-game-guides-fishing-game-high-score-tips__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-game-guides-fishing-game-high-score-tips__section {
  padding: 40px 0;
  background-color: #08160F;
}

.page-game-guides-fishing-game-high-score-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-fishing-game-high-score-tips__heading {
  font-size: 2.5em;
  color: #F2FFF6;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-game-guides-fishing-game-high-score-tips__sub-heading {
  font-size: 1.8em;
  color: #22C768;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides-fishing-game-high-score-tips__paragraph {
  font-size: 1em;
  line-height: 1.7;
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-game-guides-fishing-game-high-score-tips__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-game-guides-fishing-game-high-score-tips__list-item {
  font-size: 1em;
  line-height: 1.8;
  color: #F2FFF6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-game-guides-fishing-game-high-score-tips__list-item::before {
  content: '★';
  color: #F2C14E; /* Gold star */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-game-guides-fishing-game-high-score-tips__image-content-wrapper {
  margin: 30px auto;
  text-align: center;
}

.page-game-guides-fishing-game-high-score-tips__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-game-guides-fishing-game-high-score-tips__faq-list {
  margin-top: 30px;
}

.page-game-guides-fishing-game-high-score-tips__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-guides-fishing-game-high-score-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-game-guides-fishing-game-high-score-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-game-guides-fishing-game-high-score-tips__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-game-guides-fishing-game-high-score-tips__faq-qtext {
  flex-grow: 1;
}

.page-game-guides-fishing-game-high-score-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-game-guides-fishing-game-high-score-tips__faq-item[open] .page-game-guides-fishing-game-high-score-tips__faq-toggle {
  content: '−';
}

.page-game-guides-fishing-game-high-score-tips__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #A7D9B8;
}

.page-game-guides-fishing-game-high-score-tips__faq-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-guides-fishing-game-high-score-tips__faq-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-game-guides-fishing-game-high-score-tips__main-title {
    font-size: 2.8em;
  }
  .page-game-guides-fishing-game-high-score-tips__heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-game-guides-fishing-game-high-score-tips__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-game-guides-fishing-game-high-score-tips__main-title {
    font-size: clamp(2em, 8vw, 2.5em); /* Responsive font size with clamp */
    margin-bottom: 15px;
  }

  .page-game-guides-fishing-game-high-score-tips__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-game-guides-fishing-game-high-score-tips__cta-button,
  .page-game-guides-fishing-game-high-score-tips__cta-button--large,
  .page-game-guides-fishing-game-high-score-tips__faq-button {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 300px; /* Max width for buttons on mobile */
  }

  .page-game-guides-fishing-game-high-score-tips__section {
    padding: 30px 0;
  }

  .page-game-guides-fishing-game-high-score-tips__container {
    padding: 0 15px;
  }

  .page-game-guides-fishing-game-high-score-tips__heading {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-game-guides-fishing-game-high-score-tips__sub-heading {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-game-guides-fishing-game-high-score-tips p,
  .page-game-guides-fishing-game-high-score-tips li {
    font-size: 0.95em;
    line-height: 1.6;
  }

  .page-game-guides-fishing-game-high-score-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-game-guides-fishing-game-high-score-tips__hero-image-wrapper,
  .page-game-guides-fishing-game-high-score-tips__image-content-wrapper,
  .page-game-guides-fishing-game-high-score-tips__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-game-guides-fishing-game-high-score-tips__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-game-guides-fishing-game-high-score-tips__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-fishing-game-high-score-tips__main-title {
    font-size: clamp(1.8em, 9vw, 2.2em);
  }

  .page-game-guides-fishing-game-high-score-tips__heading {
    font-size: 1.6em;
  }

  .page-game-guides-fishing-game-high-score-tips__sub-heading {
    font-size: 1.2em;
  }
}