/* style/fishing-games.css */

/* Base styles for the fishing games page */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css var(--dark-bg) */
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-fishing-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games__dark-section {
  background-color: #26A9E0; /* Brand primary color for dark sections */
  color: #ffffff;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__section-intro {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  padding: 120px 0 60px; /* Adjusted for header offset */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.page-fishing-games__hero-section .page-fishing-games__container {
  z-index: 2;
  position: relative;
}

.page-fishing-games__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-description a {
  color: #f0f0f0;
  text-decoration: underline;
}

.page-fishing-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-fishing-games__btn-primary:hover {
  background-color: #d16e06;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0; /* Brand primary color for secondary action */
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-fishing-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

/* Why Choose Us Section */
.page-fishing-games__why-choose-us {
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games__why-choose-us .page-fishing-games__section-title {
  color: #26A9E0; /* Brand primary color for titles on light background */
}

.page-fishing-games__why-choose-us .page-fishing-games__section-intro {
  color: #555555;
}

.page-fishing-games__why-choose-us .page-fishing-games__section-intro a {
  color: #26A9E0;
  text-decoration: underline;
}

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

.page-fishing-games__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-fishing-games__feature-icon {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-fishing-games__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-fishing-games__feature-description a {
  color: #26A9E0;
  text-decoration: underline;
}

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

.page-fishing-games__download-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  color: #ffffff;
}

.page-fishing-games__step-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-fishing-games__step-item ol {
  list-style-type: decimal;
  margin-left: 20px;
}

.page-fishing-games__step-item li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-fishing-games__step-item a {
  color: #ffffff;
  text-decoration: underline;
}

.page-fishing-games__note {
  margin-top: 30px;
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__note a {
  color: #ffffff;
  text-decoration: underline;
}

.page-fishing-games__download-cta {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-fishing-games__download-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

/* Popular Games Section */
.page-fishing-games__popular-games {
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games__popular-games .page-fishing-games__section-title {
  color: #26A9E0;
}

.page-fishing-games__popular-games .page-fishing-games__section-intro {
  color: #555555;
}

.page-fishing-games__popular-games .page-fishing-games__section-intro a {
  color: #26A9E0;
  text-decoration: underline;
}

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

.page-fishing-games__game-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__game-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  object-fit: cover;
}

.page-fishing-games__game-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-fishing-games__game-description {
  font-size: 0.95em;
  color: #555555;
  flex-grow: 1;
}

.page-fishing-games__game-description a {
  color: #26A9E0;
  text-decoration: underline;
}

/* Strategies Section */
.page-fishing-games__strategies {
  padding-bottom: 0;
}

.page-fishing-games__strategies .page-fishing-games__section-intro a {
  color: #ffffff;
  text-decoration: underline;
}

.page-fishing-games__strategy-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__strategy-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  color: #ffffff;
}

.page-fishing-games__strategy-item a {
  color: #ffffff;
  text-decoration: underline;
}

.page-fishing-games__strategy-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-fishing-games__strategy-description {
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-fishing-games__strategy-image {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.page-fishing-games__promotions {
  background-color: #ffffff;
  color: #333333;
  padding-bottom: 0;
}

.page-fishing-games__promotions .page-fishing-games__section-title {
  color: #26A9E0;
}

.page-fishing-games__promotions .page-fishing-games__section-intro {
  color: #555555;
}

.page-fishing-games__promotions .page-fishing-games__section-intro a {
  color: #26A9E0;
  text-decoration: underline;
}

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

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

.page-fishing-games__promo-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__promo-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-fishing-games__promo-description {
  font-size: 1em;
  color: #555555;
}

.page-fishing-games__promo-description a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-fishing-games__promo-cta {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-fishing-games__faq {
  text-align: left;
}

.page-fishing-games__faq .page-fishing-games__section-intro {
  color: #f0f0f0;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

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

.page-fishing-games__faq-title {
  color: #ffffff;
  margin: 0;
  font-size: 1em; /* Adjust to fit parent font size */
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 20px;
}

.page-fishing-games__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #f0f0f0;
}

.page-fishing-games__faq-answer a {
  color: #ffffff;
  text-decoration: underline;
}

/* Conclusion Section */
.page-fishing-games__conclusion {
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games__conclusion .page-fishing-games__section-title {
  color: #26A9E0;
}

.page-fishing-games__conclusion .page-fishing-games__section-intro {
  color: #555555;
}

.page-fishing-games__conclusion .page-fishing-games__section-intro a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-fishing-games__conclusion-cta {
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 3em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.2em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: var(--header-offset, 120px) 0 40px; /* Ensure header offset on mobile */
  }
  .page-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__download-guide,
  .page-fishing-games__popular-games,
  .page-fishing-games__strategies,
  .page-fishing-games__promotions,
  .page-fishing-games__faq,
  .page-fishing-games__conclusion {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-fishing-games__features-grid,
  .page-fishing-games__download-steps,
  .page-fishing-games__game-grid,
  .page-fishing-games__strategy-items,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-fishing-games__faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
}