/* style/resources-latest-fishing-gameplay-analysis.css */

:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --dark-background: #121212;
  --light-text: #ffffff;
  --dark-text: #333333;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
}

.page-resources-latest-fishing-gameplay-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--light-text); /* Default text color for dark body background */
  background-color: var(--dark-background);
}

/* Fixed header padding */
.page-resources-latest-fishing-gameplay-analysis__hero-section {
  padding-top: 180px; /* Desktop: Adjust based on fixed header height */
}

/* Hero Section */
.page-resources-latest-fishing-gameplay-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
  color: var(--light-text);
  overflow: hidden;
}

.page-resources-latest-fishing-gameplay-analysis__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-resources-latest-fishing-gameplay-analysis__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 800px; /* Limit image width in hero */
}

.page-resources-latest-fishing-gameplay-analysis__hero-main-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-fishing-gameplay-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-latest-fishing-gameplay-analysis__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--light-text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-fishing-gameplay-analysis__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-resources-latest-fishing-gameplay-analysis__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--dark-text);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-latest-fishing-gameplay-analysis__cta-button:hover {
  background: #ffdb80; /* Lighter secondary color on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-fishing-gameplay-analysis__cta-button--secondary {
  background: var(--primary-color);
  color: var(--light-text);
}

.page-resources-latest-fishing-gameplay-analysis__cta-button--secondary:hover {
  background: #0056b3;
}

/* Content Section */
.page-resources-latest-fishing-gameplay-analysis__content-section {
  padding: 60px 20px;
  background-color: var(--dark-background); /* Dark background for content section */
  color: var(--light-text);
}

.page-resources-latest-fishing-gameplay-analysis__content-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-latest-fishing-gameplay-analysis__article-card {
  background-color: #2a2a2a; /* Slightly lighter dark background for card */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 40px;
  color: var(--light-text);
}

.page-resources-latest-fishing-gameplay-analysis__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-fishing-gameplay-analysis__sub-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 35px;
  margin-bottom: 20px;
  border-left: 5px solid var(--secondary-color);
  padding-left: 15px;
}

.page-resources-latest-fishing-gameplay-analysis__article-card p {
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-resources-latest-fishing-gameplay-analysis__article-card h3 {
  color: var(--primary-color);
}

.page-resources-latest-fishing-gameplay-analysis__content-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-fishing-gameplay-analysis__fish-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-latest-fishing-gameplay-analysis__fish-item {
  display: flex;
  align-items: center;
  background-color: #3a3a3a;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-latest-fishing-gameplay-analysis__fish-icon {
  width: 120px; /* Larger icon size */
  height: auto;
  max-width: 120px;
  margin-right: 20px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  flex-shrink: 0;
}

.page-resources-latest-fishing-gameplay-analysis__fish-info {
  flex-grow: 1;
}

.page-resources-latest-fishing-gameplay-analysis__fish-name {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-resources-latest-fishing-gameplay-analysis__fish-info p {
  font-size: 16px;
  color: #c0c0c0;
  margin-bottom: 0;
}

.page-resources-latest-fishing-gameplay-analysis__promo-list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-resources-latest-fishing-gameplay-analysis__promo-list li {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-resources-latest-fishing-gameplay-analysis__inline-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-latest-fishing-gameplay-analysis__inline-link:hover {
  color: #ffdb80;
  text-decoration: underline;
}

/* FAQ Section */
.page-resources-latest-fishing-gameplay-analysis__faq-section {
  padding: 60px 20px;
  background-color: #f1f3f5; /* Light background for FAQ to contrast with body */
  color: var(--dark-text);
}

.page-resources-latest-fishing-gameplay-analysis__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-latest-fishing-gameplay-analysis__faq-section .page-resources-latest-fishing-gameplay-analysis__section-title {
  color: var(--dark-text); /* Dark text for section title on light background */
  text-shadow: none;
}

.page-resources-latest-fishing-gameplay-analysis__faq-list {
  margin-top: 30px;
}

.page-resources-latest-fishing-gameplay-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-resources-latest-fishing-gameplay-analysis__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 20px;
  opacity: 0;
}

.page-resources-latest-fishing-gameplay-analysis__faq-item.active .page-resources-latest-fishing-gameplay-analysis__faq-answer {
  max-height: 2000px !important; /* Ensure content fits */
  padding: 20px !important;
  opacity: 1;
  background: #e9ecef; /* Slightly darker light background for answer */
  border-radius: 0 0 8px 8px;
  color: var(--dark-text);
}

.page-resources-latest-fishing-gameplay-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--dark-text);
}

.page-resources-latest-fishing-gameplay-analysis__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-latest-fishing-gameplay-analysis__faq-question:active {
  background: #eeeeee;
}

.page-resources-latest-fishing-gameplay-analysis__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--dark-text);
}

.page-resources-latest-fishing-gameplay-analysis__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  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: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f0f0f0;
}

.page-resources-latest-fishing-gameplay-analysis__faq-item.active .page-resources-latest-fishing-gameplay-analysis__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-latest-fishing-gameplay-analysis__hero-title {
    font-size: 40px;
  }
  .page-resources-latest-fishing-gameplay-analysis__hero-description {
    font-size: 18px;
  }
  .page-resources-latest-fishing-gameplay-analysis__section-title {
    font-size: 32px;
  }
  .page-resources-latest-fishing-gameplay-analysis__sub-title {
    font-size: 24px;
  }
  .page-resources-latest-fishing-gameplay-analysis__article-card {
    padding: 30px;
  }
  .page-resources-latest-fishing-gameplay-analysis__fish-icon {
    width: 100px;
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-fishing-gameplay-analysis {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .page-resources-latest-fishing-gameplay-analysis__hero-section {
    padding-top: 160px !important; /* Mobile: Adjust based on fixed header height */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-resources-latest-fishing-gameplay-analysis__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-resources-latest-fishing-gameplay-analysis__hero-description {
    font-size: 16px;
  }
  .page-resources-latest-fishing-gameplay-analysis__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-resources-latest-fishing-gameplay-analysis__content-section,
  .page-resources-latest-fishing-gameplay-analysis__faq-section {
    padding: 30px 15px;
  }
  .page-resources-latest-fishing-gameplay-analysis__article-card {
    padding: 25px;
  }
  .page-resources-latest-fishing-gameplay-analysis__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .page-resources-latest-fishing-gameplay-analysis__sub-title {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-resources-latest-fishing-gameplay-analysis__article-card p,
  .page-resources-latest-fishing-gameplay-analysis__promo-list li {
    font-size: 15px;
  }
  .page-resources-latest-fishing-gameplay-analysis__fish-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  .page-resources-latest-fishing-gameplay-analysis__fish-icon {
    width: 100px;
    max-width: 100px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-resources-latest-fishing-gameplay-analysis__fish-name {
    font-size: 20px;
  }

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

  /* Mobile image responsive */
  .page-resources-latest-fishing-gameplay-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources-latest-fishing-gameplay-analysis__hero-section,
  .page-resources-latest-fishing-gameplay-analysis__content-section,
  .page-resources-latest-fishing-gameplay-analysis__faq-section,
  .page-resources-latest-fishing-gameplay-analysis__hero-container,
  .page-resources-latest-fishing-gameplay-analysis__content-container,
  .page-resources-latest-fishing-gameplay-analysis__faq-container,
  .page-resources-latest-fishing-gameplay-analysis__article-card,
  .page-resources-latest-fishing-gameplay-analysis__fish-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}