/* style/game-types-fishing-details.css */
.page-game-types-fishing-details {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-game-types-fishing-details__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-types-fishing-details__section:nth-child(even) {
  background-color: #f8f8f8; /* Light grey for subtle contrast */
}

.page-game-types-fishing-details__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-types-fishing-details__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-game-types-fishing-details__subsection-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-game-types-fishing-details__text-content {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
}

/* Hero Section */
.page-game-types-fishing-details__hero {
  background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
  color: #fff;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-game-types-fishing-details__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-game-types-fishing-details__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
}

.page-game-types-fishing-details__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-game-types-fishing-details__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold accent */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-types-fishing-details__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-game-types-fishing-details__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-types-fishing-details__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Advantages Section */
.page-game-types-fishing-details__advantages {
  background-color: #fff;
}

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

.page-game-types-fishing-details__advantage-item {
  background-color: #f0f8ff; /* Light blue */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-fishing-details__advantage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-game-types-fishing-details__advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-game-types-fishing-details__advantage-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-game-types-fishing-details__advantage-text {
  color: #555;
  font-size: 1em;
}

/* Gameplay Guide Section */
.page-game-types-fishing-details__gameplay-guide {
  background-color: #f8f8f8;
}

.page-game-types-fishing-details__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-game-types-fishing-details__step-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #FFCC00;
}

.page-game-types-fishing-details__step-number {
  font-size: 2em;
  font-weight: bold;
  color: #FFCC00;
  margin-bottom: 10px;
}

.page-game-types-fishing-details__step-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-game-types-fishing-details__step-item p {
  color: #666;
}

.page-game-types-fishing-details__step-item a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
}

.page-game-types-fishing-details__step-item a:hover {
  text-decoration: underline;
  color: #FFCC00;
}

.page-game-types-fishing-details__game-interface-showcase {
  margin-top: 60px;
  padding: 30px;
  background-color: #e6f7ff; /* Lighter blue */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-game-types-fishing-details__game-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-game-types-fishing-details__image-caption {
  margin-top: 20px;
  font-style: italic;
  color: #777;
  font-size: 0.95em;
}

/* Weapons & Strategy Section */
.page-game-types-fishing-details__weapons-strategy {
  background-color: #fff;
}

.page-game-types-fishing-details__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 20px auto;
}

.page-game-types-fishing-details__list li {
  background-color: #f0f0f0;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #003366;
  color: #333;
}

.page-game-types-fishing-details__list li strong {
  color: #003366;
}

.page-game-types-fishing-details__list li ul {
  margin-top: 10px;
  margin-left: 20px;
  list-style: disc;
  color: #555;
}

.page-game-types-fishing-details__strategy-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
  text-align: left;
}

.page-game-types-fishing-details__strategy-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-game-types-fishing-details__strategy-layout .page-game-types-fishing-details__list {
  flex: 2;
  margin: 0;
  max-width: none;
}

/* Features Section */
.page-game-types-fishing-details__features {
  background-color: #e6f7ff;
}

.page-game-types-fishing-details__feature-list {
  list-style: none;
  padding: 0;
  text-align: center;
  max-width: 900px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.page-game-types-fishing-details__feature-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #003366;
  font-weight: bold;
  border-bottom: 3px solid #FFCC00;
}

.page-game-types-fishing-details__feature-image-wrapper {
  margin-top: 40px;
}

.page-game-types-fishing-details__feature-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* CTA Bottom Section */
.page-game-types-fishing-details__cta-bottom {
  background: linear-gradient(45deg, #003366, #0055a4); /* Dark blue to lighter blue */
  color: #fff;
  padding: 80px 0;
}

.page-game-types-fishing-details__cta-content {
  max-width: 800px;
}

.page-game-types-fishing-details__cta-title {
  font-size: 2.8em;
  color: #FFCC00;
  margin-bottom: 20px;
}

.page-game-types-fishing-details__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-game-types-fishing-details__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-types-fishing-details__cta-button--primary {
  background-color: #FFCC00;
  color: #003366;
}

.page-game-types-fishing-details__cta-button--primary:hover {
  background-color: #e6b800;
}

.page-game-types-fishing-details__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFCC00;
  color: #FFCC00;
}

