.page-fishing-games {
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from body */
  padding-top: 120px; /* Space for fixed header */
}

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

/* Text colors based on body background #121212 (dark) */
.page-fishing-games__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for sections */
  color: #ffffff;
}

.page-fishing-games__light-bg {
  background-color: #2a2a2a; /* Lighter dark for contrast sections */
  color: #f0f0f0;
}

.page-fishing-games__main-title,
.page-fishing-games__section-title {
  font-size: 3.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #FFD700; /* Gold for titles */
  line-height: 1.2;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #cccccc;
}

/* Hero Section */
.page-fishing-games__hero-banner {
  padding: 80px 0 60px 0;
  background: linear-gradient(135deg, #000080, #1a1a1a); /* Dark blue to dark */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-size: 3.5em;
  margin-top: 0;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-fishing-games__hero-description strong {
  color: #FFD700;
  font-weight: bold;
}

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

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #000000; /* Black for contrast */
  border: 2px solid #FFD700;
}

.page-fishing-games__btn-primary:hover {
  background-color: #e6c200;
  color: #121212;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-fishing-games__btn-tertiary {
  background-color: #000080; /* Dark Blue */
  color: #ffffff;
  border: 2px solid #000080;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

.page-fishing-games__btn-tertiary:hover {
  background-color: #00005a;
  border-color: #00005a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 128, 0.3);
}

/* Intro Section */
.page-fishing-games__intro-section {
  padding: 80px 0;
}

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

.page-fishing-games__feature-item {
  background-color: #1a1a1a; /* Darker background for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-fishing-games__feature-item p {
  font-size: 1em;
  color: #cccccc;
}

/* Games Showcase Section */
.page-fishing-games__games-showcase {
  padding: 80px 0;
}

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

.page-fishing-games__game-card {
  background-color: #2a2a2a; /* Lighter dark for game cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.page-fishing-games__game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__game-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #FFD700; /* Gold for game titles */
  padding: 15px 10px;
  text-align: center;
  margin: 0;
}

.page-fishing-games__play-button {
  display: block;
  background-color: #000080; /* Dark blue */
  color: #ffffff;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-fishing-games__game-card:hover .page-fishing-games__play-button {
  background-color: #FFD700; /* Gold on hover */
  color: #000000;
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 80px 0;
}

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

.page-fishing-games__step-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #f0f0f0;
}

.page-fishing-games__step-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games__step-item p {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
  padding: 80px 0;
}

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

.page-fishing-games__strategy-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
}

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

.page-fishing-games__strategy-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__strategy-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #FFD700;
  padding: 15px 10px 5px 15px;
  margin: 0;
}

.page-fishing-games__strategy-card p {
  font-size: 1em;
  color: #cccccc;
  padding: 0 15px 20px 15px;
}

.page-fishing-games__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

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

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

.page-fishing-games__promo-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-fishing-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__promo-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #FFD700;
  padding: 15px 15px 5px 15px;
  margin: 0;
}

.page-fishing-games__promo-card p {
  font-size: 1em;
  color: #cccccc;
  padding: 0 15px 15px 15px;
  flex-grow: 1;
}

.page-fishing-games__promo-card .page-fishing-games__btn-secondary {
  margin: 0 15px 15px 15px;
  width: calc(100% - 30px);
}

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

.page-fishing-games__faq-list {
  margin-top: 50px;
}

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1a1a;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #2a2a2a;
  color: #FFD700;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #3a3a3a;
}

.page-fishing-games__faq-question:hover {
  background-color: #3a3a3a;
}

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

.page-fishing-games__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  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 {
  transform: rotate(45deg);
  color: #FFD700;
}

.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: #1a1a1a;
  color: #cccccc;
  font-size: 1em;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-fishing-games__faq-answer p {
  margin: 0;
  padding: 0;
}

/* Contact CTA Section */
.page-fishing-games__contact-cta {
  padding: 80px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 3em;
  }
  .page-fishing-games__section-title {
    font-size: 2.5em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.2em;
  }
  .page-fishing-games__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    padding-top: 100px; /* Adjust for mobile fixed header */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games__hero-banner,
  .page-fishing-games__intro-section,
  .page-fishing-games__games-showcase,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__contact-cta {
    padding: 50px 0;
  }
  .page-fishing-games__main-title {
    font-size: 2.5em;
    margin-bottom: 15px;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
    margin-bottom: 20px;
  }
  .page-fishing-games__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-fishing-games__features-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .page-fishing-games__feature-item,
  .page-fishing-games__step-item,
  .page-fishing-games__strategy-card,
  .page-fishing-games__promo-card {
    padding: 20px;
  }
  .page-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  .page-fishing-games__feature-title,
  .page-fishing-games__step-title,
  .page-fishing-games__game-title,
  .page-fishing-games__strategy-title,
  .page-fishing-games__promo-title {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  .page-fishing-games__game-image,
  .page-fishing-games__strategy-image,
  .page-fishing-games__promo-image {
    height: 180px;
  }
  .page-fishing-games__faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games__faq-toggle {
    font-size: 1.8em;
    width: 25px;
    height: 25px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px 20px !important;
  }
  /* All images responsive for mobile */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}