/* style/game-guides-fishing-game-secrets.css */

/* BEM Naming Convention: page-game-guides-fishing-game-secrets__element-name */
/* Colors: --primary-color: #11A84E; --secondary-color: #22C768; */
/* Custom Colors: #11271B (Card BG), #08160F (Background), #F2FFF6 (Text Main), #A7D9B8 (Text Secondary), #2AD16F, #13994A (Button Gradient), #2E7A4E (Border), #57E38D (Glow), #F2C14E (Gold), #1E3A2A (Divider), #0A4B2C (Deep Green) */

/* Base styles for the page content, considering shared body background is #08160F (dark) */
.page-game-guides-fishing-game-secrets {
  color: var(--text-main-color, #F2FFF6); /* Main text color for dark background */
  background-color: var(--background-color-page, transparent); /* This section might be transparent to let body background show */
}

.page-game-guides-fishing-game-secrets__dark-section {
  background-color: var(--background-color-dark, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

.page-game-guides-fishing-game-secrets__light-bg {
  background-color: var(--card-bg-color, #11271B);
  color: var(--text-main-color, #F2FFF6);
}

/* Hero Section */
.page-game-guides-fishing-game-secrets__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.page-game-guides-fishing-game-secrets__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
}

.page-game-guides-fishing-game-secrets__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-game-guides-fishing-game-secrets__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  margin-top: 40px; /* Space between image and content */
}

.page-game-guides-fishing-game-secrets__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 20px;
  /* Using clamp for responsive font size without fixed large values */
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.page-game-guides-fishing-game-secrets__intro-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 30px;
}

.page-game-guides-fishing-game-secrets__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-game-guides-fishing-game-secrets__btn-primary,
.page-game-guides-fishing-game-secrets__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal;
  word-wrap: break-word;
}

.page-game-guides-fishing-game-secrets__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-game-guides-fishing-game-secrets__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-game-guides-fishing-game-secrets__btn-secondary {
  background: var(--card-bg-color, #11271B);
  color: var(--glow-color, #57E38D);
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-game-guides-fishing-game-secrets__btn-secondary:hover {
  background: var(--deep-green-color, #0A4B2C);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Content Area */
.page-game-guides-fishing-game-secrets__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.7;
  font-size: 1.05rem;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-game-guides-fishing-game-secrets__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 30px;
  text-align: center;
  margin-top: 40px;
}

.page-game-guides-fishing-game-secrets__sub-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--glow-color, #57E38D);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides-fishing-game-secrets__content-area p {
  margin-bottom: 15px;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-game-guides-fishing-game-secrets__content-area a {
  color: var(--glow-color, #57E38D);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-guides-fishing-game-secrets__content-area a:hover {
  color: var(--gold-color, #F2C14E);
  text-decoration: underline;
}

.page-game-guides-fishing-game-secrets__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  max-width: 800px; /* Constrain content images */
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Table styles */
.page-game-guides-fishing-game-secrets__table-container {
  overflow-x: auto;
  margin: 30px 0;
  border-radius: 8px;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-game-guides-fishing-game-secrets__fish-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Ensure table is readable on smaller screens */
}

.page-game-guides-fishing-game-secrets__fish-table th,
.page-game-guides-fishing-game-secrets__fish-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--divider-color, #1E3A2A);
  color: var(--text-secondary-color, #A7D9B8);
}

.page-game-guides-fishing-game-secrets__fish-table th {
  background-color: var(--deep-green-color, #0A4B2C);
  color: var(--text-main-color, #F2FFF6);
  font-weight: 600;
}

.page-game-guides-fishing-game-secrets__fish-table tbody tr:last-child td {
  border-bottom: none;
}

.page-game-guides-fishing-game-secrets__fish-table tbody tr:nth-child(even) {
  background-color: rgba(17, 39, 27, 0.5); /* Card BG with some transparency */
}

/* FAQ Section */
.page-game-guides-fishing-game-secrets__faq-section {
  padding: 60px 20px;
  text-align: center;
}

.page-game-guides-fishing-game-secrets__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-game-guides-fishing-game-secrets__faq-item {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: left;
  overflow: hidden;
}

.page-game-guides-fishing-game-secrets__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main-color, #F2FFF6);
  cursor: pointer;
  background-color: var(--deep-green-color, #0A4B2C);
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-game-guides-fishing-game-secrets__faq-question:hover {
  background-color: var(--primary-color, #11A84E);
}

.page-game-guides-fishing-game-secrets__faq-qtext {
  flex-grow: 1;
}

.page-game-guides-fishing-game-secrets__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-color, #57E38D);
  transition: transform 0.3s ease;
}

.page-game-guides-fishing-game-secrets__faq-item[open] .page-game-guides-fishing-game-secrets__faq-toggle {
  transform: rotate(45deg);
}

.page-game-guides-fishing-game-secrets__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-game-guides-fishing-game-secrets__faq-item summary::marker {
  display: none;
}

.page-game-guides-fishing-game-secrets__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary-color, #A7D9B8);
  animation: fadein 0.3s ease-out;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA Bottom Section */
.page-game-guides-fishing-game-secrets__cta-bottom {
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid var(--divider-color, #1E3A2A);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-guides-fishing-game-secrets {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-game-guides-fishing-game-secrets__hero-content {
    margin-top: 20px;
    padding: 15px;
  }

  .page-game-guides-fishing-game-secrets__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-game-guides-fishing-game-secrets__intro-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-game-guides-fishing-game-secrets__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-game-guides-fishing-game-secrets__btn-primary,
  .page-game-guides-fishing-game-secrets__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-game-guides-fishing-game-secrets__content-area,
  .page-game-guides-fishing-game-secrets__faq-section,
  .page-game-guides-fishing-game-secrets__cta-bottom {
    padding: 40px 15px;
  }

  .page-game-guides-fishing-game-secrets__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 25px;
  }

  .page-game-guides-fishing-game-secrets__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  /* Mobile image and video responsive adaptation */
  .page-game-guides-fishing-game-secrets img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-game-guides-fishing-game-secrets__hero-image-wrapper,
  .page-game-guides-fishing-game-secrets__content-area,
  .page-game-guides-fishing-game-secrets__faq-section,
  .page-game-guides-fishing-game-secrets__cta-bottom,
  .page-game-guides-fishing-game-secrets__table-container,
  .page-game-guides-fishing-game-secrets__fish-table,
  .page-game-guides-fishing-game-secrets__faq-list,
  .page-game-guides-fishing-game-secrets__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px; */ /* Handled by parent container padding */
    /* padding-right: 15px; */ /* Handled by parent container padding */
    overflow: hidden !important;
  }

  .page-game-guides-fishing-game-secrets__fish-table {
    min-width: unset; /* Allow table to shrink */
  }

  .page-game-guides-fishing-game-secrets__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-game-guides-fishing-game-secrets__faq-answer {
    padding: 10px 20px 15px;
  }
}