/* style/fishing-games-popular-strategies.css */

/* Custom Colors */
:root {
  --page-bg-color: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-fishing-games-popular-strategies {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-secondary-color); /* Default text color for the page, overridden where specific backgrounds */
  background-color: var(--page-bg-color); /* Page background */
}

.page-fishing-games-popular-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Color Contrast Classes */
.page-fishing-games-popular-strategies__dark-bg {
  background-color: var(--page-bg-color);
  color: var(--text-main-color);
}

.page-fishing-games-popular-strategies__light-bg {
  background-color: #ffffff; /* Using white for light bg to ensure contrast */
  color: #333333; /* Dark text on light background */
}

.page-fishing-games-popular-strategies__text-main {
  color: var(--text-main-color);
}

.page-fishing-games-popular-strategies__text-secondary {
  color: var(--text-secondary-color);
}

.page-fishing-games-popular-strategies__card-bg {
  background-color: var(--card-bg-color);
  color: var(--text-secondary-color);
}

/* Hero Section */
.page-fishing-games-popular-strategies__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-fishing-games-popular-strategies__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 40px;
}

.page-fishing-games-popular-strategies__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games-popular-strategies__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-fishing-games-popular-strategies__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-fishing-games-popular-strategies__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

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

.page-fishing-games-popular-strategies__btn-primary,
.page-fishing-games-popular-strategies__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-popular-strategies__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: 2px solid transparent;
}

.page-fishing-games-popular-strategies__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-fishing-games-popular-strategies__btn-secondary:hover {
  background: var(--glow-color);
  color: var(--page-bg-color);
  transform: translateY(-2px);
}

/* Content Sections */
.page-fishing-games-popular-strategies__content-section {
  padding: 60px 0;
}

.page-fishing-games-popular-strategies__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.page-fishing-games-popular-strategies__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.page-fishing-games-popular-strategies__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

/* Feature List */
.page-fishing-games-popular-strategies__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-popular-strategies__feature-item {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-fishing-games-popular-strategies__feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Game Cards */
.page-fishing-games-popular-strategies__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-popular-strategies__card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
  padding-bottom: 20px; /* Add padding at bottom for content */
}

.page-fishing-games-popular-strategies__card:hover {
  transform: translateY(-5px);
}

.page-fishing-games-popular-strategies__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card images */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games-popular-strategies__card-title {
  font-size: 1.4rem;
  margin: 0 20px 10px;
}

.page-fishing-games-popular-strategies__card-description {
  font-size: 1rem;
  margin: 0 20px;
}

/* Strategy & Management Lists */
.page-fishing-games-popular-strategies__strategy-list,
.page-fishing-games-popular-strategies__advanced-tips-list,
.page-fishing-games-popular-strategies__management-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games-popular-strategies__strategy-item,
.page-fishing-games-popular-strategies__advanced-tip-item,
.page-fishing-games-popular-strategies__management-item {
  background-color: var(--card-bg-color);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border-left: 5px solid var(--glow-color);
}

.page-fishing-games-popular-strategies__strategy-title,
.page-fishing-games-popular-strategies__advanced-tip-title,
.page-fishing-games-popular-strategies__management-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* FAQ Section */
.page-fishing-games-popular-strategies__faq-section {
  padding: 60px 0;
}

.page-fishing-games-popular-strategies__faq-list {
  margin-top: 40px;
}

.page-fishing-games-popular-strategies__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-secondary-color);
}

.page-fishing-games-popular-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-main-color);
  list-style: none; /* For details/summary */
}

.page-fishing-games-popular-strategies__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games-popular-strategies__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-fishing-games-popular-strategies__faq-item[open] .page-fishing-games-popular-strategies__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games-popular-strategies__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-popular-strategies__hero-content {
    max-width: 768px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-popular-strategies__hero-section {
    padding: 40px 0;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-fishing-games-popular-strategies__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-fishing-games-popular-strategies__main-title {
    font-size: 2.2rem;
  }

  .page-fishing-games-popular-strategies__description {
    font-size: 1rem;
  }

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

  .page-fishing-games-popular-strategies__btn-primary,
  .page-fishing-games-popular-strategies__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games-popular-strategies__content-section {
    padding: 40px 0;
  }

  .page-fishing-games-popular-strategies__section-title {
    font-size: 1.8rem;
  }

  .page-fishing-games-popular-strategies__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Images responsiveness */
  .page-fishing-games-popular-strategies img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-popular-strategies__game-cards,
  .page-fishing-games-popular-strategies__feature-list {
    grid-template-columns: 1fr;
  }

  .page-fishing-games-popular-strategies__card-image {
    height: auto; /* Allow height to adjust for mobile */
  }

  .page-fishing-games-popular-strategies__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-fishing-games-popular-strategies__faq-answer {
    padding: 0 20px 15px;
  }
}

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

  .page-fishing-games-popular-strategies__section-title {
    font-size: 1.6rem;
  }

  .page-fishing-games-popular-strategies__description,
  .page-fishing-games-popular-strategies__text-block,
  .page-fishing-games-popular-strategies__card-description,
  .page-fishing-games-popular-strategies__strategy-item p,
  .page-fishing-games-popular-strategies__advanced-tip-item p,
  .page-fishing-games-popular-strategies__management-item p,
  .page-fishing-games-popular-strategies__faq-answer {
    font-size: 0.95rem;
  }

  .page-fishing-games-popular-strategies__btn-primary,
  .page-fishing-games-popular-strategies__btn-secondary {
    font-size: 1rem;
    padding: 12px 20px;
  }
}