/* style/fish-shooting.css */

/* General Styles */
.page-fish-shooting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

.page-fish-shooting__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FF8C1A; /* Main color */
  line-height: 1.2;
}

.page-fish-shooting__section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

/* Buttons */
.page-fish-shooting__btn-primary,
.page-fish-shooting__btn-secondary,
.page-fish-shooting__btn-small {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fish-shooting__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #FFF3E6; /* Text Main */
  border: none;
}

.page-fish-shooting__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fish-shooting__btn-secondary {
  background: transparent;
  color: #FF8C1A; /* Main color */
  border: 2px solid #FF8C1A; /* Main color */
}

.page-fish-shooting__btn-secondary:hover {
  background: #FF8C1A;
  color: #FFF3E6;
}

.page-fish-shooting__btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: none;
}

.page-fish-shooting__btn-small:hover {
  opacity: 0.9;
}

/* Hero Section */
.page-fish-shooting__hero-section {
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: #0D0E12; /* Background */
  color: #FFF3E6;
}

.page-fish-shooting__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
}

.page-fish-shooting__hero-image {
  flex: 1 1 50%;
  text-align: center;
  order: 2; /* Image on right for desktop */
}

.page-fish-shooting__hero-content {
  flex: 1 1 40%;
  order: 1; /* Content on left for desktop */
}

.page-fish-shooting__hero-side-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-fish-shooting__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FF8C1A; /* Main color */
  max-width: 600px;
}

.page-fish-shooting__description {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #FFF3E6;
  max-width: 600px;
}

.page-fish-shooting__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Intro Section (Module 1 - 3 circular images) */
.page-fish-shooting__intro-section {
  padding: 80px 0;
  background-color: #17191F; /* Card BG */
}

.page-fish-shooting__intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-fish-shooting__icon-box {
  background-color: #0D0E12;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border */
}

.page-fish-shooting__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FF8C1A; /* Main color */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-fish-shooting__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-fish-shooting__icon-box-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFA53A; /* Auxiliary color */
}

.page-fish-shooting__icon-box-text {
  font-size: 1em;
  color: #FFF3E6;
}

/* Game Categories Section */
.page-fish-shooting__game-categories {
  padding: 80px 0;
  background-color: #0D0E12; /* Background */
}

.page-fish-shooting__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fish-shooting__game-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border */
  display: flex;
  flex-direction: column;
}

.page-fish-shooting__game-card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-fish-shooting__game-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-fish-shooting__game-card-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FF8C1A; /* Main color */
}

.page-fish-shooting__game-card-title a {
  color: #FF8C1A;
  text-decoration: none;
}

.page-fish-shooting__game-card-title a:hover {
  text-decoration: underline;
}

.page-fish-shooting__game-card-text {
  font-size: 1em;
  color: #FFF3E6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Guide Section */
.page-fish-shooting__guide-section {
  padding: 80px 0;
  background-color: #17191F; /* Card BG */
}

.page-fish-shooting__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-fish-shooting__guide-item {
  background-color: #0D0E12;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #A84F0C; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fish-shooting__guide-icon {
  font-size: 2.5em;
  font-weight: bold;
  color: #FF8C1A; /* Main color */
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 140, 26, 0.1);
  margin-left: auto;
  margin-right: auto;
}

.page-fish-shooting__guide-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFA53A; /* Auxiliary color */
}

.page-fish-shooting__guide-text {
  font-size: 1em;
  color: #FFF3E6;
}

.page-fish-shooting__guide-image-wrapper {
  text-align: center;
}

.page-fish-shooting__guide-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Tips Section */
.page-fish-shooting__tips-section {
  padding: 80px 0;
  background-color: #0D0E12; /* Background */
}

.page-fish-shooting__tips-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-fish-shooting__tips-text {
  flex: 1 1 55%;
  color: #FFF3E6;
  font-size: 1.05em;
}

.page-fish-shooting__tips-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-fish-shooting__tips-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-fish-shooting__tips-list li::before {
  content: '✓';
  color: #FF8C1A; /* Main color */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-fish-shooting__tips-list li strong {
  color: #FFA53A;
}

.page-fish-shooting__tips-image {
  flex: 1 1 35%;
  text-align: center;
}

