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

.page-fishing-games-high-score-tips__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-fishing-games-high-score-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-fishing-games-high-score-tips__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-fishing-games-high-score-tips__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
}

.page-fishing-games-high-score-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-fishing-games-high-score-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games-high-score-tips__hero-cta {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-fishing-games-high-score-tips__section {
  padding: 60px 20px;
  text-align: center;
}

.page-fishing-games-high-score-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for content blocks */
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-fishing-games-high-score-tips__dark-bg {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-fishing-games-high-score-tips__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-fishing-games-high-score-tips__section-title--light {
  color: #ffffff;
}

.page-fishing-games-high-score-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-high-score-tips__text-link {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games-high-score-tips__text-link:hover {
  color: #3cb4f0;
  text-decoration: underline;
}

.page-fishing-games-high-score-tips__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.page-fishing-games-high-score-tips__card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-fishing-games-high-score-tips__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-fishing-games-high-score-tips__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-fishing-games-high-score-tips__image-full-width {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-high-score-tips__article-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-fishing-games-high-score-tips__article-subtitle {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fishing-games-high-score-tips__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.page-fishing-games-high-score-tips__feature-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-fishing-games-high-score-tips__feature-icon {
  width: 100%; /* Occupy full card width */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-fishing-games-high-score-tips__feature-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-fishing-games-high-score-tips__feature-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-fishing-games-high-score-tips__faq-section {
  background-color: #1a1a1a;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-fishing-games-high-score-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-fishing-games-high-score-tips__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.page-fishing-games-high-score-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  transition: color 0.3s ease;
}

.page-fishing-games-high-score-tips__faq-question:hover {
  color: #26A9E0;
}

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

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

.page-fishing-games-high-score-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-fishing-games-high-score-tips__faq-item.active .page-fishing-games-high-score-tips__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 0 20px 0;
}

.page-fishing-games-high-score-tips__faq-answer p {
  margin-bottom: 0;
}

.page-fishing-games-high-score-tips__cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #26A9E0, #1a7bb0);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-fishing-games-high-score-tips__cta-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-fishing-games-high-score-tips__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-fishing-games-high-score-tips__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-fishing-games-high-score-tips__cta-button {
  display: inline-block;
  padding: 18px 40px;
  background-color: #EA7C07; /* Login/CTA color */
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games-high-score-tips__cta-button:hover {
  background-color: #d16b06;
  transform: translateY(-2px);
}

.page-fishing-games-high-score-tips__cta-image {
  position: absolute;
  bottom: 0;
  right: -50px; /* Adjust position */
  width: 500px;
  height: auto;
  opacity: 0.3;
  z-index: 1;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Button Styles */
.page-fishing-games-high-score-tips__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid transparent;
}

.page-fishing-games-high-score-tips__btn-primary:hover {
  background: #1a7bb0;
}

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

.page-fishing-games-high-score-tips__btn-secondary:hover {
  background: #f0f0f0;
  color: #1a7bb0;
  border-color: #1a7bb0;
}

/* Global image reset for content area - ensure minimum size */
.page-fishing-games-high-score-tips img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

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

  .page-fishing-games-high-score-tips__section-title {
    font-size: 2em;
  }

  .page-fishing-games-high-score-tips__cta-title {
    font-size: 2.5em;
  }

  .page-fishing-games-high-score-tips__cta-image {
    width: 400px;
    right: -20px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-high-score-tips__hero-section {
    height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-fishing-games-high-score-tips__hero-title {
    font-size: 2.2em;
  }

  .page-fishing-games-high-score-tips__hero-description {
    font-size: 1em;
  }

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

  .page-fishing-games-high-score-tips__content-area,
  .page-fishing-games-high-score-tips__faq-section {
    padding: 20px 15px;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px) !important;
    max-width: calc(100% - 30px) !important;
    box-sizing: border-box !important;
  }

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

  .page-fishing-games-high-score-tips__paragraph,
  .page-fishing-games-high-score-tips__card-text,
  .page-fishing-games-high-score-tips__feature-text {
    font-size: 0.95em;
  }

  .page-fishing-games-high-score-tips__grid-container,
  .page-fishing-games-high-score-tips__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-fishing-games-high-score-tips__card-title {
    font-size: 1.3em;
  }

  .page-fishing-games-high-score-tips__article-subtitle {
    font-size: 1.5em;
  }

  .page-fishing-games-high-score-tips__faq-question {
    font-size: 1.1em;
    padding: 12px 0;
  }

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

  .page-fishing-games-high-score-tips__cta-title {
    font-size: 2em;
  }

  .page-fishing-games-high-score-tips__cta-text {
    font-size: 1em;
  }

  .page-fishing-games-high-score-tips__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games-high-score-tips__cta-image {
    position: static;
    width: 100%;
    opacity: 0.2;
    margin-top: 30px;
  }

  /* Mobile image responsiveness */
  .page-fishing-games-high-score-tips img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Enforce min size even on mobile */
    min-height: 200px !important;
  }

  .page-fishing-games-high-score-tips__section,
  .page-fishing-games-high-score-tips__card,
  .page-fishing-games-high-score-tips__container,
  .page-fishing-games-high-score-tips__hero-section,
  .page-fishing-games-high-score-tips__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  
  .page-fishing-games-high-score-tips__feature-icon {
    width: 100% !important;
    height: auto !important;
  }

  /* Ensure button groups wrap on mobile */
  .page-fishing-games-high-score-tips__button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}