.page-online-fish-shooting-rewards-gameplay-guide {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #1a1a2e; /* Inherited from shared.css, specified here for clarity */
  line-height: 1.7;
  font-family: 'Arial', sans-serif;
  padding-top: 120px; /* Default desktop padding to avoid fixed header overlap */
}

.page-online-fish-shooting-rewards-gameplay-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-online-fish-shooting-rewards-gameplay-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color); /* #FFD700 */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-online-fish-shooting-rewards-gameplay-guide__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
  color: #e0e0e0;
}

.page-online-fish-shooting-rewards-gameplay-guide__text-block strong {
  color: #ffffff;
}

.page-online-fish-shooting-rewards-gameplay-guide__image-full-width {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-online-fish-shooting-rewards-gameplay-guide__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 20px auto;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--primary-color), #FFA500); /* Gold to Orange */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
  border: none;
}

.page-online-fish-shooting-rewards-gameplay-guide__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700); /* Orange to Gold */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}

.page-online-fish-shooting-rewards-gameplay-guide__cta-button--small {
  font-size: 16px;
  padding: 12px 30px;
  margin: 30px auto;
}

/* Hero Guide Section */
.page-online-fish-shooting-rewards-gameplay-guide__hero-guide-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop padding for fixed header */
  background: linear-gradient(135deg, #1a1a2e, #0f0f1d); /* Dark gradient background */
  border-bottom: 5px solid var(--primary-color);
}

.page-online-fish-shooting-rewards-gameplay-guide__hero-guide-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-online-fish-shooting-rewards-gameplay-guide__hero-guide-title {
  font-size: 52px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.page-online-fish-shooting-rewards-gameplay-guide__hero-guide-subtitle {
  font-size: 22px;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-online-fish-shooting-rewards-gameplay-guide__hero-guide-image {
  width: 100%;
  height: auto;
  max-width: 900px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
}

/* Introduction Section */
.page-online-fish-shooting-rewards-gameplay-guide__introduction-section {
  background-color: #1a1a2e;
  padding: 60px 0;
}

/* Benefits Section */
.page-online-fish-shooting-rewards-gameplay-guide__benefits-section {
  background-color: #0f0f1d;
  padding: 60px 0;
}

.page-online-fish-shooting-rewards-gameplay-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-online-fish-shooting-rewards-gameplay-guide__card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-online-fish-shooting-rewards-gameplay-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.page-online-fish-shooting-rewards-gameplay-guide__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color); /* #00CED1 */
  margin-bottom: 15px;
}

.page-online-fish-shooting-rewards-gameplay-guide__card p {
  font-size: 16px;
  color: #e0e0e0;
}

/* Basic Guide Section */
.page-online-fish-shooting-rewards-gameplay-guide__basic-guide-section {
  background-color: #1a1a2e;
  padding: 60px 0;
}

.page-online-fish-shooting-rewards-gameplay-guide__ordered-list,
.page-online-fish-shooting-rewards-gameplay-guide__unordered-list {
  list-style-position: inside;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-online-fish-shooting-rewards-gameplay-guide__ordered-list li,
.page-online-fish-shooting-rewards-gameplay-guide__unordered-list li {
  font-size: 17px;
  margin-bottom: 10px;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-online-fish-shooting-rewards-gameplay-guide__ordered-list li strong,
.page-online-fish-shooting-rewards-gameplay-guide__unordered-list li strong {
  color: #ffffff;
}

/* Weapon Types Section */
.page-online-fish-shooting-rewards-gameplay-guide__weapon-types-section {
  background-color: #0f0f1d;
  padding: 60px 0;
}

/* Fish Values Section */
.page-online-fish-shooting-rewards-gameplay-guide__fish-values-section {
  background-color: #1a1a2e;
  padding: 60px 0;
}

.page-online-fish-shooting-rewards-gameplay-guide__responsive-table {
  overflow-x: auto;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-online-fish-shooting-rewards-gameplay-guide__fish-table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white */
  min-width: 600px; /* Ensure table is wide enough on small screens */
}

.page-online-fish-shooting-rewards-gameplay-guide__fish-table th,
.page-online-fish-shooting-rewards-gameplay-guide__fish-table td {
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 15px;
  text-align: left;
  color: #f0f0f0;
}

.page-online-fish-shooting-rewards-gameplay-guide__fish-table th {
  background-color: var(--primary-color); /* #FFD700 */
  color: #1a1a2e;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
}

.page-online-fish-shooting-rewards-gameplay-guide__fish-table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Strategy Section */
.page-online-fish-shooting-rewards-gameplay-guide__strategy-section {
  background-color: #0f0f1d;
  padding: 60px 0;
}

/* Profit Tips Section */
.page-online-fish-shooting-rewards-gameplay-guide__profit-tips-section {
  background-color: #1a1a2e;
  padding: 60px 0;
}

/* Platform Selection Section */
.page-online-fish-shooting-rewards-gameplay-guide__platform-selection-section {
  background-color: #0f0f1d;
  padding: 60px 0;
}

/* FAQ Section */
.page-online-fish-shooting-rewards-gameplay-guide__faq-section {
  background-color: #1a1a2e;
  padding: 60px 0;
}

.page-online-fish-shooting-rewards-gameplay-guide__faq-list {
  margin-top: 30px;
}

.page-online-fish-shooting-rewards-gameplay-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-online-fish-shooting-rewards-gameplay-guide__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 20px;
  opacity: 0;
}

.page-online-fish-shooting-rewards-gameplay-guide__faq-item.active .page-online-fish-shooting-rewards-gameplay-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for answer */
  border-radius: 0 0 8px 8px;
}

