/* style/fish-shooting.css */

/* Base Styles for the Page Content */
.page-fish-shooting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css */
  padding-top: 10px; /* Ensure content is not hidden by fixed header */
}

.page-fish-shooting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fish-shooting__section {
  padding: 60px 0;
  margin-bottom: 0;
}

.page-fish-shooting__section:nth-child(even) {
  background-color: var(--dark-bg-2); /* Slightly different dark background */
}

.page-fish-shooting__heading {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold for headings */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fish-shooting__sub-heading {
  font-size: 24px;
  font-weight: 600;
  color: #FF4500; /* OrangeRed for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fish-shooting__description {
  font-size: 18px;
  color: #cccccc;
  text-align: center;
  margin-bottom: 30px;
}

.page-fish-shooting__description--small {
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 0;
}

.page-fish-shooting p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-fish-shooting ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-fish-shooting li {
  margin-bottom: 8px;
  color: #f0f0f0;
}

.page-fish-shooting__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-fish-shooting__button--primary {
  background-color: #FF4500; /* OrangeRed */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.page-fish-shooting__button--primary:hover {
  background-color: #E63900;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

.page-fish-shooting__button--secondary {
  background-color: #1A202C; /* Dark Blue-Black */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(26, 32, 44, 0.4);
}

.page-fish-shooting__button--secondary:hover {
  background-color: #2D3748;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 32, 44, 0.6);
}

.page-fish-shooting__button--center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 250px;
}

/* Hero Section */
.page-fish-shooting__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px; /* Fixed navigation spacing */
  margin-top: 0;
  overflow: hidden;
}

.page-fish-shooting__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-fish-shooting__hero-image {
  width: 100%;
  margin: 0;
  max-height: 550px; /* Limit hero image height */
  overflow: hidden;
}

.page-fish-shooting__hero-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-fish-shooting__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  padding: 40px 20px 20px 20px;
  color: #ffffff;
}

.page-fish-shooting__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.page-fish-shooting__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-fish-shooting__hero-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  background-color: #FF4500;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
  transition: all 0.3s ease;
}

.page-fish-shooting__hero-button:hover {
  background-color: #E63900;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.7);
}

