/* style/fish-shooting-games-faq.css */

.page-fish-shooting-games-faq {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-fish-shooting-games-faq__hero {
  position: relative;
  background: linear-gradient(135deg, #FFD700 0%, #00BFFF 100%); /* Gold to Blue gradient */
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 400px; /* Ensure sufficient height */
}

.page-fish-shooting-games-faq__hero-content {
  position: relative;
  z-index: 2;
  color: #1a1a1a; /* Dark text for contrast on gradient */
  max-width: 800px;
}

.page-fish-shooting-games-faq__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #1a1a1a; /* Darker for better contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-fish-shooting-games-faq__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #333333; /* Darker for better contrast */
}

.page-fish-shooting-games-faq__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-fish-shooting-games-faq__section {
  padding: 60px 0;
}

.page-fish-shooting-games-faq__section--intro {
  background-color: #ffffff;
}

.page-fish-shooting-games-faq__section--faq-list {
  background-color: #e0f2f7; /* Light blue background for FAQ section */
}

.page-fish-shooting-games-faq__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fish-shooting-games-faq__section-title {
  font-size: 2.5em;
  color: #0086b3; /* Darker blue for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-fish-shooting-games-faq__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-fish-shooting-games-faq__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

.page-fish-shooting-games-faq__highlight-text {
  color: #b39700; /* Darker gold for highlight */
  font-weight: bold;
}

.page-fish-shooting-games-faq__link {
  color: #007bff; /* Standard link blue */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fish-shooting-games-faq__link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-fish-shooting-games-faq__accordion {
  margin-top: 30px;
}

.page-fish-shooting-games-faq__accordion-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-fish-shooting-games-faq__accordion-header {
  font-size: 1.3em;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #00BFFF; /* Blue header for contrast */
  color: #ffffff; /* White text on blue background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-fish-shooting-games-faq__accordion-header:hover {
  background-color: #00a3e0; /* Slightly darker blue on hover */
}

.page-fish-shooting-games-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.page-fish-shooting-games-faq__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-fish-shooting-games-faq__accordion-content {
  padding: 20px 25px;
  background-color: #ffffff;
  display: none;
  color: #333333; /* Dark text for content */
}

.page-fish-shooting-games-faq__accordion-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-fish-shooting-games-faq__accordion-content ul,
.page-fish-shooting-games-faq__accordion-content ol {
  margin-left: 25px;
  margin-bottom: 15px;
  list-style-type: disc;
  color: #333333;
}

.page-fish-shooting-games-faq__accordion-content ol {
  list-style-type: decimal;
}

.page-fish-shooting-games-faq__accordion-content li {
  margin-bottom: 8px;
}

.page-fish-shooting-games-faq__image--inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-fish-shooting-games-faq__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #FFD700; /* Gold background for CTA */
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  color: #1a1a1a; /* Dark text on gold background */
}

.page-fish-shooting-games-faq__call-to-action-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: #1a1a1a; /* Darker for better contrast */
}

.page-fish-shooting-games-faq__call-to-action-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333333; /* Darker for better contrast */
}

.page-fish-shooting-games-faq__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fish-shooting-games-faq__btn--primary {
  background-color: #00BFFF; /* Blue button */
  color: #ffffff; /* White text on blue */
  box-shadow: 0 4px 8px rgba(0, 191, 255, 0.4);
}

.page-fish-shooting-games-faq__btn--primary:hover {
  background-color: #00a3e0;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 191, 255, 0.6);
}

.page-fish-shooting-games-faq__btn--secondary {
  background-color: #FFD700; /* Gold button */
  color: #1a1a1a; /* Dark text on gold */
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
}

.page-fish-shooting-games-faq__btn--secondary:hover {
  background-color: #e0c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-fish-shooting-games-faq__hero {
    padding: 80px 15px;
  }

  .page-fish-shooting-games-faq__hero-title {
    font-size: 2.5em;
  }

  .page-fish-shooting-games-faq__hero-subtitle {
    font-size: 1.2em;
  }

  .page-fish-shooting-games-faq__section-title {
    font-size: 2em;
  }

  .page-fish-shooting-games-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-fish-shooting-games-faq__accordion-content {
    padding: 15px 20px;
  }

  .page-fish-shooting-games-faq__call-to-action {
    padding: 30px 20px;
  }

  .page-fish-shooting-games-faq__call-to-action-title {
    font-size: 1.8em;
  }

  .page-fish-shooting-games-faq__call-to-action-text {
    font-size: 1.1em;
  }

  .page-fish-shooting-games-faq__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-fish-shooting-games-faq__hero-title {
    font-size: 2em;
  }

  .page-fish-shooting-games-faq__hero-subtitle {
    font-size: 1em;
  }

  .page-fish-shooting-games-faq__section-title {
    font-size: 1.8em;
  }

  .page-fish-shooting-games-faq__text-block {
    font-size: 0.95em;
  }

  .page-fish-shooting-games-faq__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-fish-shooting-games-faq__accordion-content {
    padding: 12px 15px;
  }

  .page-fish-shooting-games-faq__call-to-action-title {
    font-size: 1.5em;
  }

  .page-fish-shooting-games-faq__call-to-action-text {
    font-size: 0.95em;
  }

  .page-fish-shooting-games-faq__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}