.page-fishing-games-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-primary);
}

.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;
  padding: 10px 0 60px 0; /* body handles --header-offset, so small top padding here */
  background: var(--bg-primary);
  overflow: hidden;
}

.page-fishing-games-strategy__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-fishing-games-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-fishing-games-strategy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-main);
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Adjust this value to bring content closer to the image */
}

.page-fishing-games-strategy__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-strategy__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
  color: var(--text-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-strategy__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--glow);
  border-radius: 2px;
}

.page-fishing-games-strategy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-secondary);
  text-align: justify;
}

.page-fishing-games-strategy__highlight {
  color: var(--text-main);
  font-weight: bold;
}

.page-fishing-games-strategy__introduction-section,
.page-fishing-games-strategy__advanced-strategy-section,
.page-fishing-games-strategy__mistakes-section,
.page-fishing-games-strategy__cta-section {
  padding: 60px 0;
  background-color: var(--bg-primary);
}

.page-fishing-games-strategy__basics-section,
.page-fishing-games-strategy__tips-section,
.page-fishing-games-strategy__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg);
}

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

.page-fishing-games-strategy__card {
  background: var(--deep-green);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-secondary);
}

.page-fishing-games-strategy__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-strategy__card-title {
  font-size: 1.5em;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games-strategy__card-text {
  font-size: 1em;
  line-height: 1.5;
}

.page-fishing-games-strategy__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__strategy-list,
.page-fishing-games-strategy__mistakes-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games-strategy__list-item {
  background: var(--deep-green);
  border-left: 5px solid var(--glow);
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: var(--text-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__list-item strong {
  color: var(--text-main);
}

.page-fishing-games-strategy__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

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

.page-fishing-games-strategy__faq-item {
  background: var(--deep-green);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games-strategy__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--divider);
}

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

.page-fishing-games-strategy__faq-item[open] summary {
  border-bottom: 1px solid var(--glow);
}

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

.page-fishing-games-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow);
}

.page-fishing-games-strategy__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-fishing-games-strategy__faq-answer p {
  margin: 0;
}

.page-fishing-games-strategy__faq-answer a {
  color: var(--glow);
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games-strategy__faq-answer a:hover {
  text-decoration: underline;
}

.page-fishing-games-strategy__cta-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-fishing-games-strategy__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* Custom Colors */
:root {
  --bg-primary: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games-strategy__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-strategy__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-fishing-games-strategy__hero-content {
    padding: 20px;
    margin-top: -80px;
  }

  .page-fishing-games-strategy__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-fishing-games-strategy__hero-description {
    font-size: clamp(0.9em, 3vw, 1.1em);
  }

  .page-fishing-games-strategy__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-fishing-games-strategy__text-block {
    font-size: 1em;
    padding: 0 15px;
  }

  .page-fishing-games-strategy__introduction-section,
  .page-fishing-games-strategy__advanced-strategy-section,
  .page-fishing-games-strategy__mistakes-section,
  .page-fishing-games-strategy__cta-section,
  .page-fishing-games-strategy__basics-section,
  .page-fishing-games-strategy__tips-section,
  .page-fishing-games-strategy__faq-section {
    padding: 40px 0;
  }

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

  .page-fishing-games-strategy__card {
    padding: 25px;
  }

  .page-fishing-games-strategy__card-title {
    font-size: 1.3em;
  }

  .page-fishing-games-strategy__list-item {
    font-size: 1em;
    padding: 15px 20px;
    margin: 0 15px 15px 15px;
  }

  .page-fishing-games-strategy__image-full-width {
    padding: 0 15px;
    margin-bottom: 30px;
  }

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

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

  .page-fishing-games-strategy__btn-primary {
    width: calc(100% - 30px) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px !important;
    margin-left: 15px;
    margin-right: 15px;
  }

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

  .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__section,
  .page-fishing-games-strategy__card,
  .page-fishing-games-strategy__container,
  .page-fishing-games-strategy__video-section,
  .page-fishing-games-strategy__video-container,
  .page-fishing-games-strategy__video-wrapper,
  .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;
    overflow: hidden !important;
  }

  .page-fishing-games-strategy__video-section {
    padding-top: 10px !important;
  }

  .page-fishing-games-strategy__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-strategy__hero-content {
    margin-top: -60px;
  }

  .page-fishing-games-strategy__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

  .page-fishing-games-strategy__hero-description {
    font-size: clamp(0.85em, 3.5vw, 1em);
  }

  .page-fishing-games-strategy__section-title {
    font-size: clamp(1.3em, 7vw, 1.8em);
  }
}