/* style/fishing-games-tips-strategy.css */
:root {
  --primary-color: #A52A2A;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #222222;
  --border-color: #e0e0e0;
}

.page-fishing-games-tips-strategy {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

/* Fixed Navbar Spacing */
.page-fishing-games-tips-strategy__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
  background: linear-gradient(135deg, var(--primary-color) 0%, #8b0000 100%);
  color: var(--text-light);
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-fishing-games-tips-strategy__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-fishing-games-tips-strategy__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-tips-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-tips-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games-tips-strategy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games-tips-strategy__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-tips-strategy__cta-button--secondary {
  background: var(--text-light);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-fishing-games-tips-strategy__cta-button--secondary:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  border-color: var(--text-light);
}

.page-fishing-games-tips-strategy__content-section {
  padding: 60px 0;
}

.page-fishing-games-tips-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-games-tips-strategy__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-fishing-games-tips-strategy__why-choose .page-fishing-games-tips-strategy__section-title {
  color: var(--primary-color);
}

.page-fishing-games-tips-strategy__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-tips-strategy__feature-item {
  background: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-tips-strategy__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-tips-strategy__feature-icon {
  width: 120px; /* Min size 200x200px is for content images, icons can be smaller but not tiny */
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fishing-games-tips-strategy__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games-tips-strategy__feature-item p {
  font-size: 1em;
  color: var(--text-dark);
}

.page-fishing-games-tips-strategy__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-fishing-games-tips-strategy__tips-strategies p,
.page-fishing-games-tips-strategy__advanced-strategies p {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: justify;
}

.page-fishing-games-tips-strategy__strategy-item {
  background: var(--text-light);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-fishing-games-tips-strategy__strategy-item h3 {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games-tips-strategy__strategy-item p {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 0;
}

.page-fishing-games-tips-strategy__dark-section {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-fishing-games-tips-strategy__dark-section .page-fishing-games-tips-strategy__section-title,
.page-fishing-games-tips-strategy__dark-section .page-fishing-games-tips-strategy__strategy-item h3 {
  color: var(--secondary-color);
}

.page-fishing-games-tips-strategy__dark-section .page-fishing-games-tips-strategy__strategy-item {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.page-fishing-games-tips-strategy__dark-section .page-fishing-games-tips-strategy__strategy-item p {
  color: var(--text-light);
}

.page-fishing-games-tips-strategy__promotions .page-fishing-games-tips-strategy__section-title {
  color: var(--primary-color);
}

.page-fishing-games-tips-strategy__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-tips-strategy__promo-card {
  background: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-fishing-games-tips-strategy__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-tips-strategy__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-fishing-games-tips-strategy__promo-card h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  margin: 20px 20px 10px;
}

.page-fishing-games-tips-strategy__promo-card p {
  font-size: 1em;
  color: var(--text-dark);
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-fishing-games-tips-strategy__promo-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 0 0 12px 12px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-tips-strategy__promo-button:hover {
  background: #e6c200;
}

/* FAQ Section */
.page-fishing-games-tips-strategy__faq-section {
  background-color: var(--background-light);
  padding: 60px 0;
}

.page-fishing-games-tips-strategy__faq-list {
  margin-top: 40px;
}

.page-fishing-games-tips-strategy__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.page-fishing-games-tips-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--text-light);
  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;
}

.page-fishing-games-tips-strategy__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-fishing-games-tips-strategy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  pointer-events: none;
}

.page-fishing-games-tips-strategy__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-fishing-games-tips-strategy__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;
  background: #f9f9f9;
  color: var(--text-dark);
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.page-fishing-games-tips-strategy__faq-item.active .page-fishing-games-tips-strategy__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border: 1px solid var(--border-color);
  border-top: none;
}

.page-fishing-games-tips-strategy__faq-item.active .page-fishing-games-tips-strategy__faq-toggle {
  transform: rotate(180deg);
  color: var(--primary-color);
}

/* Blog Section */
.page-fishing-games-tips-strategy__blog-section {
  background-color: var(--background-light);
  padding: 60px 0;
}

.page-fishing-games-tips-strategy__blog-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.page-fishing-games-tips-strategy__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games-tips-strategy__blog-item {
  background: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-tips-strategy__blog-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-tips-strategy__blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.page-fishing-games-tips-strategy__blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-fishing-games-tips-strategy__blog-item-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin: 20px 20px 10px;
}

.page-fishing-games-tips-strategy__blog-item-excerpt {
  font-size: 0.95em;
  color: var(--text-dark);
  padding: 0 20px;
  flex-grow: 1;
}

.page-fishing-games-tips-strategy__blog-item-date {
  display: block;
  font-size: 0.85em;
  color: #777;
  padding: 15px 20px 20px;
}

.page-fishing-games-tips-strategy__view-all-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-fishing-games-tips-strategy__view-all-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-tips-strategy__view-all-button:hover {
  background: #8b0000;
}

/* Final CTA Section */
.page-fishing-games-tips-strategy__final-cta-section {
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
}

.page-fishing-games-tips-strategy__final-cta-title {
  font-size: 2.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-fishing-games-tips-strategy__final-cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-tips-strategy__main-title {
    font-size: 2.8em;
  }

  .page-fishing-games-tips-strategy__section-title {
    font-size: 2.2em;
  }

  .page-fishing-games-tips-strategy__final-cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-tips-strategy__hero-section {
    padding-top: 100px !important; /* Mobile: Adjust based on fixed header height */
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .page-fishing-games-tips-strategy__hero-container {
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-fishing-games-tips-strategy__main-title {
    font-size: 2.2em;
  }

  .page-fishing-games-tips-strategy__hero-description {
    font-size: 1em;
  }

  .page-fishing-games-tips-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games-tips-strategy__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 1em !important;
  }

  .page-fishing-games-tips-strategy__content-section {
    padding: 40px 0;
  }

  .page-fishing-games-tips-strategy__container {
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-fishing-games-tips-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-fishing-games-tips-strategy__feature-item,
  .page-fishing-games-tips-strategy__promo-card,
  .page-fishing-games-tips-strategy__blog-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games-tips-strategy__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 30px;
  }

  .page-fishing-games-tips-strategy__strategy-item {
    padding: 20px;
  }

  .page-fishing-games-tips-strategy__strategy-item h3 {
    font-size: 1.2em;
  }

  .page-fishing-games-tips-strategy__faq-question {
    padding: 15px 20px;
  }

  .page-fishing-games-tips-strategy__faq-question h3 {
    font-size: 1em;
  }

  .page-fishing-games-tips-strategy__faq-answer {
    padding: 0 20px;
  }

  .page-fishing-games-tips-strategy__faq-item.active .page-fishing-games-tips-strategy__faq-answer {
    padding: 15px 20px !important;
  }

  .page-fishing-games-tips-strategy__final-cta-title {
    font-size: 2em;
  }

  .page-fishing-games-tips-strategy__final-cta-description {
    font-size: 1em;
  }

  .page-fishing-games-tips-strategy__promo-button,
  .page-fishing-games-tips-strategy__view-all-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-tips-strategy__main-title {
    font-size: 1.8em;
  }

  .page-fishing-games-tips-strategy__section-title {
    font-size: 1.6em;
  }

  .page-fishing-games-tips-strategy__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-fishing-games-tips-strategy__final-cta-title {
    font-size: 1.8em;
  }
}