/* style/game-guides-fish-shooting-guide.css */
.page-game-guides-fish-shooting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0A2E36; /* Main dark background */
}

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

.page-game-guides-fish-shooting-guide__hero {
  background: linear-gradient(135deg, #0A2E36 0%, #1a4d56 100%); /* Darker gradient */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-fish-shooting-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-game-guides-fish-shooting-guide__title {
  font-size: 3.5em;
  color: #E0B34C; /* Accent color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  line-height: 1.2;
}

.page-game-guides-fish-shooting-guide__subtitle {
  font-size: 1.4em;
  color: #D3D3D3;
  margin-bottom: 30px;
}

.page-game-guides-fish-shooting-guide__button {
  display: inline-block;
  background-color: #E0B34C; /* Accent color for primary button */
  color: #0A2E36; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-game-guides-fish-shooting-guide__button:hover {
  background-color: #f5c76e; /* Lighter accent on hover */
  transform: translateY(-2px);
}

.page-game-guides-fish-shooting-guide__button--secondary {
  background-color: transparent;
  color: #E0B34C; /* Accent color for secondary button text */
  border: 2px solid #E0B34C;
  margin-left: 20px;
}

.page-game-guides-fish-shooting-guide__button--secondary:hover {
  background-color: #E0B34C;
  color: #0A2E36;
}

.page-game-guides-fish-shooting-guide__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust to show part of the image */
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.page-game-guides-fish-shooting-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.page-game-guides-fish-shooting-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(224, 179, 76, 0.2);
}

.page-game-guides-fish-shooting-guide__section:last-of-type {
  border-bottom: none;
}

.page-game-guides-fish-shooting-guide__section-title {
  font-size: 2.5em;
  color: #E0B34C;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-guides-fish-shooting-guide__introduction p,
.page-game-guides-fish-shooting-guide__strategy p,
.page-game-guides-fish-shooting-guide__management p,
.page-game-guides-fish-shooting-guide__offers p,
.page-game-guides-fish-shooting-guide__conclusion p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #D3D3D3;
}

.page-game-guides-fish-shooting-guide__introduction strong,
.page-game-guides-fish-shooting-guide__strategy strong,
.page-game-guides-fish-shooting-guide__management strong,
.page-game-guides-fish-shooting-guide__offers strong,
.page-game-guides-fish-shooting-guide__conclusion strong {
  color: #E0B34C;
}

.page-game-guides-fish-shooting-guide__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-guides-fish-shooting-guide__grid-item {
  background-color: #1a4d56; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-game-guides-fish-shooting-guide__grid-item:hover {
  transform: translateY(-5px);
  background-color: #2a6a75;
}

.page-game-guides-fish-shooting-guide__grid-item h3 {
  color: #E0B34C;
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-game-guides-fish-shooting-guide__grid-item p {
  color: #D3D3D3;
  font-size: 1em;
}

.page-game-guides-fish-shooting-guide__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px #E0B34C);
}

.page-game-guides-fish-shooting-guide__content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-game-guides-fish-shooting-guide__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-game-guides-fish-shooting-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-guides-fish-shooting-guide__image--centered {
  display: block;
  margin: 40px auto;
  max-width: 800px;
}

.page-game-guides-fish-shooting-guide__text-content {
  flex: 2;
  min-width: 300px;
}

.page-game-guides-fish-shooting-guide__text-content h3 {
  color: #E0B34C;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-game-guides-fish-shooting-guide__text-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-game-guides-fish-shooting-guide__text-content ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23E0B34C"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #D3D3D3;
  font-size: 1.05em;
}

.page-game-guides-fish-shooting-guide__text-content ul li strong {
  color: #E0B34C;
}

.page-game-guides-fish-shooting-guide__strategy h3,
.page-game-guides-fish-shooting-guide__boss-strategy h3,
.page-game-guides-fish-shooting-guide__management h3,
.page-game-guides-fish-shooting-guide__offers h3 {
  color: #E0B34C;
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides-fish-shooting-guide__strategy ul,
.page-game-guides-fish-shooting-guide__boss-strategy ol,
.page-game-guides-fish-shooting-guide__management ul,
.page-game-guides-fish-shooting-guide__offers ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-game-guides-fish-shooting-guide__strategy ul li,
.page-game-guides-fish-shooting-guide__management ul li,
.page-game-guides-fish-shooting-guide__offers ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23E0B34C"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #D3D3D3;
  font-size: 1.05em;
}

.page-game-guides-fish-shooting-guide__boss-strategy ol li {
  color: #D3D3D3;
  font-size: 1.05em;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.page-game-guides-fish-shooting-guide__boss-strategy ol li::before {
  content: counter(list-item) ". ";
  counter-increment: list-item;
  color: #E0B34C;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-game-guides-fish-shooting-guide__offer-list {
  margin-top: 20px;
}

.page-game-guides-fish-shooting-guide__cta-buttons {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-fish-shooting-guide__title {
    font-size: 2.8em;
  }
  .page-game-guides-fish-shooting-guide__subtitle {
    font-size: 1.2em;
  }
  .page-game-guides-fish-shooting-guide__section-title {
    font-size: 2em;
  }
  .page-game-guides-fish-shooting-guide__content-row {
    flex-direction: column;
  }
  .page-game-guides-fish-shooting-guide__image-wrapper,
  .page-game-guides-fish-shooting-guide__text-content {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-game-guides-fish-shooting-guide__hero {
    padding: 60px 0;
  }
  .page-game-guides-fish-shooting-guide__title {
    font-size: 2.2em;
  }
  .page-game-guides-fish-shooting-guide__subtitle {
    font-size: 1em;
  }
  .page-game-guides-fish-shooting-guide__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides-fish-shooting-guide__button--secondary {
    margin-left: 10px;
    margin-top: 15px;
  }
  .page-game-guides-fish-shooting-guide__section {
    padding: 40px 0;
  }
  .page-game-guides-fish-shooting-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-guides-fish-shooting-guide__grid-item {
    padding: 20px;
  }
  .page-game-guides-fish-shooting-guide__grid-item h3 {
    font-size: 1.3em;
  }
  .page-game-guides-fish-shooting-guide__introduction p,
  .page-game-guides-fish-shooting-guide__strategy p,
  .page-game-guides-fish-shooting-guide__management p,
  .page-game-guides-fish-shooting-guide__offers p,
  .page-game-guides-fish-shooting-guide__conclusion p {
    font-size: 0.95em;
  }
  .page-game-guides-fish-shooting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides-fish-shooting-guide__button {
    width: 80%;
    margin-left: 0 !important;
  }
}

@media (max-width: 480px) {
  .page-game-guides-fish-shooting-guide__title {
    font-size: 1.8em;
  }
  .page-game-guides-fish-shooting-guide__subtitle {
    font-size: 0.9em;
  }
  .page-game-guides-fish-shooting-guide__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-guides-fish-shooting-guide__section-title {
    font-size: 1.5em;
  }
}