.page-fishing-games-tips {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000000; /* Body background is dark */
}

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

.page-fishing-games-tips__hero-section {
  position: relative;
  padding: 120px 0 60px; /* Adjusted padding-top for header offset */
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px);
}

.page-fishing-games-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-fishing-games-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games-tips__btn-primary,
.page-fishing-games-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games-tips__btn-primary {
  background-color: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

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

.page-fishing-games-tips__btn-secondary:hover {
  background-color: #e0f5ff;
  color: #1e87b7;
  border-color: #1e87b7;
}

.page-fishing-games-tips__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-fishing-games-tips__intro-section,
.page-fishing-games-tips__weapons-section,
.page-fishing-games-tips__advanced-strategies-section,
.page-fishing-games-tips__expert-tips-section,
.page-fishing-games-tips__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Dark background for content sections */
  color: #f0f0f0; /* Light text for dark background */
}

.page-fishing-games-tips__advantages-section,
.page-fishing-games-tips__basic-skills-section,
.page-fishing-games-tips__cta-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly darker background for contrast */
  color: #f0f0f0;
}

.page-fishing-games-tips__light-bg .page-fishing-games-tips__section-title,
.page-fishing-games-tips__light-bg h3 {
  color: #26A9E0;
}

.page-fishing-games-tips__dark-bg .page-fishing-games-tips__section-title,
.page-fishing-games-tips__dark-bg h3 {
  color: #ffffff;
}

.page-fishing-games-tips__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games-tips__text-block a {
  color: #26A9E0;
  text-decoration: none;
}

.page-fishing-games-tips__text-block a:hover {
  text-decoration: underline;
}

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

.page-fishing-games-tips__image--full-width {
  width: 100%;
}

.page-fishing-games-tips__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-tips__image--right {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  width: 60%;
}

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

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

.page-fishing-games-tips__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards on dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

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

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

.page-fishing-games-tips__list,
.page-fishing-games-tips__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

.page-fishing-games-tips__list li,
.page-fishing-games-tips__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-fishing-games-tips__faq-list {
  margin-top: 40px;
}

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

.page-fishing-games-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-fishing-games-tips__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-fishing-games-tips__faq-answer p {
  margin: 0;
  padding-bottom: 15px;
}

.page-fishing-games-tips__faq-item.active .page-fishing-games-tips__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-fishing-games-tips__faq-item.active .page-fishing-games-tips__faq-toggle {
  transform: rotate(45deg);
}

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

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

  .page-fishing-games-tips__image--right {
    float: none;
    margin: 30px auto;
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-tips__hero-section {
    min-height: 400px;
    padding: 100px 0 40px; /* Adjusted padding-top for mobile header offset */
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-fishing-games-tips__hero-title {
    font-size: 2.2em;
  }

  .page-fishing-games-tips__hero-description {
    font-size: 1em;
  }

  .page-fishing-games-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games-tips__section-title {
    font-size: 1.8em;
  }

  .page-fishing-games-tips__intro-section,
  .page-fishing-games-tips__advantages-section,
  .page-fishing-games-tips__weapons-section,
  .page-fishing-games-tips__basic-skills-section,
  .page-fishing-games-tips__advanced-strategies-section,
  .page-fishing-games-tips__expert-tips-section,
  .page-fishing-games-tips__faq-section,
  .page-fishing-games-tips__cta-section {
    padding: 50px 0;
  }

  .page-fishing-games-tips__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games-tips__grid-3-columns,
  .page-fishing-games-tips__grid-2-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games-tips__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 20px auto !important;
  }

  .page-fishing-games-tips__text-block,
  .page-fishing-games-tips__list li,
  .page-fishing-games-tips__ordered-list li,
  .page-fishing-games-tips__card-text {
    font-size: 1em;
  }

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

  .page-fishing-games-tips__faq-answer {
    padding: 0 20px;
  }

  .page-fishing-games-tips__faq-item.active .page-fishing-games-tips__faq-answer {
    padding: 15px 20px;
  }
  
  .page-fishing-games-tips__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}