/* style/fishing-game-tips.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #FFFFFF;
  --background-light: #FFFFFF;
  --background-dark: #26A9E0;
  --button-login: #EA7C07;
}

.page-fishing-game-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-light); /* Assumed body is light, text dark */
}

.page-fishing-game-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0;
  text-align: center;
  overflow: hidden;
  color: var(--text-color-light);
  background-color: var(--background-dark);
}

.page-fishing-game-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

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

.page-fishing-game-tips__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-color-light);
  margin-bottom: 20px;
  max-width: 100%;
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size for H1 */
}

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

.page-fishing-game-tips__btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid var(--primary-color);
}

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

.page-fishing-game-tips__btn-secondary {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  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;
  border: 2px solid var(--primary-color);
}

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

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

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

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

.page-fishing-game-tips__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-game-tips__section-title {
  font-size: 2.5em;
  color: inherit;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-fishing-game-tips__sub-title {
  font-size: 1.8em;
  color: inherit;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-fishing-game-tips__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
  color: inherit;
}

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

.page-fishing-game-tips__text-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-fishing-game-tips__text-link:hover {
  color: #1a8cc4;
}

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

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

.page-fishing-game-tips__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-color-dark);
}

.page-fishing-game-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15em;
  color: var(--text-color-dark);
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-game-tips__faq-item[open] .page-fishing-game-tips__faq-question {
  background-color: #f0f0f0;
  border-bottom: 1px solid var(--primary-color);
}

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

.page-fishing-game-tips__faq-item[open] .page-fishing-game-tips__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-game-tips__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--text-color-dark);
  border-top: none;
}

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

/* Video section specific styles */
.page-fishing-game-tips__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 100%; /* Desktop width constraint */
}

.page-fishing-game-tips__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-fishing-game-tips__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-fishing-game-tips__cta-section .page-fishing-game-tips__section-title,
.page-fishing-game-tips__cta-section .page-fishing-game-tips__paragraph {
  color: var(--text-color-light);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-game-tips__main-title {
    font-size: clamp(1.8em, 4.5vw, 3em);
  }
  .page-fishing-game-tips__section-title {
    font-size: 2em;
  }
  .page-fishing-game-tips__sub-title {
    font-size: 1.5em;
  }
  .page-fishing-game-tips__hero-section {
    padding: 10px 20px 40px 20px;
  }
}

@media (max-width: 768px) {
  .page-fishing-game-tips {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-game-tips__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em) !important;
  }
  .page-fishing-game-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-game-tips__sub-title {
    font-size: 1.3em;
  }
  .page-fishing-game-tips__paragraph {
    font-size: 1em;
  }
  .page-fishing-game-tips__hero-section {
    padding: 10px 15px 30px 15px;
  }
  .page-fishing-game-tips__content-section,
  .page-fishing-game-tips__faq-section,
  .page-fishing-game-tips__cta-section {
    padding: 40px 15px;
  }
  .page-fishing-game-tips__container {
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-fishing-game-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto !important;
  }
  .page-fishing-game-tips__hero-image {
    filter: brightness(0.6) !important; /* Even darker for mobile text */
  }
  .page-fishing-game-tips__video-wrapper {
    padding-bottom: 56.25% !important; /* 16:9 Aspect Ratio */
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px auto !important;
  }
  .page-fishing-game-tips__video {
    width: 100% !important;
    height: 100% !important;
  }
  .page-fishing-game-tips__btn-primary,
  .page-fishing-game-tips__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    margin-bottom: 15px;
  }
  .page-fishing-game-tips__hero-content .page-fishing-game-tips__btn-primary {
    margin-bottom: 0;
  }
  .page-fishing-game-tips__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-fishing-game-tips__faq-answer {
    padding: 15px 20px;
  }
  .page-fishing-game-tips__faq-item {
    margin-bottom: 10px;
  }
  .page-fishing-game-tips__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}