/* style/blog-fishing-games-high-score-tips.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg-color: #11271B;
  --background-dark: #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;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-fishing-games-high-score-tips {
  background-color: var(--background-dark); /* Body background is dark, so text is light */
  color: var(--text-main-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-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 top padding, body handles --header-offset */
  background-color: var(--deep-green-color);
  overflow: hidden;
}

.page-blog-fishing-games-high-score-tips__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-fishing-games-high-score-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-fishing-games-high-score-tips__hero-content {
  text-align: center;
  padding: 30px 0;
  max-width: 900px;
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 0 15px var(--glow-color);
  border: 1px solid var(--border-color);
}

.page-blog-fishing-games-high-score-tips__main-title {
  color: var(--gold-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.6);
}

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

.page-blog-fishing-games-high-score-tips__cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-fishing-games-high-score-tips__cta-button--primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
}

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

.page-blog-fishing-games-high-score-tips__cta-button--secondary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  margin-top: 20px;
}

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

.page-blog-fishing-games-high-score-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-dark);
  color: var(--text-main-color);
}

.page-blog-fishing-games-high-score-tips__section-title {
  color: var(--gold-color);
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.page-blog-fishing-games-high-score-tips__paragraph {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: var(--text-main-color);
}

.page-blog-fishing-games-high-score-tips__highlight-text {
  color: var(--glow-color);
  font-weight: bold;
}

.page-blog-fishing-games-high-score-tips__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
  object-fit: cover;
}

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

.page-blog-fishing-games-high-score-tips__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-fishing-games-high-score-tips__inline-link {
  color: var(--gold-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-blog-fishing-games-high-score-tips__inline-link:hover {
  color: var(--glow-color);
}

.page-blog-fishing-games-high-score-tips__faq-list {
  margin-top: 30px;
  background-color: var(--card-bg-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
}

.page-blog-fishing-games-high-score-tips__faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 15px;
}

.page-blog-fishing-games-high-score-tips__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-blog-fishing-games-high-score-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  color: var(--text-main-color);
  font-size: 1.1em;
  padding: 10px 0;
  list-style: none; /* For details summary */
}

.page-blog-fishing-games-high-score-tips__faq-question::-webkit-details-marker {
  display: none; /* For details summary */
}

.page-blog-fishing-games-high-score-tips__faq-qtext {
  flex-grow: 1;
  color: var(--gold-color);
}

.page-blog-fishing-games-high-score-tips__faq-toggle {
  font-size: 1.5em;
  margin-left: 10px;
  color: var(--glow-color);
}

.page-blog-fishing-games-high-score-tips__faq-answer {
  color: var(--text-secondary-color);
  padding: 10px 0 0 0;
  font-size: 1em;
}

.page-blog-fishing-games-high-score-tips__cta-footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--divider-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-fishing-games-high-score-tips__main-title {
    font-size: 2.5em;
  }
  .page-blog-fishing-games-high-score-tips__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-blog-fishing-games-high-score-tips {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-fishing-games-high-score-tips__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-fishing-games-high-score-tips__hero-content {
    padding: 20px;
    margin-top: 15px;
  }
  .page-blog-fishing-games-high-score-tips__main-title {
    font-size: 2em;
  }
  .page-blog-fishing-games-high-score-tips__intro-text {
    font-size: 1em;
  }
  .page-blog-fishing-games-high-score-tips__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-fishing-games-high-score-tips__content-area {
    padding: 30px 15px;
  }
  .page-blog-fishing-games-high-score-tips__section-title {
    font-size: 1.5em;
    margin-top: 30px;
  }
  .page-blog-fishing-games-high-score-tips__paragraph,
  .page-blog-fishing-games-high-score-tips__list-item {
    font-size: 0.95em;
  }
  .page-blog-fishing-games-high-score-tips__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-blog-fishing-games-high-score-tips__faq-question {
    font-size: 1em;
  }
  .page-blog-fishing-games-high-score-tips__faq-answer {
    font-size: 0.9em;
  }
  /* Ensure containers also adapt */
  .page-blog-fishing-games-high-score-tips__hero-image-wrapper,
  .page-blog-fishing-games-high-score-tips__content-area,
  .page-blog-fishing-games-high-score-tips__faq-list,
  .page-blog-fishing-games-high-score-tips__cta-footer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-blog-fishing-games-high-score-tips__main-title {
    font-size: 1.8em;
  }
  .page-blog-fishing-games-high-score-tips__section-title {
    font-size: 1.3em;
  }
}