/* style/blog-fish-game-high-score-tips.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-color: #333333;
  --heading-color: #017439;
  --background-color: #FFFFFF;
  --link-color: #017439;
  --border-color: #e0e0e0;
  --button-register-bg: #C30808;
  --button-login-bg: #C30808;
  --button-text-color-yellow: #FFFF00;
}

.page-blog-fish-game-high-score-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

.page-blog-fish-game-high-score-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background-color);
}

.page-blog-fish-game-high-score-tips__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-blog-fish-game-high-score-tips__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-fish-game-high-score-tips__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-blog-fish-game-high-score-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-blog-fish-game-high-score-tips__hero-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-fish-game-high-score-tips__hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-color);
  margin-bottom: 25px;
}

.page-blog-fish-game-high-score-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-register-bg);
  color: var(--button-text-color-yellow);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-fish-game-high-score-tips__cta-button:hover {
  background: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-fish-game-high-score-tips__cta-button--register {
  background: var(--button-register-bg);
  color: var(--button-text-color-yellow);
}

.page-blog-fish-game-high-score-tips__cta-button--play-now {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-fish-game-high-score-tips__cta-button--play-now:hover {
  background: #005a2d;
  color: var(--secondary-color);
}

.page-blog-fish-game-high-score-tips__content-section {
  padding: 40px 20px;
  background-color: var(--background-color);
}

.page-blog-fish-game-high-score-tips__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog-fish-game-high-score-tips__section-title {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--heading-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

.page-blog-fish-game-high-score-tips__sub-title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--heading-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-fish-game-high-score-tips__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-fish-game-high-score-tips__text-block strong {
  color: var(--primary-color);
}

.page-blog-fish-game-high-score-tips__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-blog-fish-game-high-score-tips__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-blog-fish-game-high-score-tips__list-item {
  font-size: 17px;
  margin-bottom: 10px;
}

.page-blog-fish-game-high-score-tips__image-wrapper {
  margin: 30px auto;
  text-align: center;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-fish-game-high-score-tips__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-fish-game-high-score-tips__image-caption {
  font-size: 15px;
  color: #666666;
  padding: 10px 15px;
  background-color: #f9f9f9;
  border-top: 1px solid var(--border-color);
}

.page-blog-fish-game-high-score-tips__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 30px 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-fish-game-high-score-tips__cta-section--final {
  margin-bottom: 50px;
}

.page-blog-fish-game-high-score-tips__cta-section p {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 25px;
}

/* FAQ Section */
.page-blog-fish-game-high-score-tips__faq-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

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

details.page-blog-fish-game-high-score-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--secondary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

details.page-blog-fish-game-high-score-tips__faq-item summary.page-blog-fish-game-high-score-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-blog-fish-game-high-score-tips__faq-item summary.page-blog-fish-game-high-score-tips__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-fish-game-high-score-tips__faq-item summary.page-blog-fish-game-high-score-tips__faq-question:hover {
  background: #f0f0f0;
}

.page-blog-fish-game-high-score-tips__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--heading-color);
}

.page-blog-fish-game-high-score-tips__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-blog-fish-game-high-score-tips__faq-item[open] .page-blog-fish-game-high-score-tips__faq-toggle {
  transform: rotate(45deg);
}

details.page-blog-fish-game-high-score-tips__faq-item .page-blog-fish-game-high-score-tips__faq-answer {
  padding: 0 20px 20px;
  background: #f5f5f5;
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  color: var(--text-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-fish-game-high-score-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-fish-game-high-score-tips__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-fish-game-high-score-tips__hero-content h1 {
    font-size: 26px;
  }

  .page-blog-fish-game-high-score-tips__hero-content p {
    font-size: 16px;
  }

  .page-blog-fish-game-high-score-tips__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-fish-game-high-score-tips__cta-section p {
    font-size: 18px;
  }

  .page-blog-fish-game-high-score-tips__content-section,
  .page-blog-fish-game-high-score-tips__faq-section {
    padding: 30px 15px;
  }

  .page-blog-fish-game-high-score-tips__section-title {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-fish-game-high-score-tips__sub-title {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-fish-game-high-score-tips__text-block,
  .page-blog-fish-game-high-score-tips__list-item {
    font-size: 16px;
  }

  .page-blog-fish-game-high-score-tips__image-wrapper {
    margin: 20px auto;
  }

  .page-blog-fish-game-high-score-tips__image-wrapper img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-fish-game-high-score-tips__cta-section {
    padding: 20px 15px;
    margin-top: 40px;
  }

  details.page-blog-fish-game-high-score-tips__faq-item summary.page-blog-fish-game-high-score-tips__faq-question {
    padding: 15px;
  }

  .page-blog-fish-game-high-score-tips__faq-qtext {
    font-size: 16px;
  }

  .page-blog-fish-game-high-score-tips__faq-toggle {
    font-size: 24px;
    width: 24px;
  }

  .page-blog-fish-game-high-score-tips__faq-answer {
    padding: 0 15px 15px;
    font-size: 15px;
  }
}

/* Ensure all containers for images and buttons handle overflow on mobile */
.page-blog-fish-game-high-score-tips__hero-container,
.page-blog-fish-game-high-score-tips__cta-section,
.page-blog-fish-game-high-score-tips__image-wrapper,
.page-blog-fish-game-high-score-tips__container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}