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

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

/* --- Hero Section --- */
.page-fishing-games-tips__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  overflow: hidden;
}

.page-fishing-games-tips__hero-section .page-fishing-games-tips__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.page-fishing-games-tips__hero-content {
  flex: 1;
  text-align: left;
  z-index: 1;
}

.page-fishing-games-tips__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.page-fishing-games-tips__hero-image {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  display: block;
}

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

.page-fishing-games-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-fishing-games-tips__btn-register,
.page-fishing-games-tips__btn-login {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-tips__btn-register {
  background-color: #C30808; /* Specific color for Register */
  color: #FFFF00; /* Specific font color for Register */
  border: 2px solid #C30808;
}

.page-fishing-games-tips__btn-register:hover {
  background-color: #a00606;
  transform: translateY(-3px);
}

.page-fishing-games-tips__btn-login {
  background-color: #C30808; /* Specific color for Login */
  color: #FFFF00; /* Specific font color for Login */
  border: 2px solid #C30808;
}

.page-fishing-games-tips__btn-login:hover {
  background-color: #a00606;
  transform: translateY(-3px);
}

/* --- Content Sections --- */
.page-fishing-games-tips__content-section {
  padding: 60px 0;
}

.page-fishing-games-tips__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-fishing-games-tips__subsection-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
}

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

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

.page-fishing-games-tips__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-fishing-games-tips__image-card {
  margin: 40px 0;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-tips__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* --- FAQ Section --- */
.page-fishing-games-tips__faq-section {
  padding: 60px 0;
}

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

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

.page-fishing-games-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-fishing-games-tips__faq-question:hover {
  background-color: #e0e0e0;
}

.page-fishing-games-tips__faq-title {
  margin: 0;
  font-size: 1.2em;
  color: #333333;
}

.page-fishing-games-tips__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #017439;
  transition: transform 0.3s ease;
}

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

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

.page-fishing-games-tips__faq-item.active .page-fishing-games-tips__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 20px;
}

.page-fishing-games-tips__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #555555;
}

/* --- CTA Section --- */
.page-fishing-games-tips__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games-tips__btn-primary {
  display: inline-block;
  padding: 18px 40px;
  background-color: #017439;
  color: #ffffff;
  border-radius: 10px;
  font-size: 1.3em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-tips__btn-primary:hover {
  background-color: #005a2d;
  transform: translateY(-5px);
}

/* --- Color Scheme Application --- */
.page-fishing-games-tips__dark-bg {
  background-color: #1a1a2e; /* Body background color */
  color: #ffffff; /* Light text on dark background */
}

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

.page-fishing-games-tips__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text on light background */
}

.page-fishing-games-tips__light-bg .page-fishing-games-tips__section-title,
.page-fishing-games-tips__light-bg .page-fishing-games-tips__subsection-title {
  color: #017439; /* Brand color for titles on light background */
}

.page-fishing-games-tips__light-bg .page-fishing-games-tips__list-item strong {
  color: #017439;
}

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

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

  .page-fishing-games-tips__subsection-title {
    font-size: 1.5em;
  }
}

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

  .page-fishing-games-tips__hero-section .page-fishing-games-tips__container {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games-tips__hero-content {
    text-align: center;
  }

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

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

  .page-fishing-games-tips__cta-group {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .page-fishing-games-tips__btn-register,
  .page-fishing-games-tips__btn-login,
  .page-fishing-games-tips__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin-bottom: 10px; /* Add margin between stacked buttons */
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

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

  /* Ensure all images are responsive */
  .page-fishing-games-tips img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-tips__image-card,
  .page-fishing-games-tips__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* FAQ specific mobile styles */
  .page-fishing-games-tips__faq-question {
    padding: 15px;
  }

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

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

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

  /* Content section padding for mobile */
  .page-fishing-games-tips__content-section,
  .page-fishing-games-tips__faq-section,
  .page-fishing-games-tips__cta-section {
    padding: 40px 0;
  }
}

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

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

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