.page-games-jili-fishing-weapons {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
}

.page-games-jili-fishing-weapons__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-games-jili-fishing-weapons__hero {
  background: linear-gradient(135deg, #0A192F, #1A3A5F);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-games-jili-fishing-weapons__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(10, 25, 47, 0) 70%);
    animation: page-games-jili-fishing-weapons__pulse 15s infinite alternate;
    z-index: 0;
}

@keyframes page-games-jili-fishing-weapons__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-games-jili-fishing-weapons__hero > * {
    position: relative;
    z-index: 1;
}

.page-games-jili-fishing-weapons__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-games-jili-fishing-weapons__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-games-jili-fishing-weapons__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  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;
  border: none;
  cursor: pointer;
}

.page-games-jili-fishing-weapons__button:hover {
  background-color: #E0B800; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-games-jili-fishing-weapons__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-games-jili-fishing-weapons__section:last-of-type {
  border-bottom: none;
}

.page-games-jili-fishing-weapons__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-games-jili-fishing-weapons__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-games-jili-fishing-weapons__intro p,
.page-games-jili-fishing-weapons__acquisition p,
.page-games-jili-fishing-weapons__strategy p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #E0E0E0;
}

.page-games-jili-fishing-weapons__image-full {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-games-jili-fishing-weapons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-games-jili-fishing-weapons__item {
  background-color: #1A2F4F; /* Slightly lighter dark blue for item cards */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-jili-fishing-weapons__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-games-jili-fishing-weapons__item-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 2px solid #FFD700;
}

.page-games-jili-fishing-weapons__item-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-games-jili-fishing-weapons__item p {
  font-size: 1em;
  color: #CCCCCC;
  text-align: justify;
}

.page-games-jili-fishing-weapons__list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-games-jili-fishing-weapons__list li {
  background-color: #1A2F4F;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 1.1em;
  color: #E0E0E0;
  transition: background-color 0.3s ease;
}

.page-games-jili-fishing-weapons__list li:hover {
  background-color: #2A4F7F;
}

.page-games-jili-fishing-weapons__list li strong {
  color: #FFD700;
}

.page-games-jili-fishing-weapons__cta {
  background-color: #0F2038; /* Slightly different dark blue for CTA */
  text-align: center;
  padding: 80px 0;
}

.page-games-jili-fishing-weapons__cta-content {
  max-width: 900px;
}

.page-games-jili-fishing-weapons__cta .page-games-jili-fishing-weapons__section-title {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-games-jili-fishing-weapons__cta p {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-games-jili-fishing-weapons__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-games-jili-fishing-weapons__button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-games-jili-fishing-weapons__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-games-jili-fishing-weapons .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-games-jili-fishing-weapons__title {
    font-size: 2.5em;
  }

  .page-games-jili-fishing-weapons__subtitle {
    font-size: 1.2em;
  }

  .page-games-jili-fishing-weapons__section-title {
    font-size: 2em;
  }

  .page-games-jili-fishing-weapons__grid {
    grid-template-columns: 1fr;
  }

  .page-games-jili-fishing-weapons__item-image {
    max-width: 100px;
  }

  .page-games-jili-fishing-weapons__button-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-games-jili-fishing-weapons__title {
    font-size: 2em;
  }

  .page-games-jili-fishing-weapons__subtitle {
    font-size: 1em;
  }

  .page-games-jili-fishing-weapons__hero {
    padding: 60px 0;
  }

  .page-games-jili-fishing-weapons__section {
    padding: 40px 0;
  }

  .page-games-jili-fishing-weapons__section-title {
    font-size: 1.8em;
  }
}