/* style/game-guides-fishing-games.css */
.page-game-guides-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #1A2A40; /* Dark blue for main text */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background for readability */
}

.page-game-guides-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-fishing-games__hero {
  background: linear-gradient(135deg, #1A2A40, #3a4a60); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-fishing-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for hero title */
  font-weight: bold;
}

.page-game-guides-fishing-games__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-game-guides-fishing-games__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2A40; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-guides-fishing-games__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-game-guides-fishing-games__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-game-guides-fishing-games__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-game-guides-fishing-games__section {
  padding: 60px 0;
}

.page-game-guides-fishing-games__section--dark {
  background-color: #1A2A40; /* Dark blue background */
  color: #ffffff;
}

.page-game-guides-fishing-games__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for section titles on dark background */
  font-weight: bold;
}

.page-game-guides-fishing-games__section--dark .page-game-guides-fishing-games__section-title {
  color: #FFD700; /* Gold for section titles on dark background */
}

.page-game-guides-fishing-games__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-guides-fishing-games__feature-grid, 
.page-game-guides-fishing-games__weapon-grid, 
.page-game-guides-fishing-games__strategy-grid, 
.page-game-guides-fishing-games__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-guides-fishing-games__feature-item, 
.page-game-guides-fishing-games__weapon-item, 
.page-game-guides-fishing-games__strategy-item, 
.page-game-guides-fishing-games__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  color: #1A2A40;
}

.page-game-guides-fishing-games__section--dark .page-game-guides-fishing-games__feature-item,
.page-game-guides-fishing-games__section--dark .page-game-guides-fishing-games__weapon-item,
.page-game-guides-fishing-games__section--dark .page-game-guides-fishing-games__strategy-item,
.page-game-guides-fishing-games__section--dark .page-game-guides-fishing-games__step-item {
  background-color: #2a3a50; /* Slightly lighter dark blue for cards on dark background */
  color: #ffffff;
}

.page-game-guides-fishing-games__feature-item:hover, 
.page-game-guides-fishing-games__weapon-item:hover, 
.page-game-guides-fishing-games__strategy-item:hover, 
.page-game-guides-fishing-games__step-item:hover {
  transform: translateY(-5px);
}

.page-game-guides-fishing-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-game-guides-fishing-games__feature-item h3, 
.page-game-guides-fishing-games__weapon-item h3, 
.page-game-guides-fishing-games__strategy-item h3, 
.page-game-guides-fishing-games__step-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #1A2A40;
}

.page-game-guides-fishing-games__section--dark .page-game-guides-fishing-games__feature-item h3,
.page-game-guides-fishing-games__section--dark .page-game-guides-fishing-games__weapon-item h3,
.page-game-guides-fishing-games__section--dark .page-game-guides-fishing-games__strategy-item h3,
.page-game-guides-fishing-games__section--dark .page-game-guides-fishing-games__step-item h3 {
  color: #FFD700;
}

.page-game-guides-fishing-games__weapon-image, 
.page-game-guides-fishing-games__strategy-image {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
}

.page-game-guides-fishing-games__subsection-title {
  font-size: 1.8em;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #1A2A40;
  text-align: center;
}

.page-game-guides-fishing-games__section--dark .page-game-guides-fishing-games__subsection-title {
  color: #FFD700;
}

.page-game-guides-fishing-games__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  font-size: 1.1em;
}

.page-game-guides-fishing-games__list li {
  background-color: #2a3a50; /* Lighter dark blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-game-guides-fishing-games__list li strong {
  color: #FFD700;
  margin-right: 10px;
}

.page-game-guides-fishing-games__image-full-width {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-game-guides-fishing-games__step-item {
  position: relative;
  padding-top: 60px;
}

.page-game-guides-fishing-games__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700; /* Gold number background */
  color: #1A2A40; /* Dark blue number text */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-game-guides-fishing-games__faq-list {
  margin-top: 30px;
}

.page-game-guides-fishing-games__faq-item {
  background-color: #2a3a50; /* Lighter dark blue for FAQ item */
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-game-guides-fishing-games__faq-item h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-game-guides-fishing-games__faq-item p {
  font-size: 1em;
  color: #e0e0e0;
}

.page-game-guides-fishing-games__call-to-action {
  background-color: #FFD700; /* Gold background for final CTA */
  color: #1A2A40; /* Dark blue text on gold */
  padding: 80px 0;
  text-align: center;
}

.page-game-guides-fishing-games__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides-fishing-games__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-guides-fishing-games__hero-title {
    font-size: 2.5em;
  }

  .page-game-guides-fishing-games__hero-subtitle {
    font-size: 1.1em;
  }

  .page-game-guides-fishing-games__section-title {
    font-size: 2em;
  }

  .page-game-guides-fishing-games__feature-grid, 
  .page-game-guides-fishing-games__weapon-grid, 
  .page-game-guides-fishing-games__strategy-grid, 
  .page-game-guides-fishing-games__step-by-step {
    grid-template-columns: 1fr;
  }

  .page-game-guides-fishing-games__cta-title {
    font-size: 2em;
  }

  .page-game-guides-fishing-games__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-guides-fishing-games__hero {
    padding: 60px 0;
  }

  .page-game-guides-fishing-games__hero-title {
    font-size: 2em;
  }

  .page-game-guides-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-guides-fishing-games__section {
    padding: 40px 0;
  }

  .page-game-guides-fishing-games__section-title {
    font-size: 1.8em;
  }

  .page-game-guides-fishing-games__feature-item, 
  .page-game-guides-fishing-games__weapon-item, 
  .page-game-guides-fishing-games__strategy-item, 
  .page-game-guides-fishing-games__step-item {
    padding: 20px;
  }

  .page-game-guides-fishing-games__subsection-title {
    font-size: 1.5em;
  }

  .page-game-guides-fishing-games__list li {
    padding: 10px 15px;
    font-size: 0.95em;
  }

  .page-game-guides-fishing-games__faq-item {
    padding: 20px;
  }

  .page-game-guides-fishing-games__faq-item h3 {
    font-size: 1.2em;
  }

  .page-game-guides-fishing-games__call-to-action {
    padding: 50px 0;
  }

  .page-game-guides-fishing-games__cta-title {
    font-size: 1.8em;
  }
}