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

/* Base styles for the page content */
.page-fishing-games-high-score-tips {
  color: #f0f0f0; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Space for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-fishing-games-high-score-tips {
    padding-top: 100px; /* Space for fixed header on mobile */
  }
}

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

.page-fishing-games-high-score-tips__section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
}

.page-fishing-games-high-score-tips__section--intro {
  background-color: #000000;
}

.page-fishing-games-high-score-tips__section--mistakes {
  background-color: #0d0d0d;
}

.page-fishing-games-high-score-tips__dark-section {
  background-color: #0056b3; /* Brand primary color */
  color: #ffffff; /* White text for brand primary background */
}

.page-fishing-games-high-score-tips__section-title {
  font-size: 36px;
  color: #ffc107; /* Brand secondary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games-high-score-tips__sub-title {
  font-size: 24px;
  color: #ffc107;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games-high-score-tips__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-fishing-games-high-score-tips__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-fishing-games-high-score-tips__list-item {
  margin-bottom: 10px;
  font-size: 17px;
  color: #f0f0f0;
}

.page-fishing-games-high-score-tips__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Banner */
.page-fishing-games-high-score-tips__hero-banner {
  background: linear-gradient(135deg, #0056b3, #003d82); /* Darker gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-fishing-games-high-score-tips__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 10;
}

.page-fishing-games-high-score-tips__main-title {
  font-size: 48px;
  color: #ffc107;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-high-score-tips__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-high-score-tips__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-fishing-games-high-score-tips__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-fishing-games-high-score-tips__btn--primary {
  background-color: #ffc107;
  color: #000000;
  border-color: #ffc107;
}

.page-fishing-games-high-score-tips__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-high-score-tips__btn--secondary {
  background-color: transparent;
  color: #ffc107;
  border-color: #ffc107;
}

.page-fishing-games-high-score-tips__btn--secondary:hover {
  background-color: #ffc107;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-high-score-tips__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust to show fish peeking */
  right: -100px;
  width: 400px;
  height: auto;
  opacity: 0.2;
  z-index: 5;
}

.page-fishing-games-high-score-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Call to Action */
.page-fishing-games-high-score-tips__call-to-action {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.page-fishing-games-high-score-tips__call-to-action .page-fishing-games-high-score-tips__text-block {
  font-size: 18px;
  margin-bottom: 25px;
  color: #f0f0f0;
}

/* FAQ Section */
.page-fishing-games-high-score-tips__section--faq {
  background-color: #000000;
}

.page-fishing-games-high-score-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-fishing-games-high-score-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-fishing-games-high-score-tips__faq-item.active .page-fishing-games-high-score-tips__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #1a1a1a;
  border-radius: 0 0 5px 5px;
}

.page-fishing-games-high-score-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #0056b3;
  border: 1px solid #003d82;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-fishing-games-high-score-tips__faq-question:hover {
  background: #004a99;
  border-color: #003366;
}

.page-fishing-games-high-score-tips__faq-question:active {
  background: #003d82;
}

.page-fishing-games-high-score-tips__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-fishing-games-high-score-tips__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #ffc107;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-fishing-games-high-score-tips__faq-item.active .page-fishing-games-high-score-tips__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games-high-score-tips__main-title {
    font-size: 40px;
  }
  .page-fishing-games-high-score-tips__hero-description {
    font-size: 18px;
  }
  .page-fishing-games-high-score-tips__section-title {
    font-size: 30px;
  }
  .page-fishing-games-high-score-tips__sub-title {
    font-size: 22px;
  }
  .page-fishing-games-high-score-tips__text-block, .page-fishing-games-high-score-tips__list-item {
    font-size: 16px;
  }
  .page-fishing-games-high-score-tips__hero-image-wrapper {
    width: 300px;
    bottom: -30px;
    right: -50px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-high-score-tips__hero-banner {
    padding: 60px 0;
    min-height: 400px;
  }
  .page-fishing-games-high-score-tips__main-title {
    font-size: 32px;
  }
  .page-fishing-games-high-score-tips__hero-description {
    font-size: 16px;
  }
  .page-fishing-games-high-score-tips__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-high-score-tips__btn {
    width: 80%;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-fishing-games-high-score-tips__section {
    padding: 40px 0;
  }
  .page-fishing-games-high-score-tips__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-fishing-games-high-score-tips__sub-title {
    font-size: 20px;
  }
  .page-fishing-games-high-score-tips__text-block, .page-fishing-games-high-score-tips__list-item {
    font-size: 15px;
  }
  .page-fishing-games-high-score-tips__container {
    padding: 0 15px;
  }
  .page-fishing-games-high-score-tips__hero-image-wrapper {
    display: none; /* Hide decorative image on small screens */
  }
  
  /* Mobile image adaptation */
  .page-fishing-games-high-score-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games-high-score-tips__section,
  .page-fishing-games-high-score-tips__card,
  .page-fishing-games-high-score-tips__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-high-score-tips__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-fishing-games-high-score-tips__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-fishing-games-high-score-tips__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-fishing-games-high-score-tips__faq-answer {
    padding: 0 15px;
  }
  
  .page-fishing-games-high-score-tips__faq-item.active .page-fishing-games-high-score-tips__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-high-score-tips__main-title {
    font-size: 28px;
  }
  .page-fishing-games-high-score-tips__hero-description {
    font-size: 15px;
  }
  .page-fishing-games-high-score-tips__btn {
    width: 90%;
  }
  .page-fishing-games-high-score-tips__section-title {
    font-size: 24px;
  }
  .page-fishing-games-high-score-tips__sub-title {
    font-size: 18px;
  }
}