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

.page-fishing-games-scenes-fish-guide .highlight {
  color: #007bff;
  font-weight: bold;
}

.page-fishing-games-scenes-fish-guide__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.page-fishing-games-scenes-fish-guide__hero-content {
  max-width: 900px;
}

.page-fishing-games-scenes-fish-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffc107; /* Auxiliary color for highlight */
}

.page-fishing-games-scenes-fish-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e9ecef;
}

.page-fishing-games-scenes-fish-guide__hero-image-wrapper {
  width: 100%;
  max-width: 800px;
}

.page-fishing-games-scenes-fish-guide__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-scenes-fish-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-fishing-games-scenes-fish-guide__btn--primary {
  background-color: #ffc107;
  color: #333;
  border: none;
}

.page-fishing-games-scenes-fish-guide__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-fishing-games-scenes-fish-guide__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-fishing-games-scenes-fish-guide__btn--secondary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-fishing-games-scenes-fish-guide__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-fishing-games-scenes-fish-guide__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-fishing-games-scenes-fish-guide__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #007bff;
  position: relative;
  padding-bottom: 10px;
}

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

.page-fishing-games-scenes-fish-guide__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games-scenes-fish-guide__scene-card,
.page-fishing-games-scenes-fish-guide__strategy-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-scenes-fish-guide__scene-card:hover,
.page-fishing-games-scenes-fish-guide__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.page-fishing-games-scenes-fish-guide__card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-fishing-games-scenes-fish-guide__card-description {
  font-size: 1em;
  color: #666;
}

.page-fishing-games-scenes-fish-guide__fish-table-wrapper {
  margin-top: 40px;
  overflow-x: auto;
}

.page-fishing-games-scenes-fish-guide__subtitle {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 20px;
}

.page-fishing-games-scenes-fish-guide__fish-illustration,
.page-fishing-games-scenes-fish-guide__fish-detail-image,
.page-fishing-games-scenes-fish-guide__illustration-full-width {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
  display: block;
}

.page-fishing-games-scenes-fish-guide__fish-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.page-fishing-games-scenes-fish-guide__fish-table th,
.page-fishing-games-scenes-fish-guide__fish-table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
  font-size: 0.95em;
}

.page-fishing-games-scenes-fish-guide__fish-table th {
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
}

.page-fishing-games-scenes-fish-guide__fish-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.page-fishing-games-scenes-fish-guide__fish-table tr:hover {
  background-color: #e6f2ff;
}

.page-fishing-games-scenes-fish-guide__table-caption {
  margin-top: 20px;
  font-style: italic;
  color: #777;
}

.page-fishing-games-scenes-fish-guide__fish-detail {
  text-align: left;
  margin-top: 60px;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-scenes-fish-guide__fish-detail-list {
  list-style: disc inside;
  margin-top: 20px;
  padding-left: 20px;
  color: #555;
}

.page-fishing-games-scenes-fish-guide__fish-detail-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-fishing-games-scenes-fish-guide__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-fishing-games-scenes-fish-guide__benefits-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #333;
  position: relative;
  padding-left: 50px;
}

.page-fishing-games-scenes-fish-guide__benefits-list li::before {
  content: '✓';
  color: #ffc107;
  font-size: 1.5em;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-fishing-games-scenes-fish-guide__section--cta {
  background-color: #007bff;
  color: #fff;
  padding: 80px 20px;
}

.page-fishing-games-scenes-fish-guide__section--cta .page-fishing-games-scenes-fish-guide__section-title {
  color: #ffc107;
}

.page-fishing-games-scenes-fish-guide__section--cta .page-fishing-games-scenes-fish-guide__section-intro {
  color: #e9ecef;
  margin-bottom: 30px;
}

.page-fishing-games-scenes-fish-guide__cta-note {
  margin-top: 20px;
  font-size: 1em;
  color: #e9ecef;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-fishing-games-scenes-fish-guide__hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games-scenes-fish-guide__section-title {
    font-size: 2.2em;
  }
  .page-fishing-games-scenes-fish-guide__subtitle {
    font-size: 1.8em;
  }
  .page-fishing-games-scenes-fish-guide__hero {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-scenes-fish-guide__hero {
    padding: 60px 15px;
  }
  .page-fishing-games-scenes-fish-guide__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games-scenes-fish-guide__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-scenes-fish-guide__section {
    padding: 40px 15px;
  }
  .page-fishing-games-scenes-fish-guide__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-scenes-fish-guide__section-intro {
    font-size: 0.95em;
  }
  .page-fishing-games-scenes-fish-guide__scene-grid,
  .page-fishing-games-scenes-fish-guide__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-scenes-fish-guide__fish-table th,
  .page-fishing-games-scenes-fish-guide__fish-table td {
    padding: 10px;
    font-size: 0.85em;
  }
  .page-fishing-games-scenes-fish-guide__benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-scenes-fish-guide__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games-scenes-fish-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fishing-games-scenes-fish-guide__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games-scenes-fish-guide__subtitle {
    font-size: 1.4em;
  }
  .page-fishing-games-scenes-fish-guide__fish-detail-list {
    padding-left: 10px;
  }
  .page-fishing-games-scenes-fish-guide__benefits-list li {
    padding-left: 40px;
  }
}