/* style/blog-fishing-game-high-score-tips.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color: #333333;
  --light-bg: #f8f9fa;
  --dark-bg: #0d0d0d;
  --border-color: #e0e0e0;
  --link-color: #26A9E0;
  --login-button-color: #EA7C07;
}

.page-blog-fishing-game-high-score-tips {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--secondary-color); /* Default light background */
}

.page-blog-fishing-game-high-score-tips__hero-article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #F0F8FF; /* Light blue tint */
  border-bottom: 1px solid var(--border-color);
}

.page-blog-fishing-game-high-score-tips__hero-image {
  width: 100%;
  max-width: 1000px; /* Constrain image width for article hero */
  margin-bottom: 30px;
}

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

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

.page-blog-fishing-game-high-score-tips__main-title {
  font-size: clamp(2.2rem, 4vw, 2.8rem); /* Responsive font size for H1 */
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-fishing-game-high-score-tips__description {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-fishing-game-high-score-tips__meta-info {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.page-blog-fishing-game-high-score-tips__publish-date,
.page-blog-fishing-game-high-score-tips__author {
  margin: 0 10px;
}

.page-blog-fishing-game-high-score-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  max-width: 100%; /* For mobile button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-fishing-game-high-score-tips__cta-button:hover {
  background: #1e87c0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-fishing-game-high-score-tips__cta-button--bottom {
  background: var(--login-button-color);
}

.page-blog-fishing-game-high-score-tips__cta-button--bottom:hover {
  background: #c76706;
}

.page-blog-fishing-game-high-score-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--secondary-color); /* Explicitly white for content */
  color: var(--text-color);
}

.page-blog-fishing-game-high-score-tips__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-fishing-game-high-score-tips__section-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 700;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.page-blog-fishing-game-high-score-tips__sub-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-fishing-game-high-score-tips p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-blog-fishing-game-high-score-tips__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-fishing-game-high-score-tips__list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

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

.page-blog-fishing-game-high-score-tips__image-full-width {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-blog-fishing-game-high-score-tips__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 20px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  max-width: 100%; /* For mobile button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-fishing-game-high-score-tips__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

details.page-blog-fishing-game-high-score-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--secondary-color);
}

details.page-blog-fishing-game-high-score-tips__faq-item summary.page-blog-fishing-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-fishing-game-high-score-tips__faq-item summary.page-blog-fishing-game-high-score-tips__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-fishing-game-high-score-tips__faq-item summary.page-blog-fishing-game-high-score-tips__faq-question:hover {
  background: var(--light-bg);
}

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

.page-blog-fishing-game-high-score-tips__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-fishing-game-high-score-tips__faq-item .page-blog-fishing-game-high-score-tips__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: var(--text-color);
}

.page-blog-fishing-game-high-score-tips__call-to-action {
  text-align: center;
  margin-top: 50px;
  padding: 30px 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-fishing-game-high-score-tips__call-to-action p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-fishing-game-high-score-tips__hero-article {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-blog-fishing-game-high-score-tips__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-fishing-game-high-score-tips__description,
  .page-blog-fishing-game-high-score-tips p,
  .page-blog-fishing-game-high-score-tips__list li,
  .page-blog-fishing-game-high-score-tips__faq-qtext {
    font-size: 1rem;
  }

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

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

  .page-blog-fishing-game-high-score-tips__cta-button,
  .page-blog-fishing-game-high-score-tips__btn-secondary {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 10px;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-blog-fishing-game-high-score-tips__content-area,
  .page-blog-fishing-game-high-score-tips__container,
  .page-blog-fishing-game-high-score-tips__call-to-action {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

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

  details.page-blog-fishing-game-high-score-tips__faq-item .page-blog-fishing-game-high-score-tips__faq-answer {
    padding: 0 15px 15px;
  }

  .page-blog-fishing-game-high-score-tips__call-to-action p {
    font-size: 1rem;
  }
}