/* style/fishing-games-strategy.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A202C; /* Midnight Blue */
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --background-dark: #0a0a0a;
  --card-bg-dark: rgba(255, 255, 255, 0.08);
  --border-color-dark: rgba(255, 255, 255, 0.15);
}

.page-fishing-games-strategy {
  color: var(--text-color-light); /* Base text color for dark body background */
  background-color: var(--background-dark); /* Ensure consistency if body background is overridden */
}

.page-fishing-games-strategy__hero-section {
  position: relative;
  width: 100%;
  padding: 120px 20px 80px;
  padding-top: 120px; /* Desktop: Adjust for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1A202C 0%, #0a0a0a 100%);
  color: var(--text-color-light);
}

.page-fishing-games-strategy__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games-strategy__hero-title {
  font-size: 3.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-strategy__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

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

.page-fishing-games-strategy__btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color);
}

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

.page-fishing-games-strategy__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-fishing-games-strategy__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__content-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-games-strategy__content-container {
  background: var(--card-bg-dark);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__article-content h2 {
  color: var(--primary-color);
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-fishing-games-strategy__article-content h3 {
  color: var(--text-color-light);
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fishing-games-strategy__article-content p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-fishing-games-strategy__article-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color-dark);
}

.page-fishing-games-strategy__final-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 30px;
  background: linear-gradient(90deg, #1A202C 0%, #0a0a0a 100%);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color-dark);
}

.page-fishing-games-strategy__final-cta-title {
  color: var(--primary-color);
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-fishing-games-strategy__final-cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

  .page-fishing-games-strategy__article-content h2 {
    font-size: 2em;
  }

  .page-fishing-games-strategy__article-content h3 {
    font-size: 1.4em;
  }

  .page-fishing-games-strategy__article-content p {
    font-size: 1em;
  }

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

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

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

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

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

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

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

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

  .page-fishing-games-strategy__content-container {
    padding: 25px;
  }

  .page-fishing-games-strategy__article-content h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-fishing-games-strategy__article-content h3 {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-fishing-games-strategy__article-content p {
    font-size: 0.95em;
    line-height: 1.6;
  }

  .page-fishing-games-strategy__article-content img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-fishing-games-strategy__final-cta {
    margin-top: 40px;
    padding: 30px 20px;
  }

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

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

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

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

  .page-fishing-games-strategy__article-content h2 {
    font-size: 1.6em;
  }

  .page-fishing-games-strategy__article-content h3 {
    font-size: 1.2em;
  }

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