.page-resources-high-score-tips {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from body via shared.css */
  padding-top: 120px; /* For fixed header */
}

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

.page-resources-high-score-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-high-score-tips__hero-banner {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFD700, #DC143C); /* Brand colors */
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-resources-high-score-tips__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffffff; /* Ensure white text on brand color background */
}

.page-resources-high-score-tips__subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-high-score-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #DC143C; /* Auxiliary color for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 22px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-high-score-tips__cta-button:hover {
  background: #B20C2D;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-high-score-tips__content-section {
  padding: 60px 0;
}

.page-resources-high-score-tips__light-bg {
  background-color: #f8f9fa;
  color: #333333; /* Dark text on light background */
}

.page-resources-high-score-tips__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff; /* Light text on dark background */
}

.page-resources-high-score-tips__medium-bg {
  background-color: #FFD700; /* Gold brand color */
  color: #333333; /* Dark text on medium/light background */
}

.page-resources-high-score-tips__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from parent section */
}

.page-resources-high-score-tips__sub-section-title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from parent section */
}

.page-resources-high-score-tips p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: inherit;
}

.page-resources-high-score-tips p a {
  color: #DC143C; /* Link color within paragraphs */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-high-score-tips p a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-high-score-tips__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* CTA Section Specifics */
.page-resources-high-score-tips__cta-section {
  padding: 80px 20px;
  text-align: center;
  border-top: 5px solid #DC143C;
}

.page-resources-high-score-tips__cta-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333333; /* Dark text on gold background */
}

.page-resources-high-score-tips__cta-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: #555555;
}

.page-resources-high-score-tips__btn-primary {
  background: #DC143C;
  color: #ffffff;
  border: none;
}

.page-resources-high-score-tips__btn-primary:hover {
  background: #B20C2D;
}

/* FAQ Section */
.page-resources-high-score-tips__faq-section {
  padding-bottom: 80px;
}

.page-resources-high-score-tips__faq-list {
  margin-top: 40px;
}

.page-resources-high-score-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-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;
  color: #333333; /* Dark text for FAQ answers */
}

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

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

.page-resources-high-score-tips__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-high-score-tips__faq-question:active {
  background: #eeeeee;
}

.page-resources-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: #333333; /* Dark text for FAQ questions */
}

.page-resources-high-score-tips__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  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-resources-high-score-tips__faq-item.active .page-resources-high-score-tips__faq-toggle {
  color: #DC143C;
  transform: rotate(45deg);
}

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

  .page-resources-high-score-tips__subtitle {
    font-size: 18px;
  }

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

  .page-resources-high-score-tips__sub-section-title {
    font-size: 24px;
  }

  .page-resources-high-score-tips p {
    font-size: 16px;
  }

  .page-resources-high-score-tips__cta-title {
    font-size: 32px;
  }

  .page-resources-high-score-tips__cta-description {
    font-size: 18px;
  }
  
  .page-resources-high-score-tips__cta-button {
    font-size: 20px;
    padding: 12px 30px;
  }
}

@media (max-width: 768px) {
  .page-resources-high-score-tips__hero-banner {
    padding: 60px 15px;
  }

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

  .page-resources-high-score-tips__subtitle {
    font-size: 16px;
  }

  .page-resources-high-score-tips__content-section {
    padding: 40px 0;
  }

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

  .page-resources-high-score-tips__sub-section-title {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-resources-high-score-tips p {
    font-size: 15px;
    line-height: 1.7;
  }

  .page-resources-high-score-tips__image {
    margin: 30px auto;
  }

  .page-resources-high-score-tips__cta-section {
    padding: 60px 15px;
  }

  .page-resources-high-score-tips__cta-title {
    font-size: 28px;
  }

  .page-resources-high-score-tips__cta-description {
    font-size: 16px;
  }
  
  .page-resources-high-score-tips__cta-button {
    font-size: 18px;
    padding: 10px 25px;
  }

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