/* style/games-jili-fishing-gameplay.css */
.page-games-jili-fishing-gameplay {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color for dark backgrounds */
  background-color: #0A192F; /* Main background color */
}

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

.page-games-jili-fishing-gameplay__hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background-color: #0A192F;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-games-jili-fishing-gameplay__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-games-jili-fishing-gameplay__hero .page-games-jili-fishing-gameplay__container {
  position: relative;
  z-index: 1;
}

.page-games-jili-fishing-gameplay__title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-jili-fishing-gameplay__subtitle {
  font-size: 1.5em;
  color: #f5e6d0; /* Lighter variant for contrast */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-jili-fishing-gameplay__button {
  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;
  cursor: pointer;
  border: none;
}

.page-games-jili-fishing-gameplay__button--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-games-jili-fishing-gameplay__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-games-jili-fishing-gameplay__button--secondary {
  background-color: #545e6d; /* Darker variant of main color for contrast */
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-games-jili-fishing-gameplay__button--secondary:hover {
  background-color: #6c7582;
  transform: translateY(-3px);
}

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

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

.page-games-jili-fishing-gameplay__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-games-jili-fishing-gameplay__sub-title {
  font-size: 1.8em;
  color: #f5e6d0; /* Lighter variant for contrast */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-games-jili-fishing-gameplay p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-games-jili-fishing-gameplay__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #e0e0e0;
}

.page-games-jili-fishing-gameplay__list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

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

.page-games-jili-fishing-gameplay__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-games-jili-fishing-gameplay__faq-item {
  background-color: #1a2a40; /* Slightly lighter dark blue */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games-jili-fishing-gameplay__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-games-jili-fishing-gameplay__faq-answer {
  font-size: 1em;
  color: #c0c0c0;
  line-height: 1.7;
}

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

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

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

  .page-games-jili-fishing-gameplay__sub-title {
    font-size: 1.5em;
  }

  .page-games-jili-fishing-gameplay__button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

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

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

  .page-games-jili-fishing-gameplay__sub-title {
    font-size: 1.3em;
  }

  .page-games-jili-fishing-gameplay p, .page-games-jili-fishing-gameplay__list li {
    font-size: 0.95em;
  }

  .page-games-jili-fishing-gameplay__button {
    width: 100%;
    margin-bottom: 15px;
  }
}