/* style/fishing-games-high-score-tips.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* body 已 padding-top: var(--header-offset)；页面禁止再写该变量 */
.page-fishing-games-high-score-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for the page content */
  background-color: var(--background-color); /* Main background color */
}

.page-fishing-games-high-score-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom padding */
  overflow: hidden;
  box-sizing: border-box;
  background: var(--deep-green-color);
}

.page-fishing-games-high-score-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-fishing-games-high-score-tips__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  color: var(--text-main-color);
}

.page-fishing-games-high-score-tips__main-title {
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
  /* No fixed font-size, relying on weight, line-height, etc. */
}

.page-fishing-games-high-score-tips__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

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

.page-fishing-games-high-score-tips__btn-primary,
.page-fishing-games-high-score-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-high-score-tips__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* Forced white for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games-high-score-tips__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games-high-score-tips__btn-secondary {
  background-color: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-fishing-games-high-score-tips__btn-secondary:hover {
  background-color: var(--glow-color);
  color: var(--card-bg);
  transform: translateY(-2px);
}

.page-fishing-games-high-score-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color); /* Ensure contrast with text */
  color: var(--text-main-color);
}

.page-fishing-games-high-score-tips__section-title {
  color: var(--glow-color);
  font-size: 2.2em;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 0 0 5px rgba(87, 227, 141, 0.4);
}

.page-fishing-games-high-score-tips__sub-section-title {
  color: var(--gold-color);
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fishing-games-high-score-tips p {
  margin-bottom: 15px;
  color: var(--text-secondary-color);
}

.page-fishing-games-high-score-tips__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
}

.page-fishing-games-high-score-tips__list li {
  margin-bottom: 8px;
  color: var(--text-secondary-color);
}

.page-fishing-games-high-score-tips__content-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-fishing-games-high-score-tips__faq-list {
  margin-top: 40px;
}

.page-fishing-games-high-score-tips__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-fishing-games-high-score-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main-color);
  background-color: var(--deep-green-color);
  border-bottom: 1px solid var(--divider-color);
}

.page-fishing-games-high-score-tips__faq-question:hover {
  background-color: var(--primary-color);
}

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

.page-fishing-games-high-score-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-fishing-games-high-score-tips__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: var(--text-secondary-color);
}

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

.page-fishing-games-high-score-tips__faq-item[open] .page-fishing-games-high-score-tips__faq-question {
  border-bottom: none;
}

.page-fishing-games-high-score-tips__cta-download {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-color: var(--deep-green-color);
  gap: 40px;
  color: var(--text-main-color);
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

.page-fishing-games-high-score-tips__cta-content {
  max-width: 600px;
}

.page-fishing-games-high-score-tips__cta-download .page-fishing-games-high-score-tips__section-title {
  color: var(--gold-color);
  margin-bottom: 20px;
}

.page-fishing-games-high-score-tips__cta-download p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

.page-fishing-games-high-score-tips__cta-image {
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games-high-score-tips__hero-content {
    padding: 30px 15px;
  }

  .page-fishing-games-high-score-tips__main-title {
    font-size: 2.5em;
  }

  .page-fishing-games-high-score-tips__section-title {
    font-size: 1.8em;
  }

  .page-fishing-games-high-score-tips__cta-download {
    flex-direction: column;
    padding: 60px 20px;
  }

  .page-fishing-games-high-score-tips__cta-image {
    margin-top: 40px;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-high-score-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games-high-score-tips__hero-section {
    min-height: 400px;
    padding: 10px 15px 40px 15px;
  }

  .page-fishing-games-high-score-tips__hero-content {
    padding: 20px 15px;
    max-width: 100%;
  }

  .page-fishing-games-high-score-tips__main-title {
    font-size: 2em; /* Adjusted for mobile */
  }

  .page-fishing-games-high-score-tips__description {
    font-size: 1em;
  }

  .page-fishing-games-high-score-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games-high-score-tips__btn-primary,
  .page-fishing-games-high-score-tips__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-high-score-tips__content-area {
    padding: 40px 15px;
  }

  .page-fishing-games-high-score-tips__section-title {
    font-size: 1.6em;
  }

  .page-fishing-games-high-score-tips__sub-section-title {
    font-size: 1.3em;
  }

  .page-fishing-games-high-score-tips__list {
    margin-left: 20px;
  }

  .page-fishing-games-high-score-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games-high-score-tips__section,
  .page-fishing-games-high-score-tips__card,
  .page-fishing-games-high-score-tips__container,
  .page-fishing-games-high-score-tips__cta-download,
  .page-fishing-games-high-score-tips__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games-high-score-tips__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-fishing-games-high-score-tips__faq-item[open] .page-fishing-games-high-score-tips__faq-answer {
    padding: 10px 20px 20px 20px;
  }

  .page-fishing-games-high-score-tips__cta-download {
    padding: 40px 15px;
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games-high-score-tips__cta-image {
    max-width: 100%;
    margin-top: 30px;
  }

  .page-fishing-games-high-score-tips__btn-large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}