/* style/game-guides-fish-types-values.css */
.page-game-guides-fish-types-values {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --text-light: #F0F0F0;
  --text-dark: #1A1A1A;
  --background-dark: #0A192F;
  --background-light: #1c324a;
  --accent-color: #FFD700;
}

.page-game-guides-fish-types-values__hero-section {
  background: var(--background-dark);
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-fish-types-values__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.8), rgba(255, 215, 0, 0.2));
  z-index: 1;
}

.page-game-guides-fish-types-values__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--accent-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.page-game-guides-fish-types-values__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.page-game-guides-fish-types-values__cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  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;
  position: relative;
  z-index: 2;
}

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

.page-game-guides-fish-types-values__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-fish-types-values__content-section {
  background-color: #f8f9fa;
  color: var(--text-dark);
  padding: 60px 0;
}

.page-game-guides-fish-types-values__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-guides-fish-types-values__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-game-guides-fish-types-values__subsection-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--accent-color);
  padding-left: 15px;
}

.page-game-guides-fish-types-values__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

.page-game-guides-fish-types-values__keyword {
  color: var(--primary-color);
  font-weight: bold;
}

.page-game-guides-fish-types-values__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-game-guides-fish-types-values__image-full-width {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-game-guides-fish-types-values__image-content {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-fish-types-values__fish-list,
.page-game-guides-fish-types-values__strategy-list,
.page-game-guides-fish-types-values__advantages-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-game-guides-fish-types-values__fish-list li,
.page-game-guides-fish-types-values__strategy-list li,
.page-game-guides-fish-types-values__advantages-list li {
  background-color: #ffffff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 4px solid var(--accent-color);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  line-height: 1.6;
}

.page-game-guides-fish-types-values__fish-list li strong,
.page-game-guides-fish-types-values__strategy-list li strong,
.page-game-guides-fish-types-values__advantages-list li strong {
  color: var(--primary-color);
}

.page-game-guides-fish-types-values__strategy-list {
  counter-reset: item;
}

.page-game-guides-fish-types-values__strategy-list li {
  display: flex;
  align-items: flex-start;
}

.page-game-guides-fish-types-values__strategy-list li::before {
  content: counter(item) ".";
  counter-increment: item;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: bold;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
  font-size: 0.9em;
}

.page-game-guides-fish-types-values__cta-group {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-game-guides-fish-types-values__cta-button--primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
  margin: 0 10px;
}

.page-game-guides-fish-types-values__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-game-guides-fish-types-values__cta-button--secondary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--accent-color);
  margin: 0 10px;
}

.page-game-guides-fish-types-values__cta-button--secondary:hover {
  background-color: #0d2547;
  border-color: #e6c200;
}

.page-game-guides-fish-types-values__note {
  text-align: center;
  font-style: italic;
  color: #555;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-guides-fish-types-values__hero-title {
    font-size: 2.5em;
  }

  .page-game-guides-fish-types-values__hero-description {
    font-size: 1em;
    padding: 0 10px;
  }

  .page-game-guides-fish-types-values__section-title {
    font-size: 2em;
  }

  .page-game-guides-fish-types-values__subsection-title {
    font-size: 1.5em;
  }

  .page-game-guides-fish-types-values__text-content,
  .page-game-guides-fish-types-values__fish-list li,
  .page-game-guides-fish-types-values__strategy-list li,
  .page-game-guides-fish-types-values__advantages-list li {
    font-size: 0.95em;
  }

  .page-game-guides-fish-types-values__cta-group {
    flex-direction: column;
  }

  .page-game-guides-fish-types-values__cta-button {
    width: 80%;
    margin: 10px auto;
  }
}

@media (max-width: 480px) {
  .page-game-guides-fish-types-values__hero-title {
    font-size: 2em;
  }

  .page-game-guides-fish-types-values__hero-section {
    padding: 80px 0 50px;
  }

  .page-game-guides-fish-types-values__section-title {
    font-size: 1.8em;
  }

  .page-game-guides-fish-types-values__subsection-title {
    font-size: 1.3em;
  }

  .page-game-guides-fish-types-values__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }

  .page-game-guides-fish-types-values__image-content {
    max-width: 95%;
  }
}