/* style/fishing-games.css */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Body background from shared.css */
}

/* Fixed navigation spacing for the first content section */
.page-fishing-games__hero-section {
  padding-top: 120px; /* Adjust based on actual header height */
  width: 100%;
  position: relative;
  background-color: #0A192F; /* Dark background for hero */
  color: #ffffff;
  padding-bottom: 60px;
}

.page-fishing-games__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}

.page-fishing-games__hero-content {
  flex: 1;
  text-align: left;
}

.page-fishing-games__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold */
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-fishing-games__hero-image-wrapper {
  flex: 1;
  text-align: right;
}

.page-fishing-games__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main titles */
}

.page-fishing-games__section-subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-fishing-games__dark-bg {
  background-color: #0A192F;
  color: #ffffff;
}

.page-fishing-games__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games__light-bg .page-fishing-games__section-title,
.page-fishing-games__light-bg .page-fishing-games__section-subtitle {
  color: #0A192F;
}

.page-fishing-games__light-bg p,
.page-fishing-games__light-bg h3 {
  color: #333333;
}

/* Introduction Section */
.page-fishing-games__introduction-section {
  padding: 60px 0;
}

.page-fishing-games__introduction-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-fishing-games__introduction-text {
  flex: 1;
}

.page-fishing-games__introduction-text p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.7;
}

.page-fishing-games__introduction-text strong {
  color: #0A192F;
}

.page-fishing-games__introduction-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-fishing-games__introduction-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.page-fishing-games__features-section {
  padding: 60px 0;
}

.page-fishing-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

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

.page-fishing-games__feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-fishing-games__feature-card p {
  font-size: 16px;
  color: #f0f0f0;
}

/* Download Guide Section */
.page-fishing-games__download-guide-section {
  padding: 60px 0;
}

.page-fishing-games__guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.page-fishing-games__guide-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__guide-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0A192F;
}

.page-fishing-games__guide-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #333333;
}

.page-fishing-games__guide-list li {
  margin-bottom: 10px;
}

.page-fishing-games__guide-list strong {
  color: #0A192F;
}

.page-fishing-games__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

.page-fishing-games__cta-download {
  text-align: center;
  margin-top: 50px;
}

/* Game Halls Section */
.page-fishing-games__halls-section {
  padding: 60px 0;
}

.page-fishing-games__halls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-fishing-games__hall-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.page-fishing-games__hall-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hall-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-fishing-games__hall-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-fishing-games__hall-description {
  font-size: 15px;
  color: #f0f0f0;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* Tips Section */
.page-fishing-games__tips-section {
  padding: 60px 0;
}

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

.page-fishing-games__tip-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__tip-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0A192F;
}

.page-fishing-games__tip-card p {
  font-size: 16px;
  color: #333333;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 60px 0;
}

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

.page-fishing-games__promo-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-fishing-games__promo-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-fishing-games__promo-description {
  font-size: 15px;
  color: #f0f0f0;
  padding: 0 15px;
  margin-bottom: 20px;
}

/* Security and Support Section */
.page-fishing-games__security-support-section {
  padding: 60px 0;
}

.page-fishing-games__security-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__security-support-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__security-support-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-fishing-games__security-support-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0A192F;
}

.page-fishing-games__security-support-item p {
  font-size: 16px;
  color: #333333;
}

.page-fishing-games__contact-cta {
  text-align: center;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 60px 0;
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-fishing-games__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg); /* Use rotation for minus sign */
}

.page-fishing-games__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;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-fishing-games__faq-answer p {
  font-size: 16px;
  color: #f0f0f0;
}

/* Blog Section */
.page-fishing-games__blog-section {
  padding: 60px 0;
}

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

.page-fishing-games__blog-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-fishing-games__blog-card-title {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 20px 10px 20px;
  color: #0A192F;
}

.page-fishing-games__blog-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-fishing-games__blog-link:hover {
  color: #FFD700;
}

.page-fishing-games__blog-description {
  font-size: 15px;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 15px;
}

.page-fishing-games__blog-date {
  display: block;
  font-size: 13px;
  color: #888888;
  padding: 0 20px 20px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 40px;
  }
  .page-fishing-games__hero-description {
    font-size: 16px;
  }
  .page-fishing-games__section-title {
    font-size: 32px;
  }
  .page-fishing-games__introduction-grid {
    flex-direction: column;
  }
  .page-fishing-games__guide-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__hero-image-wrapper {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 100px; /* Adjust for mobile header height */
    padding-bottom: 40px;
  }
  .page-fishing-games__hero-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
  .page-fishing-games__hero-title {
    font-size: 32px;
    text-align: center;
  }
  .page-fishing-games__hero-description {
    font-size: 15px;
    text-align: center;
  }
  .page-fishing-games__hero-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-fishing-games__hero-content {
    text-align: center;
  }
  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-fishing-games__section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-fishing-games__container {
    padding: 30px 15px;
  }
  .page-fishing-games__introduction-grid {
    gap: 30px;
  }
  .page-fishing-games__introduction-text p {
    font-size: 15px;
  }
  .page-fishing-games__feature-card,
  .page-fishing-games__hall-card,
  .page-fishing-games__tip-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__security-support-item,
  .page-fishing-games__blog-card {
    padding: 20px;
  }
  .page-fishing-games__feature-icon,
  .page-fishing-games__security-support-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  .page-fishing-games__feature-title,
  .page-fishing-games__hall-title,
  .page-fishing-games__tip-title,
  .page-fishing-games__promo-title,
  .page-fishing-games__security-support-title,
  .page-fishing-games__blog-card-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .page-fishing-games__guide-item {
    padding: 20px;
  }
  .page-fishing-games__guide-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .page-fishing-games__guide-list {
    font-size: 15px;
    margin-left: 15px;
  }
  .page-fishing-games__hall-image,
  .page-fishing-games__promo-image,
  .page-fishing-games__blog-image {
    height: 180px;
  }
  .page-fishing-games__faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 16px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px 20px !important;
  }
  .page-fishing-games__faq-answer p {
    font-size: 15px;
  }
  /* Mobile image responsiveness for all images */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-container,
  .page-fishing-games__introduction-grid,
  .page-fishing-games__features-grid,
  .page-fishing-games__guide-grid,
  .page-fishing-games__halls-grid,
  .page-fishing-games__tips-grid,
  .page-fishing-games__promotions-grid,
  .page-fishing-games__security-support-grid,
  .page-fishing-games__blog-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}