.page-fishing-games-guide {
  color: #f0f0f0; /* Dark body background, so light text for main content */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
  padding-top: 180px; /* For fixed header on desktop */
}

@media (max-width: 768px) {
  .page-fishing-games-guide {
    padding-top: 140px; /* For fixed header on mobile */
  }
}

.page-fishing-games-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-games-guide__section {
  padding: 60px 0;
  background: #0d0d0d; /* Slightly lighter dark background for sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-fishing-games-guide__section:last-of-type {
  border-bottom: none;
}

.page-fishing-games-guide__section-title {
  font-size: 38px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a1a, #000000);
  overflow: hidden;
}

.page-fishing-games-guide__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-fishing-games-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-fishing-games-guide__hero-image img:hover {
  transform: scale(1.03);
}

.page-fishing-games-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  margin-top: -80px; /* Overlap with image for visual appeal */
}

.page-fishing-games-guide__hero-title {
  font-size: 48px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
}

.page-fishing-games-guide__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-guide__hero-description a {
  color: #87CEEB;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games-guide__hero-description a:hover {
  color: #ADD8E6;
  text-decoration: underline;
}

.page-fishing-games-guide__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  border: none;
}

.page-fishing-games-guide__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  color: #000000;
}

.page-fishing-games-guide__cta-button--secondary {
  background: linear-gradient(135deg, #8B0000, #B22222);
  color: #ffffff;
}

.page-fishing-games-guide__cta-button--secondary:hover {
  background: linear-gradient(135deg, #B22222, #8B0000);
  color: #ffffff;
}

.page-fishing-games-guide__content-block {
  background: #1a1a1a; /* Darker background for content blocks */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games-guide__content-block p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.7;
}

.page-fishing-games-guide__content-block strong {
  color: #FFD700;
}

.page-fishing-games-guide__content-block a {
  color: #87CEEB;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games-guide__content-block a:hover {
  color: #ADD8E6;
  text-decoration: underline;
}

.page-fishing-games-guide__keyword {
  color: #FFD700;
  font-weight: bold;
}

.page-fishing-games-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-fishing-games-guide__card {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
}

.page-fishing-games-guide__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-guide__card-icon {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: contain;
  max-width: 100%;
}

.page-fishing-games-guide__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games-guide__card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
}

.page-fishing-games-guide__strategy-list,
.page-fishing-games-guide__steps-list {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.page-fishing-games-guide__strategy-list li,
.page-fishing-games-guide__steps-list li {
  background: #2a2a2a;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  font-size: 17px;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-fishing-games-guide__strategy-list li strong,
.page-fishing-games-guide__steps-list li strong {
  color: #FFD700;
}

.page-fishing-games-guide__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-guide__call-to-action {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: #8B0000;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
}

.page-fishing-games-guide__call-to-action a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games-guide__call-to-action a:hover {
  color: #FFEA00;
  text-decoration: underline;
}

/* FAQ Styles */
.page-fishing-games-guide__faq-section {
  background: #0d0d0d;
}

.page-fishing-games-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-fishing-games-guide__faq-question:hover {
  background: #2a2a2a;
  border-color: #555555;
}

.page-fishing-games-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #f0f0f0;
}

.page-fishing-games-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-fishing-games-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #2a2a2a;
  border-top: none;
  border-radius: 0 0 8px 8px;
  color: #cccccc;
}

.page-fishing-games-guide__faq-answer p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
}

.page-fishing-games-guide__faq-item.active .page-fishing-games-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border: 1px solid #333333;
  border-top: none;
}

.page-fishing-games-guide__faq-item.active .page-fishing-games-guide__faq-toggle {
  color: #8B0000;
  transform: rotate(45deg); /* Change + to X or - */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games-guide__hero-title {
    font-size: 42px;
  }
  .page-fishing-games-guide__hero-description {
    font-size: 18px;
  }
  .page-fishing-games-guide__cta-button {
    font-size: 20px;
    padding: 15px 35px;
  }
  .page-fishing-games-guide__section-title {
    font-size: 34px;
  }
  .page-fishing-games-guide__content-block {
    padding: 25px;
  }
  .page-fishing-games-guide__card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-guide__hero-section {
    padding: 40px 15px;
  }
  .page-fishing-games-guide__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-fishing-games-guide__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-fishing-games-guide__cta-button {
    font-size: 18px;
    padding: 12px 30px;
    margin-top: 15px;
  }
  .page-fishing-games-guide__section {
    padding: 40px 0;
  }
  .page-fishing-games-guide__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-fishing-games-guide__container {
    padding: 0 15px;
  }
  .page-fishing-games-guide__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games-guide__content-block {
    padding: 20px;
  }
  .page-fishing-games-guide__content-block p,
  .page-fishing-games-guide__card-text {
    font-size: 15px;
  }
  .page-fishing-games-guide__strategy-list li,
  .page-fishing-games-guide__steps-list li {
    font-size: 15px;
    padding: 12px 15px;
  }
  .page-fishing-games-guide__faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games-guide__faq-question h3 {
    font-size: 16px;
  }
  .page-fishing-games-guide__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
  }
  .page-fishing-games-guide__faq-answer {
    padding: 0 20px;
  }
  .page-fishing-games-guide__faq-item.active .page-fishing-games-guide__faq-answer {
    padding: 15px 20px !important;
  }
  .page-fishing-games-guide__hero-content {
    margin-top: -60px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-guide__hero-title {
    font-size: 26px;
  }
  .page-fishing-games-guide__hero-description {
    font-size: 14px;
  }
  .page-fishing-games-guide__cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }
  .page-fishing-games-guide__section-title {
    font-size: 24px;
  }
  .page-fishing-games-guide__content-block p,
  .page-fishing-games-guide__card-text {
    font-size: 14px;
  }
  .page-fishing-games-guide__card-title {
    font-size: 20px;
  }
  .page-fishing-games-guide__card-icon {
    width: 120px;
  }
  .page-fishing-games-guide__strategy-list li,
  .page-fishing-games-guide__steps-list li {
    font-size: 14px;
  }
  .page-fishing-games-guide__faq-question h3 {
    font-size: 15px;
  }
  .page-fishing-games-guide__faq-toggle {
    font-size: 22px;
    width: 24px;
    height: 24px;
  }
}