/* style/fishing-games-high-score-tips.css */

/* Body background is #0a0a0a (dark), so use light text for main content */
.page-fishing-games-high-score-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Rely on shared body background */
}

.page-fishing-games-high-score-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small decorative top padding, body handles --header-offset */
  overflow: hidden;
  text-align: center;
}

.page-fishing-games-high-score-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-fishing-games-high-score-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-fishing-games-high-score-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark background for text */
}

.page-fishing-games-high-score-tips__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -1px;
}

.page-fishing-games-high-score-tips__subtitle {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.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: 700;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games-high-score-tips__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-fishing-games-high-score-tips__btn-primary:hover {
  background: #1e87b7;
  border-color: #1e87b7;
}

.page-fishing-games-high-score-tips__btn-secondary {
  background: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games-high-score-tips__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
}

.page-fishing-games-high-score-tips__section {
  padding: 40px 20px;
  text-align: center;
}

.page-fishing-games-high-score-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-games-high-score-tips__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  margin-bottom: 30px;
  font-weight: 700;
  color: #26A9E0;
}

.page-fishing-games-high-score-tips__light-bg {
  background: #ffffff;
  color: #333333;
}

.page-fishing-games-high-score-tips__dark-bg {
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark body */
  color: #ffffff;
}

.page-fishing-games-high-score-tips__light-bg p,
.page-fishing-games-high-score-tips__light-bg li {
  color: #333333;
}

.page-fishing-games-high-score-tips p {
  margin-bottom: 15px;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-high-score-tips__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-high-score-tips__card {
  background: rgba(255, 255, 255, 0.1); /* Light on dark background */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #ffffff;
}

.page-fishing-games-high-score-tips__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games-high-score-tips__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
  font-weight: 600;
}

.page-fishing-games-high-score-tips__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games-high-score-tips__strategy-card {
  background: #ffffff;
  color: #333333;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-high-score-tips__strategy-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #26A9E0;
  font-weight: 600;
}

.page-fishing-games-high-score-tips__image-container {
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-fishing-games-high-score-tips__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.page-fishing-games-high-score-tips__image-caption {
  margin-top: 15px;
  font-style: italic;
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-fishing-games-high-score-tips__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-fishing-games-high-score-tips__list-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-high-score-tips__list-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
  font-weight: 600;
}

.page-fishing-games-high-score-tips__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-fishing-games-high-score-tips__faq-item {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #333333;
}

.page-fishing-games-high-score-tips__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #26A9E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games-high-score-tips__faq-item summary::-webkit-details-marker {
  display: none;
}

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

.page-fishing-games-high-score-tips__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #333333;
}

.page-fishing-games-high-score-tips__faq-answer p {
  margin-bottom: 0;
  max-width: none;
}

.page-fishing-games-high-score-tips__cta-bottom {
  margin-top: 50px;
  text-align: center;
}

.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: 15px;
  }
  .page-fishing-games-high-score-tips__main-title {
    font-size: clamp(1.8em, 4.5vw, 3em);
  }
  .page-fishing-games-high-score-tips__subtitle {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
  }
  .page-fishing-games-high-score-tips__card-grid,
  .page-fishing-games-high-score-tips__strategy-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-high-score-tips__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-fishing-games-high-score-tips__hero-content {
    padding: 15px;
  }
  .page-fishing-games-high-score-tips__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-fishing-games-high-score-tips__subtitle {
    font-size: clamp(0.8em, 2.5vw, 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 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-fishing-games-high-score-tips__section {
    padding: 30px 15px;
  }
  .page-fishing-games-high-score-tips__content-area,
  .page-fishing-games-high-score-tips__card-grid,
  .page-fishing-games-high-score-tips__strategy-grid,
  .page-fishing-games-high-score-tips__list,
  .page-fishing-games-high-score-tips__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile image responsive */
  .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__card-image {
    height: 200px;
  }
  .page-fishing-games-high-score-tips__content-image {
    height: auto;
  }

  /* FAQ specific mobile styles */
  .page-fishing-games-high-score-tips__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-fishing-games-high-score-tips__faq-answer {
    padding: 15px 20px;
    font-size: 1em;
  }

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

@media (max-width: 480px) {
  .page-fishing-games-high-score-tips__main-title {
    font-size: clamp(1.2em, 8vw, 2em);
  }
  .page-fishing-games-high-score-tips__subtitle {
    font-size: clamp(0.75em, 3vw, 0.9em);
  }
  .page-fishing-games-high-score-tips__card-grid,
  .page-fishing-games-high-score-tips__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-high-score-tips__hero-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-fishing-games-high-score-tips__section,
  .page-fishing-games-high-score-tips__content-area,
  .page-fishing-games-high-score-tips__card-grid,
  .page-fishing-games-high-score-tips__strategy-grid,
  .page-fishing-games-high-score-tips__list,
  .page-fishing-games-high-score-tips__faq-list {
    padding-left: 10px;
    padding-right: 10px;
  }
}