/* About Game Section */
.page-fish-shooting__about-game .page-fish-shooting__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-fish-shooting__about-game .page-fish-shooting__image-left {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fish-shooting__about-game .page-fish-shooting__image-left img {
  width: 100%;
  height: auto;
  display: block;
}

.page-fish-shooting__about-game .page-fish-shooting__text-right {
  flex: 1.5;
}

/* Game Showcase Section */
.page-fish-shooting__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fish-shooting__game-card {
  background-color: var(--dark-bg-3); /* Slightly lighter dark background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fish-shooting__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-fish-shooting__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-fish-shooting__game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fish-shooting__game-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold */
  padding: 15px;
  text-align: center;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Guide Section */
.page-fish-shooting__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fish-shooting__guide-item {
  background-color: var(--dark-bg-3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fish-shooting__guide-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fish-shooting__guide-title {
  font-size: 22px;
  font-weight: bold;
  color: #FF4500; /* OrangeRed */
  margin-bottom: 15px;
}

/* Promotions Section */
.page-fish-shooting__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fish-shooting__promotion-card {
  background-color: var(--dark-bg-3);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fish-shooting__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-fish-shooting__promotion-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-fish-shooting__promotion-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700; /* Gold */
  padding: 15px 15px 5px 15px;
  margin: 0;
  text-align: center;
}

.page-fish-shooting__promotion-description {
  font-size: 16px;
  color: #cccccc;
  padding: 0 15px 20px 15px;
  text-align: center;
  margin: 0;
}

.page-fish-shooting__promotion-card .page-fish-shooting__button {
  margin: 0 auto 20px auto;
}

/* Security Section */
.page-fish-shooting__security-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fish-shooting__security-item {
  background-color: var(--dark-bg-3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fish-shooting__security-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fish-shooting__security-title {
  font-size: 22px;
  font-weight: bold;
  color: #FF4500; /* OrangeRed */
  margin-bottom: 15px;
}

/* FAQ Section */
.page-fish-shooting__faq-list {
  margin-top: 40px;
}

.page-fish-shooting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--dark-bg-3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fish-shooting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: var(--dark-bg-2);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-fish-shooting__faq-question:hover {
  background-color: #2D3748; /* Slightly lighter on hover */
}

.page-fish-shooting__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #FFD700; /* Gold */
  line-height: 1.5;
  pointer-events: none;
}

.page-fish-shooting__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FF4500; /* OrangeRed */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-fish-shooting__faq-item.active .page-fish-shooting__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-fish-shooting__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #cccccc;
  background-color: var(--dark-bg-3);
}

.page-fish-shooting__faq-item.active .page-fish-shooting__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background-color: var(--dark-bg-3);
}

/* CTA Section */
.page-fish-shooting__cta {
  text-align: center;
  background: linear-gradient(135deg, #FF4500, #1A202C);
  padding: 80px 0;
  border-radius: 15px;
  margin: 60px auto;
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-fish-shooting__cta .page-fish-shooting__heading {
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.page-fish-shooting__cta .page-fish-shooting__description {
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-fish-shooting__cta .page-fish-shooting__button {
  margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fish-shooting__hero-title {
    font-size: 40px;
  }
  .page-fish-shooting__hero-description {
    font-size: 18px;
  }
  .page-fish-shooting__hero-button {
    font-size: 20px;
    padding: 12px 30px;
  }

  .page-fish-shooting__heading {
    font-size: 30px;
  }
  .page-fish-shooting__sub-heading {
    font-size: 22px;
  }
  .page-fish-shooting__description {
    font-size: 16px;
  }

  .page-fish-shooting__about-game .page-fish-shooting__content-wrapper {
    flex-direction: column;
  }
  .page-fish-shooting__about-game .page-fish-shooting__image-left,
  .page-fish-shooting__about-game .page-fish-shooting__text-right {
    flex: none;
    width: 100%;
  }
  .page-fish-shooting__about-game .page-fish-shooting__image-left {
    max-width: 600px;
    margin: 0 auto 30px auto;
  }

  .page-fish-shooting__game-grid,
  .page-fish-shooting__guide-steps,
  .page-fish-shooting__promotion-grid,
  .page-fish-shooting__security-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-fish-shooting {
    padding-top: 10px !important; /* Ensure content is not hidden by fixed header */
  }
  .page-fish-shooting__container {
    padding: 0 15px !important;
  }
  .page-fish-shooting__section {
    padding: 40px 0;
  }

  .page-fish-shooting__hero-image {
    max-height: 400px;
  }
  .page-fish-shooting__hero-content {
    padding: 20px 15px 15px 15px;
  }
  .page-fish-shooting__hero-title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .page-fish-shooting__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-fish-shooting__hero-button {
    font-size: 18px;
    padding: 10px 25px;
  }

  .page-fish-shooting__heading {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-fish-shooting__sub-heading {
    font-size: 20px;
  }
  .page-fish-shooting__description {
    font-size: 15px;
  }

  .page-fish-shooting__game-grid,
  .page-fish-shooting__guide-steps,
  .page-fish-shooting__promotion-grid,
  .page-fish-shooting__security-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fish-shooting__game-card img {
    height: 200px;
  }
  .page-fish-shooting__game-card-title {
    font-size: 18px;
  }

  .page-fish-shooting__guide-icon,
  .page-fish-shooting__security-icon {
    width: 80px;
    height: 80px;
  }
  .page-fish-shooting__guide-title,
  .page-fish-shooting__security-title {
    font-size: 20px;
  }

  .page-fish-shooting__promotion-image {
    height: 180px;
  }
  .page-fish-shooting__promotion-title {
    font-size: 20px;
  }

  .page-fish-shooting__faq-question {
    padding: 15px 20px;
  }
  .page-fish-shooting__faq-question h3 {
    font-size: 16px;
  }
  .page-fish-shooting__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }
  .page-fish-shooting__faq-answer {
    padding: 0 20px;
  }
  .page-fish-shooting__faq-item.active .page-fish-shooting__faq-answer {
    padding: 15px 20px !important;
  }

  .page-fish-shooting__cta {
    padding: 50px 0;
    margin: 40px auto;
  }
  .page-fish-shooting__cta .page-fish-shooting__button {
    display: block;
    margin: 15px auto;
    max-width: 280px;
  }

  /* Universal image responsive for mobile */
  .page-fish-shooting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fish-shooting__section,
  .page-fish-shooting__card,
  .page-fish-shooting__container,
  .page-fish-shooting__about-game .page-fish-shooting__image-left {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Exclude logo-item from universal rules if it were a homepage */
  /* .page-fish-shooting__logo-item { */
  /*   width: 80px !important; */
  /*   height: 80px !important; */
  /*   max-width: 80px !important; */
  /* } */
}

/* Ensure all images maintain original color */
.page-fish-shooting img {
  filter: none !important;
}