.page-fish-shooting__tips-visual {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-fish-shooting__faq-section {
  padding: 80px 0;
  background-color: #17191F; /* Card BG */
}

.page-fish-shooting__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fish-shooting__faq-item {
  background-color: #0D0E12;
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fish-shooting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FF8C1A; /* Main color */
  cursor: pointer;
  user-select: none;
  background-color: #17191F;
}

.page-fish-shooting__faq-question::-webkit-details-marker {
  display: none;
}

.page-fish-shooting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFA53A;
}

.page-fish-shooting__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1em;
  color: #FFF3E6;
  background-color: #0D0E12;
  border-top: 1px solid #A84F0C;
}

.page-fish-shooting__faq-answer p {
  margin-bottom: 10px;
}

.page-fish-shooting__faq-answer a {
  color: #FFA53A;
  text-decoration: underline;
}

/* CTA Bottom Section */
.page-fish-shooting__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #D96800 0%, #FF8C1A 100%);
  color: #FFF3E6;
}

.page-fish-shooting__cta-bottom-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-fish-shooting__cta-bottom-title {
  font-size: clamp(2em, 3.5vw, 3em);
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-fish-shooting__cta-bottom-description {
  font-size: 1.15em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fish-shooting__hero-container {
    gap: 30px;
  }

  .page-fish-shooting__hero-content,
  .page-fish-shooting__hero-image {
    flex: 1 1 100%;
    order: unset;
  }

  .page-fish-shooting__main-title,
  .page-fish-shooting__description {
    max-width: 100%;
  }

  .page-fish-shooting__section-title {
    font-size: 2em;
  }

  .page-fish-shooting__icon-box-media {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-fish-shooting__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-fish-shooting__hero-container {
    flex-direction: column;
    padding-top: 20px;
  }

  .page-fish-shooting__hero-image {
    order: 1;
  }

  .page-fish-shooting__hero-content {
    order: 2;
    text-align: center;
  }

  .page-fish-shooting__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-fish-shooting__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-fish-shooting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }

  .page-fish-shooting__btn-primary,
  .page-fish-shooting__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Intro Section (Module 1) */
  .page-fish-shooting__intro-section {
    padding: 50px 0;
  }

  .page-fish-shooting__intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fish-shooting__icon-box-media {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }

  .page-fish-shooting__icon-box-title {
    font-size: 1.3em;
  }

  /* Game Categories Section */
  .page-fish-shooting__game-categories {
    padding: 50px 0;
  }

  .page-fish-shooting__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fish-shooting__game-card-image {
    height: 180px;
  }

  .page-fish-shooting__game-card-title {
    font-size: 1.4em;
  }

  /* Guide Section */
  .page-fish-shooting__guide-section {
    padding: 50px 0;
  }

  .page-fish-shooting__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .page-fish-shooting__guide-icon {
    font-size: 2em;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  /* Tips Section */
  .page-fish-shooting__tips-section {
    padding: 50px 0;
  }

  .page-fish-shooting__tips-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-fish-shooting__tips-text,
  .page-fish-shooting__tips-image {
    flex: 1 1 100%;
  }

  /* FAQ Section */
  .page-fish-shooting__faq-section {
    padding: 50px 0;
  }

  .page-fish-shooting__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-fish-shooting__faq-toggle {
    font-size: 1.3em;
  }

  .page-fish-shooting__faq-answer {
    padding: 10px 20px 20px;
  }

  /* CTA Bottom Section */
  .page-fish-shooting__cta-bottom-section {
    padding: 50px 0;
  }

  .page-fish-shooting__cta-bottom-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-fish-shooting__cta-bottom-description {
    font-size: 1em;
  }

  /* Universal Image and Container Rules for Mobile */
  .page-fish-shooting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fish-shooting__container,
  .page-fish-shooting__section,
  .page-fish-shooting__card,
  .page-fish-shooting__icon-box,
  .page-fish-shooting__game-card,
  .page-fish-shooting__guide-item,
  .page-fish-shooting__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Specific exception for circular images to maintain aspect ratio */
  .page-fish-shooting__icon-box-media img {
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* Ensure all content area images are responsive by default */
.page-fish-shooting img {
  max-width: 100%;
  height: auto;
  display: block;
}