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

.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, #007BFF 0%, #0056b3 100%); /* Main color gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  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:fishing_game_pattern,ocean_waves,abstract]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-types-fishing-games__hero-section > div {
  position: relative;
  z-index: 1;
}

.page-game-types-fishing-games__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Accent color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-types-fishing-games__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-fishing-games__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-game-types-fishing-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-game-types-fishing-games__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #0056b3; /* Darker variant of main color for text */
}

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

.page-game-types-fishing-games__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #FFD700;
}

.page-game-types-fishing-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0056b3;
  transform: translateY(-3px);
}

.page-game-types-fishing-games__btn--accent {
  background-color: #007BFF; /* Main color */
  color: #ffffff;
  border: 2px solid #007BFF;
}

.page-game-types-fishing-games__btn--accent:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
}

.page-game-types-fishing-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-game-types-fishing-games__btn--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

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

.page-game-types-fishing-games__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-game-types-fishing-games__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #007BFF; /* Main color */
  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: 4px;
  background-color: #FFD700; /* Accent color */
  border-radius: 2px;
}

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

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

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

.page-game-types-fishing-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.page-game-types-fishing-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-game-types-fishing-games__feature-title {
  font-size: 1.4em;
  color: #007BFF; /* Main color */
  margin-bottom: 15px;
}

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

.page-game-types-fishing-games__game-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-types-fishing-games__game-name {
  font-size: 1.5em;
  color: #007BFF; /* Main color */
  margin: 20px 20px 10px 20px;
}

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

.page-game-types-fishing-games__game-card .page-game-types-fishing-games__btn {
  margin: 0 20px 20px 20px;
}

.page-game-types-fishing-games__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 900px;
  margin: 50px auto;
  text-align: left;
}

.page-game-types-fishing-games__steps-list li {
  counter-increment: step-counter;
  margin-bottom: 40px;
  padding-left: 70px;
  position: relative;
}

.page-game-types-fishing-games__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #FFD700; /* Accent color */
  color: #0056b3; /* Darker main color for contrast */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.page-game-types-fishing-games__step-title {
  font-size: 1.6em;
  color: #007BFF; /* Main color */
  margin-bottom: 10px;
}

.page-game-types-fishing-games__step-image {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-types-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 50px auto;
  text-align: left;
}

.page-game-types-fishing-games__tips-list li {
  background-color: #ffffff;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #FFD700; /* Accent color */
}

.page-game-types-fishing-games__tip-title {
  font-size: 1.4em;
  color: #007BFF; /* Main color */
  margin-bottom: 10px;
}

.page-game-types-fishing-games__strategy-image {
  max-width: 100%;
  border-radius: 15px;
  margin-top: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-game-types-fishing-games__promo-list {
  list-style: disc;
  text-align: left;
  max-width: 800px;
  margin: 30px auto;
  padding-left: 40px;
  color: #444;
}

.page-game-types-fishing-games__promo-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-game-types-fishing-games__app-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.page-game-types-fishing-games__app-image {
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-game-types-fishing-games__app-cta p {
  margin-bottom: 20px;
  font-size: 1.2em;
  color: #555;
}

.page-game-types-fishing-games__faq-item {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-game-types-fishing-games__faq-question {
  font-size: 1.3em;
  color: #007BFF; /* Main color */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-types-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700; /* Accent color */
}

.page-game-types-fishing-games__faq-question.active::after {
  content: '-';
}

.page-game-types-fishing-games__faq-answer {
  font-size: 1em;
  color: #666;
  display: none;
  margin-top: 10px;
}

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

.page-game-types-fishing-games__final-cta {
  background: linear-gradient(45deg, #007BFF, #FFD700);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

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

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

.page-game-types-fishing-games__final-cta .page-game-types-fishing-games__subtitle {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-fishing-games__main-title {
    font-size: 2.8em;
  }
  .page-game-types-fishing-games__subtitle {
    font-size: 1.3em;
  }
  .page-game-types-fishing-games__section-title {
    font-size: 2em;
  }
  .page-game-types-fishing-games__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-types-fishing-games__hero-section {
    padding: 80px 0;
  }
  .page-game-types-fishing-games__main-title {
    font-size: 2.2em;
  }
  .page-game-types-fishing-games__subtitle {
    font-size: 1.1em;
  }
  .page-game-types-fishing-games__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-types-fishing-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-types-fishing-games__section {
    padding: 60px 0;
  }
  .page-game-types-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-game-types-fishing-games__features-grid,
  .page-game-types-fishing-games__game-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-fishing-games__steps-list li {
    padding-left: 60px;
  }
  .page-game-types-fishing-games__steps-list li::before {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
  }
  .page-game-types-fishing-games__app-download {
    flex-direction: column;
  }
  .page-game-types-fishing-games__app-image {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .page-game-types-fishing-games__main-title {
    font-size: 1.8em;
  }
  .page-game-types-fishing-games__subtitle {
    font-size: 1em;
  }
  .page-game-types-fishing-games__section-title {
    font-size: 1.6em;
  }
  .page-game-types-fishing-games__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}