.page-games-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text, good contrast on dark background */
  background-color: #0d1a2f; /* Slightly darker than main color for body background */
}

.page-games-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-games-fishing-games__hero-section {
  background: linear-gradient(135deg, #1A2B4C, #0d1a2f);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-games-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-games-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}

.page-games-fishing-games__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 40px;
  position: relative;
}

.page-games-fishing-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-games-fishing-games__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-games-fishing-games__btn {
  display: inline-block;
  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;
  border: none;
  cursor: pointer;
}

.page-games-fishing-games__btn--primary {
  background-color: #FFD700; /* Gold for primary button */
  color: #1A2B4C; /* Dark blue text on gold */
}

.page-games-fishing-games__btn--primary:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-games-fishing-games__btn--secondary {
  background-color: #1A2B4C; /* Dark blue for secondary button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-games-fishing-games__btn--secondary:hover {
  background-color: #2c426e; /* Slightly lighter dark blue on hover */
  transform: translateY(-3px);
}

.page-games-fishing-games__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-games-fishing-games__text-link:hover {
  color: #e5c100;
  text-decoration: underline;
}

.page-games-fishing-games__introduction,
.page-games-fishing-games__why-choose,
.page-games-fishing-games__guide,
.page-games-fishing-games__tips,
.page-games-fishing-games__popular-games,
.page-games-fishing-games__app-download,
.page-games-fishing-games__faq,
.page-games-fishing-games__conclusion {
  padding: 80px 0;
  background-color: #1a2b4c; /* Main dark blue for section backgrounds */
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.page-games-fishing-games__introduction {
  margin-top: -50px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 1;
}

.page-games-fishing-games__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-games-fishing-games__text-content p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-games-fishing-games__image-wrapper {
  text-align: center;
}

.page-games-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-games-fishing-games__image--small {
  max-width: 80%;
  margin-top: 20px;
}

.page-games-fishing-games__image-caption {
  margin-top: 15px;
  font-style: italic;
  color: #AAAAAA;
  font-size: 0.9em;
}

.page-games-fishing-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-games-fishing-games__feature-card {
  background-color: #0d1a2f; /* Darker blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-fishing-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-games-fishing-games__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-games-fishing-games__card-title a {
  color: inherit; /* Ensure link color is inherited for consistency */
  text-decoration: none;
}

.page-games-fishing-games__card-title a:hover {
  text-decoration: underline;
}

.page-games-fishing-games__guide-intro,
.page-games-fishing-games__tips-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-games-fishing-games__guide-steps,
.page-games-fishing-games__tips-list {
  list-style: none;
  padding: 0;
}

.page-games-fishing-games__guide-steps li,
.page-games-fishing-games__tips-list li {
  background-color: #0d1a2f;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-games-fishing-games__guide-steps li p,
.page-games-fishing-games__tips-list li p {
  color: #E0E0E0;
}

.page-games-fishing-games__guide-steps li .page-games-fishing-games__step-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-top: 0;
}

.page-games-fishing-games__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
  list-style: none;
  padding: 0;
}

.page-games-fishing-games__game-list li {
  background-color: #0d1a2f;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-games-fishing-games__game-list li:hover {
  transform: translateY(-5px);
}

.page-games-fishing-games__game-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-games-fishing-games__game-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-games-fishing-games__app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-games-fishing-games__app-text p {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-games-fishing-games__app-image {
  text-align: center;
}

.page-games-fishing-games__faq-items {
  max-width: 900px;
  margin: 0 auto;
}

.page-games-fishing-games__faq-item {
  background-color: #0d1a2f;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-games-fishing-games__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-games-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-games-fishing-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-games-fishing-games__faq-answer {
  color: #E0E0E0;
  display: none;
  margin-top: 10px;
}

.page-games-fishing-games__faq-answer.active {
  display: block;
}

.page-games-fishing-games__conclusion p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #E0E0E0;
}

.page-games-fishing-games__final-cta {
  text-align: center;
  margin-top: 40px;
}

.page-games-fishing-games__final-cta .page-games-fishing-games__btn {
  margin: 0 10px;
}

.page-games-fishing-games__cta-bottom,
.page-games-fishing-games__cta-guide,
.page-games-fishing-games__cta-games {
  text-align: center;
  margin-top: 40px;
}

.page-games-fishing-games__cta-bottom .page-games-fishing-games__btn,
.page-games-fishing-games__cta-guide .page-games-fishing-games__btn,
.page-games-fishing-games__cta-games .page-games-fishing-games__btn {
  min-width: 250px;
}

.page-games-fishing-games .highlight {
  color: #FFD700;
}

.page-games-fishing-games .keyword {
  font-weight: bold;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-fishing-games__hero-title {
    font-size: 2.8em;
  }
  .page-games-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-games-fishing-games__section-title {
    font-size: 2.2em;
  }
  .page-games-fishing-games__content-grid,
  .page-games-fishing-games__app-content {
    grid-template-columns: 1fr;
  }
  .page-games-fishing-games__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-games-fishing-games__app-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-games-fishing-games__hero-section,
  .page-games-fishing-games__introduction,
  .page-games-fishing-games__why-choose,
  .page-games-fishing-games__guide,
  .page-games-fishing-games__tips,
  .page-games-fishing-games__popular-games,
  .page-games-fishing-games__app-download,
  .page-games-fishing-games__faq,
  .page-games-fishing-games__conclusion {
    padding: 60px 0;
  }
  .page-games-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-games-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-games-fishing-games__sub-title {
    font-size: 1.4em;
  }
  .page-games-fishing-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-games-fishing-games__final-cta .page-games-fishing-games__btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
  .page-games-fishing-games__image--small {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-games-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-games-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-games-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-games-fishing-games__btn {
    width: 100%;
    box-sizing: border-box;
  }
}