.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); /* Ensure body background is respected */
}

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

.page-fishing-games-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-color: #26A9E0;
  padding: 80px 20px;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

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

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

.page-fishing-games-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

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

.page-fishing-games-strategy__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-strategy__btn-primary {
  display: inline-block;
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games-strategy__btn-primary:hover {
  background-color: #d16b06;
}

.page-fishing-games-strategy__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games-strategy__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #26A9E0;
}

.page-fishing-games-strategy__sub-title {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-fishing-games-strategy__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
  text-align: left;
}

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

.page-fishing-games-strategy__dark-section .page-fishing-games-strategy__section-title,
.page-fishing-games-strategy__dark-section .page-fishing-games-strategy__sub-title {
  color: #ffffff;
}

.page-fishing-games-strategy__dark-section .page-fishing-games-strategy__text-block {
  color: #f0f0f0;
}

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

.page-fishing-games-strategy__feature-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.page-fishing-games-strategy__feature-card:hover {
  transform: translateY(-10px);
}

.page-fishing-games-strategy__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px;
  min-width: 200px;
}

.page-fishing-games-strategy__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-fishing-games-strategy__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-fishing-games-strategy__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 30px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 200px;
  min-width: 200px;
}

.page-fishing-games-strategy__list,
.page-fishing-games-strategy__ordered-list {
  list-style-type: disc;
  text-align: left;
  margin: 20px auto;
  max-width: 800px;
  padding-left: 40px;
  color: #333333;
}

.page-fishing-games-strategy__ordered-list {
  list-style-type: decimal;
}

.page-fishing-games-strategy__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.6;
}

.page-fishing-games-strategy__video-section {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.page-fishing-games-strategy__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-strategy__video-wrapper .page-fishing-games-strategy__video,
.page-fishing-games-strategy__video-wrapper .page-fishing-games-strategy__video-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-fishing-games-strategy__video-link-overlay {
  display: block;
  z-index: 1;
  background: rgba(0,0,0,0.1); /* Slight overlay to indicate clickable area */
}

.page-fishing-games-strategy__faq-section {
  background-color: #ffffff; /* Light background for FAQ */
  padding: 60px 0;
}

.page-fishing-games-strategy__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.page-fishing-games-strategy__faq-item {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #eaf7ff;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

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

.page-fishing-games-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  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: 15px 25px 20px;
  font-size: 1.05em;
  color: #555555;
  line-height: 1.7;
  background-color: #ffffff;
}

.page-fishing-games-strategy__cta-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-fishing-games-strategy__cta-section .page-fishing-games-strategy__section-title {
  color: #ffffff;
}

.page-fishing-games-strategy__cta-section .page-fishing-games-strategy__text-block {
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-strategy__inline-link {
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games-strategy__inline-link:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games-strategy__hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games-strategy__hero-description {
    font-size: 1.2em;
  }
  .page-fishing-games-strategy__section-title {
    font-size: 2em;
  }
  .page-fishing-games-strategy__sub-title {
    font-size: 1.7em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-strategy__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-fishing-games-strategy__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games-strategy__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-strategy__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fishing-games-strategy__section {
    padding: 40px 0;
  }
  .page-fishing-games-strategy__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-strategy__sub-title {
    font-size: 1.5em;
  }
  .page-fishing-games-strategy__text-block,
  .page-fishing-games-strategy__list-item,
  .page-fishing-games-strategy__feature-description,
  .page-fishing-games-strategy__faq-answer p {
    font-size: 1em;
  }
  .page-fishing-games-strategy__container {
    padding: 0 15px;
  }
  .page-fishing-games-strategy__feature-card {
    padding: 20px;
  }
  .page-fishing-games-strategy__feature-title {
    font-size: 1.3em;
  }
  .page-fishing-games-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-fishing-games-strategy__list,
  .page-fishing-games-strategy__ordered-list {
    padding-left: 25px;
  }

  /* Mobile image responsiveness */
  .page-fishing-games-strategy img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile video responsiveness */
  .page-fishing-games-strategy video,
  .page-fishing-games-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games-strategy__video-section,
  .page-fishing-games-strategy__video-container,
  .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__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  /* Mobile button responsiveness */
  .page-fishing-games-strategy__btn-primary,
  .page-fishing-games-strategy a[class*="button"],
  .page-fishing-games-strategy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important; /* Ensure full width on mobile */
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-strategy__cta-buttons,
  .page-fishing-games-strategy__button-group,
  .page-fishing-games-strategy__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;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-strategy__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games-strategy__hero-description {
    font-size: 0.9em;
  }
  .page-fishing-games-strategy__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games-strategy__sub-title {
    font-size: 1.3em;
  }
  .page-fishing-games-strategy__faq-question {
    font-size: 1em;
  }
  .page-fishing-games-strategy__faq-answer {
    font-size: 0.95em;
  }
}