.page-fishing-games-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: transparent; /* Inherit from body or use a subtle dark tone */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-fishing-games-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games-strategy__section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Subtle dark background for sections */
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.page-fishing-games-strategy__section:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.02);
}

.page-fishing-games-strategy__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-color: #0a0a0a;
  padding-top: 0; /* Handled by main tag */
}

.page-fishing-games-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-fishing-games-strategy__hero-overlay {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  max-width: 800px;
}

.page-fishing-games-strategy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-fishing-games-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games-strategy__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-strategy__subsection-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #017439;
  padding-left: 15px;
}

.page-fishing-games-strategy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-fishing-games-strategy__image-wrapper,
.page-fishing-games-strategy__video-wrapper {
  margin: 40px 0;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-fishing-games-strategy__image,
.page-fishing-games-strategy__video {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-fishing-games-strategy__video-link {
  display: block;
  position: relative;
  cursor: pointer;
}

.page-fishing-games-strategy__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.page-fishing-games-strategy__video-link:hover .page-fishing-games-strategy__video-overlay {
  opacity: 1;
}

.page-fishing-games-strategy__list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games-strategy__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-strategy__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__list-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
}

.page-fishing-games-strategy__list-item p {
  color: #e0e0e0;
}

.page-fishing-games-strategy__list {
  list-style: disc;
  margin-left: 20px;
  color: #e0e0e0;
}

.page-fishing-games-strategy__list-item strong {
  color: #ffffff;
}

.page-fishing-games-strategy__btn-primary {
  display: inline-block;
  background: #017439;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-strategy__btn-primary:hover {
  background-color: #02a04c;
  transform: translateY(-2px);
}

.page-fishing-games-strategy__btn-center {
  display: block;
  margin: 40px auto 0 auto;
  text-align: center;
  max-width: 300px;
}

.page-fishing-games-strategy__promotion-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__promotion-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games-strategy__card-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 10px;
}

.page-fishing-games-strategy__card-description {
  color: #e0e0e0;
}

.page-fishing-games-strategy__faq-list {
  margin-top: 30px;
}

.page-fishing-games-strategy__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  background-color: rgba(1, 116, 57, 0.8);
  transition: background-color 0.3s ease;
  list-style: none; /* Hide default marker for details summary */
}

.page-fishing-games-strategy__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details summary */
}

.page-fishing-games-strategy__faq-question:hover {
  background-color: #017439;
}

.page-fishing-games-strategy__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games-strategy__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-fishing-games-strategy__faq-item[open] .page-fishing-games-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games-strategy__faq-answer {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
  font-size: 1.1em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-strategy__hero-title {
    font-size: 2.8em;
  }

  .page-fishing-games-strategy__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-strategy {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important; /* Ensure padding-top for mobile */
  }

  .page-fishing-games-strategy__container {
    padding: 0 15px;
  }

  .page-fishing-games-strategy__hero-section {
    min-height: 400px;
  }

  .page-fishing-games-strategy__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-fishing-games-strategy__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-fishing-games-strategy__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-fishing-games-strategy__btn-center {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-fishing-games-strategy__subsection-title {
    font-size: 1.4em;
  }

  .page-fishing-games-strategy__text-block {
    font-size: 1em;
  }

  .page-fishing-games-strategy__image,
  .page-fishing-games-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-strategy__image-wrapper,
  .page-fishing-games-strategy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games-strategy__list-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-fishing-games-strategy__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-fishing-games-strategy__faq-answer {
    font-size: 0.95em;
    padding: 15px;
  }

  .page-fishing-games-strategy__section,
  .page-fishing-games-strategy__promotion-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-strategy__hero-overlay {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-strategy__hero-title {
    font-size: 1.8em;
  }

  .page-fishing-games-strategy__section-title {
    font-size: 1.5em;
  }
}