.page-fishing-games-high-score-tips {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark body background */
  line-height: 1.6;
  background-color: transparent; /* Body background handled by shared.css */
}

.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;
  margin-bottom: 20px;
}

.page-fishing-games-high-score-tips__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #FFD700; /* Primary brand color */
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-high-score-tips__subsection-title {
  font-size: 28px;
  font-weight: 600;
  color: #FFD700; /* Primary brand color */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-fishing-games-high-score-tips__paragraph {
  font-size: 18px;
  margin-bottom: 20px;
  color: #f0f0f0; /* Ensure light text on dark background */
}

.page-fishing-games-high-score-tips__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-fishing-games-high-score-tips__list-item {
  font-size: 18px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-fishing-games-high-score-tips__list-item::before {
  content: '⚡'; /* Unicode lightning bolt */
  position: absolute;
  left: 0;
  color: #FFD700; /* Primary brand color */
  font-size: 20px;
  line-height: 1;
}

/* Hero Section */
.page-fishing-games-high-score-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.1));
}

.page-fishing-games-high-score-tips__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games-high-score-tips__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-fishing-games-high-score-tips__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games-high-score-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-fishing-games-high-score-tips__main-title {
  font-size: 48px;
  font-weight: 800;
  color: #FFD700; /* Primary brand color */
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-high-score-tips__intro-text {
  font-size: 22px;
  color: #f8f8f8; /* Light text for readability */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-high-score-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Primary brand color */
  color: #1a1a1a; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-fishing-games-high-score-tips__cta-button:hover {
  background: #8B0000; /* Secondary brand color */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border-color: #FFD700;
}

/* Image Wrappers */
.page-fishing-games-high-score-tips__image-wrapper {
  margin: 40px 0;
  text-align: center;
  overflow: hidden; /* Ensure image doesn't overflow */
  max-width: 100%;
}

.page-fishing-games-high-score-tips__image-wrapper img {
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Card Grid */
.page-fishing-games-high-score-tips__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-high-score-tips__card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: #f0f0f0; /* Light text for card content */
}

.page-fishing-games-high-score-tips__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-high-score-tips__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFD700; /* Primary brand color */
  margin-bottom: 15px;
}

.page-fishing-games-high-score-tips__card-text {
  font-size: 16px;
  color: #cccccc; /* Slightly lighter text for card content */
}

/* Strategy Items */
.page-fishing-games-high-score-tips__strategy-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-high-score-tips__strategy-item--reverse {
  flex-direction: row-reverse;
}

.page-fishing-games-high-score-tips__strategy-item .page-fishing-games-high-score-tips__image-wrapper {
  flex: 1;
  margin: 0;
}

.page-fishing-games-high-score-tips__strategy-item .page-fishing-games-high-score-tips__text-content {
  flex: 1;
}

.page-fishing-games-high-score-tips__strategy-item .page-fishing-games-high-score-tips__subsection-title {
  margin-top: 0;
}

/* CTA Banner */
.page-fishing-games-high-score-tips__cta-banner {
  background: linear-gradient(90deg, #8B0000, #FFD700);
  border-radius: 15px;
  padding: 40px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.page-fishing-games-high-score-tips__cta-banner img {
  max-width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-high-score-tips__cta-content {
  flex: 1;
  color: #ffffff;
  text-align: left;
}

.page-fishing-games-high-score-tips__cta-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-fishing-games-high-score-tips__cta-description {
  font-size: 18px;
  margin-bottom: 25px;
}

.page-fishing-games-high-score-tips__btn-primary {
  display: inline-block;
  padding: 15px 35px;
  background: #FFD700; /* Primary brand color */
  color: #1a1a1a; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-fishing-games-high-score-tips__btn-primary:hover {
  background: #f0c000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-high-score-tips__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  background: transparent;
  color: #FFD700; /* Primary brand color */
  border: 2px solid #FFD700;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-left: 20px;
}

.page-fishing-games-high-score-tips__btn-secondary:hover {
  background: #FFD700;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-fishing-games-high-score-tips__faq-list {
  margin-top: 40px;
}

.page-fishing-games-high-score-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-high-score-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #333333; /* Dark background for question */
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  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: #444444;
  border-color: #FFD700;
}

.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;
  color: #FFD700; /* Primary brand color for question text */
  pointer-events: none;
}

.page-fishing-games-high-score-tips__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Primary brand color for toggle icon */
  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: 30px;
  height: 30px;
}

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

.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 25px;
  opacity: 0;
  color: #cccccc;
}

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

/* Button Group */
.page-fishing-games-high-score-tips__button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-high-score-tips__main-title {
    font-size: 40px;
  }

  .page-fishing-games-high-score-tips__section-title {
    font-size: 30px;
  }

  .page-fishing-games-high-score-tips__subsection-title {
    font-size: 24px;
  }

  .page-fishing-games-high-score-tips__cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games-high-score-tips__cta-banner img {
    max-width: 60%;
    margin-bottom: 20px;
  }

  .page-fishing-games-high-score-tips__cta-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-high-score-tips {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Header offset for mobile */
  .page-fishing-games-high-score-tips__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-high-score-tips__section {
    padding: 40px 0;
  }

  .page-fishing-games-high-score-tips__main-title {
    font-size: 32px;
  }

  .page-fishing-games-high-score-tips__intro-text {
    font-size: 18px;
  }

  .page-fishing-games-high-score-tips__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-fishing-games-high-score-tips__subsection-title {
    font-size: 22px;
  }

  .page-fishing-games-high-score-tips__paragraph,
  .page-fishing-games-high-score-tips__list-item,
  .page-fishing-games-high-score-tips__card-text {
    font-size: 16px;
  }

  .page-fishing-games-high-score-tips__cta-button,
  .page-fishing-games-high-score-tips__btn-primary,
  .page-fishing-games-high-score-tips__btn-secondary,
  .page-fishing-games-high-score-tips a[class*="button"],
  .page-fishing-games-high-score-tips a[class*="btn"] {
    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-high-score-tips__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games-high-score-tips__btn-secondary {
    margin-left: 0;
  }

  .page-fishing-games-high-score-tips__image-wrapper img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games-high-score-tips__card {
    padding: 25px;
  }

  .page-fishing-games-high-score-tips__card-title {
    font-size: 20px;
  }

  .page-fishing-games-high-score-tips__strategy-item {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .page-fishing-games-high-score-tips__strategy-item--reverse {
    flex-direction: column;
  }

  .page-fishing-games-high-score-tips__cta-banner {
    flex-direction: column;
    padding: 30px;
    gap: 20px;
  }

  .page-fishing-games-high-score-tips__cta-banner img {
    max-width: 80%;
  }

  .page-fishing-games-high-score-tips__cta-title {
    font-size: 26px;
  }

  .page-fishing-games-high-score-tips__cta-description {
    font-size: 16px;
  }

  .page-fishing-games-high-score-tips__faq-question {
    padding: 15px 20px;
  }

  .page-fishing-games-high-score-tips__faq-question h3 {
    font-size: 16px;
  }

  .page-fishing-games-high-score-tips__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }

  .page-fishing-games-high-score-tips__faq-answer {
    padding: 0 20px;
  }

  .page-fishing-games-high-score-tips__faq-item.active .page-fishing-games-high-score-tips__faq-answer {
    padding: 15px 20px !important;
  }
}