.page-fishing-games-high-score-tips {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Body background is dark #121212, so use light text */
  line-height: 1.6;
}

.page-fishing-games-high-score-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background: linear-gradient(135deg, #26A9E0, #1a7bbd);
  text-align: center;
  overflow: hidden;
}

.page-fishing-games-high-score-tips__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width for desktop */
  margin-bottom: 30px;
}

.page-fishing-games-high-score-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-high-score-tips__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-games-high-score-tips__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games-high-score-tips__intro-text {
  font-size: 1.15rem;
  color: #f0f0f0;
  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: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games-high-score-tips__btn-primary {
  background: #EA7C07; /* Login color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-fishing-games-high-score-tips__btn-primary:hover {
  background: #d46b00;
  border-color: #d46b00;
  transform: translateY(-2px);
}

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

.page-fishing-games-high-score-tips__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-fishing-games-high-score-tips__content-area,
.page-fishing-games-high-score-tips__conclusion-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #1e1e1e; /* Slightly lighter dark background for content */
  color: #ffffff;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-high-score-tips__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
}

.page-fishing-games-high-score-tips__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-fishing-games-high-score-tips__content-area p,
.page-fishing-games-high-score-tips__conclusion-section p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #f0f0f0;
}

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

.page-fishing-games-high-score-tips__card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-fishing-games-high-score-tips__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-high-score-tips__card-image {
  width: 100%;
  height: auto;
  max-height: 250px; /* Max height for card images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

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

.page-fishing-games-high-score-tips__card p {
  font-size: 0.95rem;
  color: #e0e0e0;
}

.page-fishing-games-high-score-tips__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-high-score-tips__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-fishing-games-high-score-tips__list-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 4px solid #26A9E0;
  font-size: 1.05rem;
  color: #f0f0f0;
}

.page-fishing-games-high-score-tips__list-item strong {
  color: #26A9E0;
}

.page-fishing-games-high-score-tips__cta-section {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games-high-score-tips__cta-section p {
  font-size: 1.15rem;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-fishing-games-high-score-tips__faq-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 60px 20px;
  background: #1e1e1e; /* Consistent dark background */
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games-high-score-tips__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-fishing-games-high-score-tips__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #26A9E0;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

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

.page-fishing-games-high-score-tips__faq-item summary:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

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

.page-fishing-games-high-score-tips__faq-answer {
  padding: 15px 20px;
  font-size: 1rem;
  color: #e0e0e0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.page-fishing-games-high-score-tips a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games-high-score-tips a:hover {
  color: #1a7bbd;
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-fishing-games-high-score-tips__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-fishing-games-high-score-tips__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
  .page-fishing-games-high-score-tips__sub-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }
  .page-fishing-games-high-score-tips__content-area,
  .page-fishing-games-high-score-tips__faq-section,
  .page-fishing-games-high-score-tips__conclusion-section {
    padding: 40px 15px;
  }
  .page-fishing-games-high-score-tips__hero-section {
    padding: 10px 15px 40px;
  }
}

@media (max-width: 768px) {
  .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__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games-high-score-tips__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  .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,
  .page-fishing-games-high-score-tips a[class*="button"],
  .page-fishing-games-high-score-tips a[class*="btn"] {
    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__cta-buttons,
  .page-fishing-games-high-score-tips__button-group,
  .page-fishing-games-high-score-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    overflow: hidden !important;
  }
  .page-fishing-games-high-score-tips__card-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-high-score-tips__list-item {
    font-size: 1rem;
  }
  .page-fishing-games-high-score-tips__faq-item summary {
    font-size: 1rem;
  }
  .page-fishing-games-high-score-tips__faq-answer {
    font-size: 0.95rem;
  }
}

/* Ensure content area images are not too small */
.page-fishing-games-high-score-tips__content-area img {
  min-width: 200px;
  min-height: 200px;
}

/* Color contrast adjustments for dark background */
.page-fishing-games-high-score-tips__dark-section {
  background: #121212; /* Using body background color directly or a similar dark shade */
  color: #ffffff; /* Light text on dark background */
}

.page-fishing-games-high-score-tips__light-bg {
  background: #1e1e1e; /* A slightly lighter dark background for content blocks */
  color: #ffffff; /* Light text on dark background */
}

.page-fishing-games-high-score-tips__card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
  color: #ffffff;
}

.page-fishing-games-high-score-tips__btn-primary {
  background: #EA7C07;
  color: #ffffff;
  border-color: #EA7C07;
}

.page-fishing-games-high-score-tips__btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.page-fishing-games-high-score-tips__section-title,
.page-fishing-games-high-score-tips__card-title {
  color: #26A9E0;
}

.page-fishing-games-high-score-tips__list-item strong,
.page-fishing-games-high-score-tips__faq-item summary {
  color: #26A9E0;
}

.page-fishing-games-high-score-tips a {
  color: #26A9E0;
}

.page-fishing-games-high-score-tips a:hover {
  color: #1a7bbd;
}