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

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

.page-game-types-fishing-games__hero-section {
  background: linear-gradient(135deg, #4A2780, #7a42c4);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-game-types-fishing-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,ocean_pattern,dark]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-types-fishing-games__hero-content {
  max-width: 600px;
  z-index: 1;
}

.page-game-types-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-game-types-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-types-fishing-games__hero-image-wrapper {
  width: 500px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-game-types-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-game-types-fishing-games__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #4A2780;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-types-fishing-games__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-types-fishing-games__section-title {
  font-size: 2.5em;
  color: #4A2780;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-types-fishing-games__intro-section,
.page-game-types-fishing-games__gameplay-guide,
.page-game-types-fishing-games__tips-tricks,
.page-game-types-fishing-games__popular-games,
.page-game-types-fishing-games__promotions,
.page-game-types-fishing-games__download-app,
.page-game-types-fishing-games__faq,
.page-game-types-fishing-games__final-cta {
  padding: 60px 0;
}

.page-game-types-fishing-games__intro-section {
  background-color: #fff;
}

.page-game-types-fishing-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-game-types-fishing-games__feature-card {
  background-color: #f3f3f3;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-game-types-fishing-games__feature-card:hover {
  transform: translateY(-5px);
}

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

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

.page-game-types-fishing-games__feature-text {
  color: #555;
}

.page-game-types-fishing-games__text-content {
  font-size: 1.1em;
  color: #444;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-game-types-fishing-games__guide-list,
.page-game-types-fishing-games__tips-list,
.page-game-types-fishing-games__promo-list {
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding-left: 20px;
  list-style-type: none;
}

.page-game-types-fishing-games__guide-list li,
.page-game-types-fishing-games__tips-list li,
.page-game-types-fishing-games__promo-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
  position: relative;
  padding-left: 50px;
}

.page-game-types-fishing-games__guide-list li::before,
.page-game-types-fishing-games__tips-list li::before,
.page-game-types-fishing-games__promo-list li::before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #4A2780;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-game-types-fishing-games__list-highlight {
  font-weight: bold;
  color: #4A2780;
}

.page-game-types-fishing-games__text-link {
  color: #4A2780;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-types-fishing-games__text-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-game-types-fishing-games__gameplay-guide {
  background-color: #f0f0f0;
}

.page-game-types-fishing-games__popular-games {
  background-color: #fff;
}

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

.page-game-types-fishing-games__game-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-game-types-fishing-games__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-game-types-fishing-games__game-title {
  font-size: 1.6em;
  color: #4A2780;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-game-types-fishing-games__game-description {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-game-types-fishing-games__small-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #4A2780;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-game-types-fishing-games__small-cta:hover {
  background-color: #e6c200;
}

.page-game-types-fishing-games__promotions {
  background-color: #f0f0f0;
}

.page-game-types-fishing-games__download-app {
  background: linear-gradient(90deg, #4A2780, #6c3da6);
  color: #fff;
  text-align: center;
}

.page-game-types-fishing-games__download-app .page-game-types-fishing-games__section-title {
  color: #FFD700;
}

.page-game-types-fishing-games__download-app .page-game-types-fishing-games__text-content {
  color: #e0e0e0;
}

.page-game-types-fishing-games__download-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-game-types-fishing-games__cta-button--android,
.page-game-types-fishing-games__cta-button--ios {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background-color: #FFD700;
  color: #4A2780;
}

.page-game-types-fishing-games__cta-button--android:hover,
.page-game-types-fishing-games__cta-button--ios:hover {
  background-color: #e6c200;
}

.page-game-types-fishing-games__button-icon {
  width: 24px;
  height: 24px;
}

.page-game-types-fishing-games__faq {
  background-color: #fff;
}

.page-game-types-fishing-games__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

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

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

.page-game-types-fishing-games__final-cta {
  background-color: #4A2780;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-game-types-fishing-games__final-cta .page-game-types-fishing-games__section-title {
  color: #FFD700;
}

.page-game-types-fishing-games__final-cta .page-game-types-fishing-games__text-content {
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-types-fishing-games__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .page-game-types-fishing-games__hero-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .page-game-types-fishing-games__hero-title {
    font-size: 2.8em;
  }

  .page-game-types-fishing-games__hero-description {
    font-size: 1.1em;
  }

  .page-game-types-fishing-games__hero-image-wrapper {
    width: 100%;
    height: auto;
    max-width: 500px;
  }

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

@media (max-width: 768px) {
  .page-game-types-fishing-games__hero-title {
    font-size: 2.2em;
  }

  .page-game-types-fishing-games__hero-description {
    font-size: 1em;
  }

  .page-game-types-fishing-games__features-grid,
  .page-game-types-fishing-games__game-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .page-game-types-fishing-games__download-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-game-types-fishing-games__guide-list li,
  .page-game-types-fishing-games__tips-list li,
  .page-game-types-fishing-games__promo-list li {
    font-size: 1em;
    padding-left: 45px;
  }

  .page-game-types-fishing-games__guide-list li::before,
  .page-game-types-fishing-games__tips-list li::before,
  .page-game-types-fishing-games__promo-list li::before {
    width: 25px;
    height: 25px;
    font-size: 0.8em;
    left: 10px;
  }
}

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

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

  .page-game-types-fishing-games__feature-card,
  .page-game-types-fishing-games__game-card {
    padding: 20px;
  }

  .page-game-types-fishing-games__feature-icon {
    width: 60px;
    height: 60px;
  }

  .page-game-types-fishing-games__feature-title {
    font-size: 1.3em;
  }
}