.page-resources-fishing-game-tips {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark body background */
  line-height: 1.6;
  background-color: var(--dark-bg-1); /* Assume dark background from shared.css */
}

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

.page-resources-fishing-game-tips__section {
  padding: 60px 0;
}

.page-resources-fishing-game-tips__dark-bg {
  background-color: var(--dark-bg-1);
  color: #f0f0f0;
}

.page-resources-fishing-game-tips__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Hero Banner Section */
.page-resources-fishing-game-tips__hero-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
  overflow: hidden;
}

.page-resources-fishing-game-tips__hero-banner .page-resources-fishing-game-tips__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-resources-fishing-game-tips__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-resources-fishing-game-tips__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-fishing-game-tips__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-fishing-game-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #ffffff;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-fishing-game-tips__cta-button:hover {
  background: var(--secondary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-game-tips__hero-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin-top: 30px;
}

.page-resources-fishing-game-tips__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-resources-fishing-game-tips__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-fishing-game-tips__intro-section .page-resources-fishing-game-tips__section-title,
.page-resources-fishing-game-tips__basic-tips .page-resources-fishing-game-tips__section-title,
.page-resources-fishing-game-tips__capital-management .page-resources-fishing-game-tips__section-title,
.page-resources-fishing-game-tips__faq-section .page-resources-fishing-game-tips__section-title {
  color: #333333;
}

.page-resources-fishing-game-tips__game-types .page-resources-fishing-game-tips__section-title,
.page-resources-fishing-game-tips__advanced-strategies .page-resources-fishing-game-tips__section-title,
.page-resources-fishing-game-tips__benefits .page-resources-fishing-game-tips__section-title {
  color: #ffffff;
}

.page-resources-fishing-game-tips__paragraph {
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.7;
  text-align: justify;
}

.page-resources-fishing-game-tips__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-fishing-game-tips__list li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.6;
}

.page-resources-fishing-game-tips__list li strong {
  font-weight: bold;
}

/* Game Types Grid */
.page-resources-fishing-game-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-fishing-game-tips__card {
  background: #ffffff;
  color: #333333;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-fishing-game-tips__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-fishing-game-tips__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-fishing-game-tips__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-resources-fishing-game-tips__card-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-resources-fishing-game-tips__link-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-fishing-game-tips__link-button:hover {
  background: #1565c0;
}

/* Image Text Layout */
.page-resources-fishing-game-tips__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-resources-fishing-game-tips__image-text-layout--reverse {
  flex-direction: row-reverse;
}

.page-resources-fishing-game-tips__text-content {
  flex: 1;
}

.page-resources-fishing-game-tips__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-resources-fishing-game-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-fishing-game-tips__cta-link {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-fishing-game-tips__cta-link:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-resources-fishing-game-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-fishing-game-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-fishing-game-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-resources-fishing-game-tips__faq-item.active .page-resources-fishing-game-tips__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-resources-fishing-game-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-fishing-game-tips__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-fishing-game-tips__faq-question:active {
  background: #eeeeee;
}

.page-resources-fishing-game-tips__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333; /* Ensure contrast on white background */
}

.page-resources-fishing-game-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-fishing-game-tips__faq-item.active .page-resources-fishing-game-tips__faq-toggle {
  color: #333;
  transform: rotate(45deg); /* Change + to X */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-fishing-game-tips__hero-title {
    font-size: 40px;
  }

  .page-resources-fishing-game-tips__hero-description {
    font-size: 18px;
  }

  .page-resources-fishing-game-tips__section-title {
    font-size: 30px;
  }

  .page-resources-fishing-game-tips__paragraph,
  .page-resources-fishing-game-tips__list li,
  .page-resources-fishing-game-tips__card-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-resources-fishing-game-tips__hero-banner {
    padding-top: 160px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
  }

  .page-resources-fishing-game-tips__hero-title {
    font-size: 32px;
  }

  .page-resources-fishing-game-tips__hero-description {
    font-size: 16px;
  }

  .page-resources-fishing-game-tips__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-resources-fishing-game-tips__section {
    padding: 40px 0;
  }

  .page-resources-fishing-game-tips__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-resources-fishing-game-tips__container {
    padding: 0 15px;
  }

  .page-resources-fishing-game-tips__grid {
    grid-template-columns: 1fr;
  }

  .page-resources-fishing-game-tips__card {
    padding: 20px;
  }

  .page-resources-fishing-game-tips__card-title {
    font-size: 20px;
  }

  .page-resources-fishing-game-tips__card-image {
    min-width: unset;
    min-height: unset;
  }

  .page-resources-fishing-game-tips__image-text-layout {
    flex-direction: column;
    gap: 30px;
  }

  .page-resources-fishing-game-tips__image-text-layout--reverse {
    flex-direction: column;
  }

  .page-resources-fishing-game-tips__image {
    min-width: unset;
    min-height: unset;
  }

  .page-resources-fishing-game-tips__cta-link {
    padding: 10px 25px;
    font-size: 15px;
  }

  .page-resources-fishing-game-tips__faq-question {
    padding: 15px;
  }

  .page-resources-fishing-game-tips__faq-question h3 {
    font-size: 15px;
  }

  .page-resources-fishing-game-tips__faq-toggle {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .page-resources-fishing-game-tips__faq-answer {
    padding: 0 15px;
  }

  .page-resources-fishing-game-tips__faq-item.active .page-resources-fishing-game-tips__faq-answer {
    padding: 15px !important;
  }

  /* Ensure all images and their containers are responsive */
  .page-resources-fishing-game-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources-fishing-game-tips__section,
  .page-resources-fishing-game-tips__card,
  .page-resources-fishing-game-tips__container,
  .page-resources-fishing-game-tips__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-fishing-game-tips__hero-banner .page-resources-fishing-game-tips__container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-resources-fishing-game-tips__hero-title {
    font-size: 28px;
  }

  .page-resources-fishing-game-tips__section-title {
    font-size: 24px;
  }
}