.page-online-fish-shooting-rewards-gameplay-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-online-fish-shooting-rewards-gameplay-guide__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
}

.page-online-fish-shooting-rewards-gameplay-guide__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-online-fish-shooting-rewards-gameplay-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none; /* Allow click on entire question div */
}

.page-online-fish-shooting-rewards-gameplay-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  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-online-fish-shooting-rewards-gameplay-guide__faq-item.active .page-online-fish-shooting-rewards-gameplay-guide__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg); /* Change '+' to 'X' visually */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-online-fish-shooting-rewards-gameplay-guide__hero-guide-title {
    font-size: 44px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__hero-guide-subtitle {
    font-size: 20px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__section-title {
    font-size: 32px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__card-title {
    font-size: 22px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__faq-question h3 {
    font-size: 17px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__faq-toggle {
    font-size: 26px;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .page-online-fish-shooting-rewards-gameplay-guide {
    padding-top: 100px !important; /* Mobile padding for fixed header */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-online-fish-shooting-rewards-gameplay-guide__container {
    padding: 25px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-online-fish-shooting-rewards-gameplay-guide__hero-guide-section {
    padding-top: 160px !important; /* Mobile specific padding-top for hero */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__hero-guide-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__hero-guide-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__hero-guide-image {
    margin-bottom: 30px;
    border-radius: 8px;
  }

  .page-online-fish-shooting-rewards-gameplay-guide__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-online-fish-shooting-rewards-gameplay-guide__text-block {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .page-online-fish-shooting-rewards-gameplay-guide__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin: 30px auto 15px auto;
    width: 100%;
    max-width: 300px;
  }

  .page-online-fish-shooting-rewards-gameplay-guide__cta-button--small {
    font-size: 14px;
    padding: 10px 25px;
  }

  .page-online-fish-shooting-rewards-gameplay-guide__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-online-fish-shooting-rewards-gameplay-guide__card {
    padding: 25px;
  }

  .page-online-fish-shooting-rewards-gameplay-guide__card-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .page-online-fish-shooting-rewards-gameplay-guide__card p {
    font-size: 15px;
  }

  .page-online-fish-shooting-rewards-gameplay-guide__ordered-list li,
  .page-online-fish-shooting-rewards-gameplay-guide__unordered-list li {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .page-online-fish-shooting-rewards-gameplay-guide__fish-table th,
  .page-online-fish-shooting-rewards-gameplay-guide__fish-table td {
    padding: 12px;
    font-size: 14px;
  }

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

  /* All images must be responsive */
  .page-online-fish-shooting-rewards-gameplay-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-online-fish-shooting-rewards-gameplay-guide__section,
  .page-online-fish-shooting-rewards-gameplay-guide__card,
  .page-online-fish-shooting-rewards-gameplay-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-online-fish-shooting-rewards-gameplay-guide__hero-guide-title {
    font-size: 30px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__hero-guide-subtitle {
    font-size: 16px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__section-title {
    font-size: 24px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__faq-question h3 {
    font-size: 15px;
  }
  .page-online-fish-shooting-rewards-gameplay-guide__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
}