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

/* Base styles for the page content, ensuring text contrast on assumed dark body background */
.page-blog-fishing-game-high-score-secrets {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

/* Hero Section */
.page-blog-fishing-game-high-score-secrets__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-fishing-game-high-score-secrets__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.page-blog-fishing-game-high-score-secrets__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-fishing-game-high-score-secrets__hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-fishing-game-high-score-secrets__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-blog-fishing-game-high-score-secrets__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* CTA Button */
.page-blog-fishing-game-high-score-secrets__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-fishing-game-high-score-secrets__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-fishing-game-high-score-secrets__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

/* Content Area */
.page-blog-fishing-game-high-score-secrets__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-fishing-game-high-score-secrets__article {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-fishing-game-high-score-secrets__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Gold */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid #2E7A4E; /* Border */
  padding-bottom: 15px;
}

.page-blog-fishing-game-high-score-secrets__sub-title {
  font-size: 1.6em;
  color: #22C768; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-fishing-game-high-score-secrets__paragraph {
  font-size: 1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-blog-fishing-game-high-score-secrets__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-fishing-game-high-score-secrets__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-fishing-game-high-score-secrets__list-item {
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-fishing-game-high-score-secrets__list-item strong {
  color: #2AD16F; /* Button gradient start color for emphasis */
}

/* FAQ Section */
.page-blog-fishing-game-high-score-secrets__faq-list {
  margin-top: 30px;
}

.page-blog-fishing-game-high-score-secrets__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-fishing-game-high-score-secrets__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11A84E; /* Main color */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-fishing-game-high-score-secrets__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-fishing-game-high-score-secrets__faq-question:hover {
  background-color: #22C768; /* Auxiliary color */
}

.page-blog-fishing-game-high-score-secrets__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-blog-fishing-game-high-score-secrets__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-fishing-game-high-score-secrets__faq-answer .page-blog-fishing-game-high-score-secrets__paragraph {
  margin-bottom: 0;
  color: #A7D9B8; /* Text Secondary */
}

/* Footer CTA */
.page-blog-fishing-game-high-score-secrets__cta-footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px dashed #2E7A4E; /* Divider */
}

.page-blog-fishing-game-high-score-secrets__cta-footer .page-blog-fishing-game-high-score-secrets__paragraph {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-fishing-game-high-score-secrets__text-link {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
  font-weight: bold;
}

.page-blog-fishing-game-high-score-secrets__text-link:hover {
  color: #57E38D; /* Glow */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-fishing-game-high-score-secrets__hero-content {
    max-width: 768px;
  }

  .page-blog-fishing-game-high-score-secrets__article {
    padding: 25px;
  }

  .page-blog-fishing-game-high-score-secrets__section-title {
    font-size: 2em;
  }

  .page-blog-fishing-game-high-score-secrets__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-fishing-game-high-score-secrets__hero-section {
    padding: 10px 15px 40px;
  }

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

  .page-blog-fishing-game-high-score-secrets__hero-content {
    padding: 0 15px;
  }

  .page-blog-fishing-game-high-score-secrets__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-fishing-game-high-score-secrets__hero-description {
    font-size: 1em;
  }

  .page-blog-fishing-game-high-score-secrets__cta-button {
    padding: 12px 25px;
    font-size: 0.95em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-fishing-game-high-score-secrets__content-area {
    padding: 30px 15px;
  }

  .page-blog-fishing-game-high-score-secrets__article {
    padding: 20px;
  }

  .page-blog-fishing-game-high-score-secrets__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-fishing-game-high-score-secrets__sub-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 12px;
  }

  .page-blog-fishing-game-high-score-secrets__paragraph,
  .page-blog-fishing-game-high-score-secrets__list-item {
    font-size: 0.95em;
  }

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

  .page-blog-fishing-game-high-score-secrets__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-fishing-game-high-score-secrets__faq-answer {
    padding: 12px 20px 15px;
  }

  .page-blog-fishing-game-high-score-secrets__cta-footer {
    padding: 0 15px;
  }

  /* Ensure all content containers are responsive */
  .page-blog-fishing-game-high-score-secrets__section,
  .page-blog-fishing-game-high-score-secrets__card,
  .page-blog-fishing-game-high-score-secrets__container,
  .page-blog-fishing-game-high-score-secrets__faq-item,
  .page-blog-fishing-game-high-score-secrets__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Ensure images in content area are responsive */
  .page-blog-fishing-game-high-score-secrets img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure video containers are responsive */
  .page-blog-fishing-game-high-score-secrets__video-section,
  .page-blog-fishing-game-high-score-secrets__video-container,
  .page-blog-fishing-game-high-score-secrets__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-fishing-game-high-score-secrets__video-section {
    padding-top: 10px !important;
  }

  /* Button group specific responsive styles */
  .page-blog-fishing-game-high-score-secrets__cta-buttons,
  .page-blog-fishing-game-high-score-secrets__button-group,
  .page-blog-fishing-game-high-score-secrets__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;
    display: flex; /* Ensure flex context for wrap */
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
}