.page-fishing-game-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #FFFFFF; /* Ensures consistency with body background */
}

.page-fishing-game-tips__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(135deg, #e0f2f7, #ffffff);
  position: relative;
}

.page-fishing-game-tips__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-fishing-game-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-game-tips__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-game-tips__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em); /* Responsive font size for H1 */
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-game-tips__hero-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-fishing-game-tips__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-fishing-game-tips__btn-primary,
.page-fishing-game-tips__btn-secondary {
  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;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-fishing-game-tips__btn-primary:hover {
  background-color: #1a7fb0;
  border-color: #1a7fb0;
}

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

.page-fishing-game-tips__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1a7fb0;
  border-color: #1a7fb0;
}

.page-fishing-game-tips__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-fishing-game-tips__sub-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-game-tips__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-fishing-game-tips__paragraph {
  font-size: 1.05em;
  margin-bottom: 15px;
  line-height: 1.7;
  color: #333333;
}

.page-fishing-game-tips__highlight {
  font-weight: bold;
  color: #26A9E0;
}

.page-fishing-game-tips__link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-game-tips__link:hover {
  text-decoration: underline;
}

.page-fishing-game-tips__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-fishing-game-tips__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1.05em;
}

.page-fishing-game-tips__image-wrapper {
  margin: 30px auto;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-fishing-game-tips__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.page-fishing-game-tips__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-fishing-game-tips__dark-bg .page-fishing-game-tips__paragraph,
.page-fishing-game-tips__dark-bg .page-fishing-game-tips__list-item {
  color: #ffffff;
}

.page-fishing-game-tips__dark-bg .page-fishing-game-tips__link {
  color: #ffffff;
}

.page-fishing-game-tips__dark-bg .page-fishing-game-tips__link:hover {
  text-decoration: underline;
}

.page-fishing-game-tips__cta-buttons--centered {
  margin-top: 30px;
}

.page-fishing-game-tips__faq-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.page-fishing-game-tips__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-fishing-game-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary */
}

.page-fishing-game-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-game-tips__faq-qtext {
  flex-grow: 1;
}

.page-fishing-game-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-fishing-game-tips__faq-item[open] .page-fishing-game-tips__faq-question {
  border-bottom: 1px solid #d0d0d0;
}

.page-fishing-game-tips__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  background-color: #f9f9f9;
}

.page-fishing-game-tips__faq-answer .page-fishing-game-tips__paragraph {
  margin-bottom: 10px;
}

.page-fishing-game-tips__btn-small {
  display: inline-block;
  padding: 8px 15px;
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-game-tips__btn-small:hover {
  background-color: #c96806;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-fishing-game-tips__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 30px;
  }

  .page-fishing-game-tips__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em); /* Adjust H1 for mobile */
    padding: 0 15px;
  }

  .page-fishing-game-tips__hero-description {
    font-size: 1em;
    padding: 0 15px;
  }

  .page-fishing-game-tips__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    padding: 0 15px;
    width: 100% !important; /* Ensure container is full width */
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-game-tips__btn-primary,
  .page-fishing-game-tips__btn-secondary {
    width: 100% !important; /* Full width buttons */
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  /* General content areas */
  .page-fishing-game-tips__content-area {
    padding: 25px 15px !important; /* Smaller padding on mobile */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-game-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-fishing-game-tips__sub-title {
    font-size: 1.3em;
    margin-top: 25px;
  }

  .page-fishing-game-tips__paragraph,
  .page-fishing-game-tips__list-item {
    font-size: 0.95em;
  }

  /* Universal image and container adaptation for mobile */
  .page-fishing-game-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-fishing-game-tips__image-wrapper,
  .page-fishing-game-tips__hero-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding: 0;
    margin: 20px auto;
  }

  /* FAQ specific mobile styles */
  .page-fishing-game-tips__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-fishing-game-tips__faq-answer {
    padding: 12px 20px 15px;
    font-size: 0.9em;
  }

  .page-fishing-game-tips__btn-small {
    padding: 10px 15px;
    font-size: 0.85em;
  }

  /* Ensure no horizontal scroll for content sections */
  .page-fishing-game-tips__introduction-section,
  .page-fishing-game-tips__game-overview-section,
  .page-fishing-game-tips__strategy-section,
  .page-fishing-game-tips__management-section,
  .page-fishing-game-tips__items-skills-section,
  .page-fishing-game-tips__room-selection-section,
  .page-fishing-game-tips__advanced-tips-section,
  .page-fishing-game-tips__why-sbetbet-section,
  .page-fishing-game-tips__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
}