/* style/fishing-games-tips.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-login-bg: #EA7C07;
}

.page-fishing-games-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default for light background */
  background-color: var(--secondary-color);
}

.page-fishing-games-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-fishing-games-tips__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
}

.page-fishing-games-tips__hero-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-dark); /* Ensure contrast with potential light background */
}

.page-fishing-games-tips__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-fishing-games-tips__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-dark);
}

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

.page-fishing-games-tips__btn-primary,
.page-fishing-games-tips__btn-secondary,
.page-fishing-games-tips__btn-small {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, 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: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-fishing-games-tips__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-fishing-games-tips__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-fishing-games-tips__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-fishing-games-tips__btn-small {
  padding: 8px 15px;
  font-size: 0.9em;
  background-color: var(--button-login-bg);
  color: var(--text-light);
  border: 1px solid var(--button-login-bg);
}

.page-fishing-games-tips__btn-small:hover {
  background-color: darken(var(--button-login-bg), 10%);
  border-color: darken(var(--button-login-bg), 10%);
}

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

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

.page-fishing-games-tips__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
}

.page-fishing-games-tips__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-fishing-games-tips p {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.page-fishing-games-tips__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-fishing-games-tips__list li {
  margin-bottom: 10px;
}

.page-fishing-games-tips__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games-tips__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-fishing-games-tips__dark-bg .page-fishing-games-tips__section-title,
.page-fishing-games-tips__dark-bg .page-fishing-games-tips__sub-title {
  color: var(--text-light);
}

.page-fishing-games-tips__dark-bg p,
.page-fishing-games-tips__dark-bg .page-fishing-games-tips__list li {
  color: var(--text-light);
}

.page-fishing-games-tips__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-fishing-games-tips__light-bg .page-fishing-games-tips__section-title,
.page-fishing-games-tips__light-bg .page-fishing-games-tips__sub-title {
  color: var(--primary-color);
}

.page-fishing-games-tips__faq-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

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

.page-fishing-games-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-light);
  list-style: none;
}

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

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

.page-fishing-games-tips__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: var(--text-light);
}

.page-fishing-games-tips__faq-answer p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-fishing-games-tips__conclusion-section {
  text-align: center;
}

.page-fishing-games-tips__link-text {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
}

.page-fishing-games-tips__link-text:hover {
  color: darken(var(--primary-color), 10%);
}

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

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

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

@media (max-width: 768px) {
  .page-fishing-games-tips {
    font-size: 16px;
    line-height: 1.6;
  }

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

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

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

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

  .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__btn-secondary,
  .page-fishing-games-tips__btn-small {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-tips__cta-buttons,
  .page-fishing-games-tips__button-group,
  .page-fishing-games-tips__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;
  }

  .page-fishing-games-tips__content-section {
    padding: 30px 15px;
  }

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

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

  .page-fishing-games-tips__sub-title {
    font-size: 1.2em;
  }

  .page-fishing-games-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

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

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

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

  .page-fishing-games-tips__sub-title {
    font-size: 1.1em;
  }
}