.page-game-types-fishing-details__cta-button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

/* FAQ Section */
.page-game-types-fishing-details__faq {
  background-color: #f8f8f8;
}

.page-game-types-fishing-details__faq-item {
  background-color: #fff;
  margin: 0 auto 20px auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  max-width: 900px;
}

.page-game-types-fishing-details__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
}

.page-game-types-fishing-details__faq-answer {
  color: #555;
}

.page-game-types-fishing-details__faq-answer a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
}

.page-game-types-fishing-details__faq-answer a:hover {
  text-decoration: underline;
  color: #FFCC00;
}

/* More Games Section */
.page-game-types-fishing-details__more-games {
  background-color: #fff;
}

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

.page-game-types-fishing-details__game-category-item {
  background-color: #f0f8ff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-fishing-details__game-category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-game-types-fishing-details__category-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-game-types-fishing-details__category-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-game-types-fishing-details__category-item p {
  color: #555;
  margin-bottom: 20px;
}

.page-game-types-fishing-details__category-link {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-game-types-fishing-details__category-link:hover {
  background-color: #FFCC00;
  color: #003366;
}

/* Final CTA Section */
.page-game-types-fishing-details__final-cta {
  background: linear-gradient(135deg, #FFCC00, #e6b800); /* Gold gradient */
  color: #003366;
  padding: 80px 0;
}

.page-game-types-fishing-details__final-cta-content {
  max-width: 800px;
}

.page-game-types-fishing-details__final-cta-title {
  font-size: 3em;
  color: #003366;
  margin-bottom: 20px;
}

.page-game-types-fishing-details__final-cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-fishing-details__hero-title {
    font-size: 2.8em;
  }
  .page-game-types-fishing-details__hero-description {
    font-size: 1.1em;
  }
  .page-game-types-fishing-details__section-title {
    font-size: 2em;
  }
  .page-game-types-fishing-details__subsection-title {
    font-size: 1.6em;
  }
  .page-game-types-fishing-details__strategy-layout {
    flex-direction: column;
  }
  .page-game-types-fishing-details__strategy-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-game-types-fishing-details__hero {
    padding: 80px 0;
  }
  .page-game-types-fishing-details__hero-title {
    font-size: 2.2em;
  }
  .page-game-types-fishing-details__hero-description {
    font-size: 1em;
  }
  .page-game-types-fishing-details__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-game-types-fishing-details__section {
    padding: 40px 0;
  }
  .page-game-types-fishing-details__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-types-fishing-details__grid,
  .page-game-types-fishing-details__steps-grid,
  .page-game-types-fishing-details__feature-list,
  .page-game-types-fishing-details__game-category-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-fishing-details__faq-item,
  .page-game-types-fishing-details__text-content {
    margin-left: 10px;
    margin-right: 10px;
  }
  .page-game-types-fishing-details__cta-title {
    font-size: 2.2em;
  }
  .page-game-types-fishing-details__final-cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-game-types-fishing-details__hero-title {
    font-size: 1.8em;
  }
  .page-game-types-fishing-details__hero-description {
    font-size: 0.9em;
  }
  .page-game-types-fishing-details__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-types-fishing-details__cta-button {
    width: 80%;
  }
  .page-game-types-fishing-details__section-title {
    font-size: 1.5em;
  }
  .page-game-types-fishing-details__subsection-title {
    font-size: 1.4em;
  }
  .page-game-types-fishing-details__advantage-title,
  .page-game-types-fishing-details__step-title,
  .page-game-types-fishing-details__faq-question,
  .page-game-types-fishing-details__category-title {
    font-size: 1.2em;
  }
}