/* style/blog-ps99-fishing-game-guide.css */

/* Custom Colors */
:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
}

.page-blog-ps99-fishing-game-guide {
  font-family: 'Arial', sans-serif;
  color: var(--color-text-main); /* Default text color for dark background */
  background-color: var(--color-background);
}

.page-blog-ps99-fishing-game-guide__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 */
  text-align: center;
  background-color: var(--color-background);
}

.page-blog-ps99-fishing-game-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-blog-ps99-fishing-game-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-ps99-fishing-game-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-ps99-fishing-game-guide__main-title {
  color: var(--color-gold);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  /* Using clamp for responsive font size, but not overly large */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-blog-ps99-fishing-game-guide__lead-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

.page-blog-ps99-fishing-game-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--color-background);
  color: var(--color-text-main);
}

.page-blog-ps99-fishing-game-guide__section-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-ps99-fishing-game-guide__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-primary);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-divider);
}

.page-blog-ps99-fishing-game-guide__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-gold);
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-ps99-fishing-game-guide__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--color-text-secondary);
}

.page-blog-ps99-fishing-game-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-ps99-fishing-game-guide__image-centered {
  display: block;
  margin: 30px auto;
  max-width: 80%; /* Smaller than full-width for content images */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-ps99-fishing-game-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--color-text-secondary);
}

.page-blog-ps99-fishing-game-guide__list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-blog-ps99-fishing-game-guide__list li strong {
  color: var(--color-text-main);
}

.page-blog-ps99-fishing-game-guide__ordered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--color-text-secondary);
}

.page-blog-ps99-fishing-game-guide__ordered-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-blog-ps99-fishing-game-guide__ordered-list li strong {
  color: var(--color-text-main);
}

.page-blog-ps99-fishing-game-guide__link-inline {
  color: var(--color-glow);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-ps99-fishing-game-guide__link-inline:hover {
  color: var(--color-gold);
}

.page-blog-ps99-fishing-game-guide__btn-primary,
.page-blog-ps99-fishing-game-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-ps99-fishing-game-guide__btn-primary:hover,
.page-blog-ps99-fishing-game-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog-ps99-fishing-game-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background: transparent;
  color: var(--color-glow);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--color-glow);
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-left: 20px;
}

.page-blog-ps99-fishing-game-guide__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background: var(--color-glow);
  color: var(--color-background);
}

.page-blog-ps99-fishing-game-guide__dark-section {
  background-color: var(--color-card-bg);
  color: var(--color-text-main);
  padding: 40px 20px;
}

.page-blog-ps99-fishing-game-guide__faq-section {
  padding: 60px 20px;
  background-color: var(--color-background);
}

.page-blog-ps99-fishing-game-guide__faq-list {
  margin-top: 40px;
}

.page-blog-ps99-fishing-game-guide__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--color-text-main);
}

.page-blog-ps99-fishing-game-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-gold);
  background-color: var(--color-deep-green);
  border-bottom: 1px solid var(--color-border);
  list-style: none; /* For details/summary */
}

.page-blog-ps99-fishing-game-guide__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-ps99-fishing-game-guide__faq-item[open] > .page-blog-ps99-fishing-game-guide__faq-question {
  border-bottom: 1px solid var(--color-border);
}

.page-blog-ps99-fishing-game-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-glow);
  transition: transform 0.3s ease;
}

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

.page-blog-ps99-fishing-game-guide__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  background-color: var(--color-card-bg);
}

.page-blog-ps99-fishing-game-guide__faq-answer p {
  margin-bottom: 0;
}

.page-blog-ps99-fishing-game-guide__cta-section {
  background-color: var(--color-deep-green);
  padding: 60px 20px;
  text-align: center;
}

.page-blog-ps99-fishing-game-guide__cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-ps99-fishing-game-guide__cta-title {
  color: var(--color-gold);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.page-blog-ps99-fishing-game-guide__cta-description {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-blog-ps99-fishing-game-guide__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-blog-ps99-fishing-game-guide__conclusion-section {
  padding: 40px 20px;
  background-color: var(--color-background);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-ps99-fishing-game-guide__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-ps99-fishing-game-guide__section-title {
    font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  }
  .page-blog-ps99-fishing-game-guide__sub-title {
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  }
}

@media (max-width: 768px) {
  .page-blog-ps99-fishing-game-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-ps99-fishing-game-guide__hero-section,
  .page-blog-ps99-fishing-game-guide__content-area,
  .page-blog-ps99-fishing-game-guide__faq-section,
  .page-blog-ps99-fishing-game-guide__cta-section,
  .page-blog-ps99-fishing-game-guide__conclusion-section {
    padding: 20px 15px;
  }

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

  .page-blog-ps99-fishing-game-guide__lead-text {
    font-size: 1rem;
  }

  .page-blog-ps99-fishing-game-guide__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .page-blog-ps99-fishing-game-guide__sub-title {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
  }

  /* Images responsiveness */
  .page-blog-ps99-fishing-game-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  .page-blog-ps99-fishing-game-guide__hero-image-wrapper,
  .page-blog-ps99-fishing-game-guide__section-wrapper,
  .page-blog-ps99-fishing-game-guide__button-group,
  .page-blog-ps99-fishing-game-guide__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  /* Buttons responsiveness */
  .page-blog-ps99-fishing-game-guide__cta-button,
  .page-blog-ps99-fishing-game-guide__btn-primary,
  .page-blog-ps99-fishing-game-guide__btn-secondary,
  .page-blog-ps99-fishing-game-guide a[class*="button"],
  .page-blog-ps99-fishing-game-guide 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;
    margin-left: 0 !important; /* Reset margin for stacked buttons */
    margin-bottom: 15px; /* Add spacing between stacked buttons */
  }
  
  .page-blog-ps99-fishing-game-guide__button-group {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 0; /* Remove gap when stacked */
    align-items: center;
  }

  .page-blog-ps99-fishing-game-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-ps99-fishing-game-guide__faq-answer {
    padding: 10px 20px 15px;
  }
}