/* style/game-guides-fish-shooting-tips.css */
.page-game-guides-fish-shooting-tips {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-game-guides-fish-shooting-tips__container--center {
  text-align: center;
}

.page-game-guides-fish-shooting-tips__hero {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-game-guides-fish-shooting-tips__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Adjusted for contrast on dark background */
}

.page-game-guides-fish-shooting-tips__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-game-guides-fish-shooting-tips__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

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

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

.page-game-guides-fish-shooting-tips__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides-fish-shooting-tips__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.page-game-guides-fish-shooting-tips__content-wrapper p {
  flex: 1;
  min-width: 300px;
  font-size: 1.1em;
  color: #444;
}

.page-game-guides-fish-shooting-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-fish-shooting-tips__image--right {
  flex: 0 0 45%;
  order: 2;
}

.page-game-guides-fish-shooting-tips__image--left {
  flex: 0 0 45%;
  order: -1;
}

.page-game-guides-fish-shooting-tips__image--center {
  display: block;
  margin: 30px auto;
  max-width: 600px;
}

.page-game-guides-fish-shooting-tips__image--full-width {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-game-guides-fish-shooting-tips__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-game-guides-fish-shooting-tips__list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFCC00;
}

.page-game-guides-fish-shooting-tips__list li p {
  margin-top: 10px;
  font-size: 1.05em;
  color: #555;
}

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

.page-game-guides-fish-shooting-tips__list--grid li {
  text-align: center;
  border-left: none;
  border-bottom: 5px solid #FFCC00;
}

.page-game-guides-fish-shooting-tips__list-icon {
  font-size: 3em;
  color: #003366;
  margin-bottom: 15px;
}

.page-game-guides-fish-shooting-tips__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.page-game-guides-fish-shooting-tips__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-game-guides-fish-shooting-tips__btn--primary:hover {
  background-color: #e6b800;
  color: #002244;
}

.page-game-guides-fish-shooting-tips__btn--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #003366;
}

.page-game-guides-fish-shooting-tips__btn--secondary:hover {
  background-color: #002244;
  color: #ffe066;
}

.page-game-guides-fish-shooting-tips__faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-game-guides-fish-shooting-tips__faq-question {
  font-size: 1.25em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-guides-fish-shooting-tips__faq-answer {
  font-size: 1.05em;
  color: #555;
}

.page-game-guides-fish-shooting-tips__link {
  color: #003366;
  text-decoration: underline;
}

.page-game-guides-fish-shooting-tips__link:hover {
  color: #FFCC00;
}

.page-game-guides-fish-shooting-tips__small-text {
  font-size: 0.9em;
  color: #777;
  margin-top: 15px;
}

.page-game-guides-fish-shooting-tips .highlight {
  color: #FFCC00;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-fish-shooting-tips__title {
    font-size: 2.8em;
  }
  .page-game-guides-fish-shooting-tips__subtitle {
    font-size: 1.3em;
  }
  .page-game-guides-fish-shooting-tips__section-title {
    font-size: 2em;
  }
  .page-game-guides-fish-shooting-tips__sub-title {
    font-size: 1.5em;
  }
  .page-game-guides-fish-shooting-tips__content-wrapper {
    flex-direction: column;
  }
  .page-game-guides-fish-shooting-tips__image--right,
  .page-game-guides-fish-shooting-tips__image--left {
    order: initial;
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-game-guides-fish-shooting-tips__hero {
    padding: 80px 0;
  }
  .page-game-guides-fish-shooting-tips__title {
    font-size: 2.2em;
  }
  .page-game-guides-fish-shooting-tips__subtitle {
    font-size: 1.1em;
  }
  .page-game-guides-fish-shooting-tips__section {
    padding: 40px 0;
  }
  .page-game-guides-fish-shooting-tips__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-fish-shooting-tips__sub-title {
    font-size: 1.3em;
  }
  .page-game-guides-fish-shooting-tips__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides-fish-shooting-tips__list--grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-game-guides-fish-shooting-tips__title {
    font-size: 1.8em;
  }
  .page-game-guides-fish-shooting-tips__subtitle {
    font-size: 1em;
  }
  .page-game-guides-fish-shooting-tips__container {
    padding: 0 15px;
  }
  .page-game-guides-fish-shooting-tips__section-title {
    font-size: 1.5em;
  }
  .page-game-guides-fish-shooting-tips__sub-title {
    font-size: 1.2em;
  }
  .page-game-guides-fish-shooting-tips__btn {
    width: 100%;
    text-align: center;
  }
}