/* style/fishing-games-strategy.css */
.page-fishing-games-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #ffffff); /* Inherit from shared or default to white */
}

.page-fishing-games-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

.page-fishing-games-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.page-fishing-games-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-fishing-games-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 50px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text readability */
  border-radius: 8px;
}

.page-fishing-games-strategy__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games-strategy__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games-strategy__link-inline {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-fishing-games-strategy__link-inline:hover {
  color: #26A9E0;
}

.page-fishing-games-strategy__section {
  padding: 60px 20px;
}

.page-fishing-games-strategy__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games-strategy__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-fishing-games-strategy__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: inherit; /* Inherit color from parent section */
}

.page-fishing-games-strategy__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
  color: inherit;
}

.page-fishing-games-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: inherit;
}

.page-fishing-games-strategy__image-content-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-fishing-games-strategy__image-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block; /* Ensures proper spacing */
  margin: 0 auto;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

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

.page-fishing-games-strategy__grid-item {
  background-color: rgba(255, 255, 255, 0.1); /* Subtle background for dark section */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: inherit;
}

/* CTA Buttons */
.page-fishing-games-strategy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-fishing-games-strategy__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

.page-fishing-games-strategy__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games-strategy__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-fishing-games-strategy__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-strategy__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: inherit;
}

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: inherit;
  list-style: none; /* For details/summary */
}

.page-fishing-games-strategy__faq-question::-webkit-details-marker {
  display: none;
}

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

.page-fishing-games-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: inherit;
  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 25px;
  font-size: 1.05em;
  line-height: 1.7;
  color: inherit;
  /* For details/summary, browser handles visibility */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-fishing-games-strategy__hero-section {
    padding: 10px 15px 40px;
  }

  .page-fishing-games-strategy__hero-content {
    margin-top: 30px;
    padding: 15px;
  }

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

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

  .page-fishing-games-strategy__section {
    padding: 40px 15px;
  }

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

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

  .page-fishing-games-strategy__sub-title {
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-fishing-games-strategy__paragraph {
    font-size: 1em;
    margin-bottom: 15px;
  }

  .page-fishing-games-strategy__image-content-wrapper {
    margin: 30px 0;
  }

  .page-fishing-games-strategy__image-responsive {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-fishing-games-strategy__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    margin-bottom: 10px; /* Add margin for stacked buttons */
  }

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

  .page-fishing-games-strategy__grid-item {
    padding: 20px;
  }

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

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

  .page-fishing-games-strategy__faq-toggle {
    font-size: 1.2em;
  }

  /* Ensure all containers containing images/buttons/videos are responsive */
  .page-fishing-games-strategy__section,
  .page-fishing-games-strategy__card,
  .page-fishing-games-strategy__container,
  .page-fishing-games-strategy__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }
}