.page-fishing-games-popular-titles {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-section {
  background: linear-gradient(135deg, #0056B3 0%, #003a7a 100%); /* Darker blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-content {
  max-width: 800px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Golden yellow for highlight */
  line-height: 1.2;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-title .highlight-text {
  color: #FFFFFF;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-description {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__btn--primary {
  background-color: #FFD700; /* Golden yellow */
  color: #0056B3; /* Deep blue */
  border: 2px solid #FFD700;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__btn--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__section-title {
  font-size: 2.8em;
  color: #0056B3; /* Deep blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__section-title .highlight-text {
  color: #FFD700; /* Golden yellow */
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__introduction-section,
.page-fishing-games-popular-titles .page-fishing-games-popular-titles__games-showcase,
.page-fishing-games-popular-titles .page-fishing-games-popular-titles__tips-section,
.page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-download,
.page-fishing-games-popular-titles .page-fishing-games-popular-titles__why-choose,
.page-fishing-games-popular-titles .page-fishing-games-popular-titles__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444444;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__text-content .highlight-text {
  font-weight: bold;
  color: #0056B3;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__game-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__game-title {
  font-size: 1.8em;
  color: #0056B3;
  margin-bottom: 15px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__game-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__btn--play {
  background-color: #FFD700;
  color: #0056B3;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 5px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__btn--play:hover {
  background-color: #e6c200;
}

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

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__tip-item {
  background-color: #eaf3ff; /* Lighter blue background for tips */
  border-left: 5px solid #0056B3;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__tip-title {
  font-size: 1.5em;
  color: #0056B3;
  margin-bottom: 15px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-download {
  background: linear-gradient(90deg, #0056B3 0%, #003a7a 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-content .page-fishing-games-popular-titles__section-title {
  color: #FFD700;
  text-align: left;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-content .page-fishing-games-popular-titles__section-title::after {
  background-color: #FFFFFF;
  left: 0;
  transform: translateX(0);
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-content .page-fishing-games-popular-titles__text-content {
  color: #E0E0E0;
  text-align: left;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__btn--download {
  background-color: #FFD700;
  color: #0056B3;
  border: none;
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 8px;
  margin-top: 20px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__btn--download:hover {
  background-color: #e6c200;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-image-wrapper {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-image {
  width: 100%;
  height: auto;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__why-choose {
  background-color: #f0f8ff;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__feature-list li {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__list-icon {
  font-size: 1.5em;
  color: #0056B3; /* Deep blue */
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__center-cta {
  text-align: center;
  margin-top: 50px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__faq-section {
  background-color: #FFFFFF;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__faq-item {
  margin-bottom: 25px;
  padding: 20px;
  background-color: #f8f8f8;
  border-left: 4px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__faq-question {
  font-size: 1.4em;
  color: #0056B3;
  margin-bottom: 10px;
}

.page-fishing-games-popular-titles .page-fishing-games-popular-titles__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-description {
    font-size: 1.3em;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__section-title {
    font-size: 2.2em;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__game-grid,
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-flex {
    flex-direction: column-reverse;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-content,
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-content .page-fishing-games-popular-titles__section-title {
    text-align: center;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-content .page-fishing-games-popular-titles__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-section,
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__introduction-section,
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__games-showcase,
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__tips-section,
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__cta-download,
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__why-choose,
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__faq-section {
    padding: 50px 0;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__btn {
    width: 100%;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games-popular-titles .page-fishing-games-popular-titles__faq-question {
    font-size: 1.2em;
  }
}