.page-fishing-games {
  --primary-color: #0A2342;
  --secondary-color: #FFD700;
  --text-dark: #0A2342;
  --text-light: #FFFFFF;
  --bg-light: #f9f9f9;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
}

.page-fishing-games .section-padding {
  padding: 60px 0;
}

.page-fishing-games .bg-light {
  background-color: var(--bg-light);
}

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

.page-fishing-games h1, .page-fishing-games h2, .page-fishing-games h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.page-fishing-games h1 {
  font-size: 3.2em;
}

.page-fishing-games h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

.page-fishing-games h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-fishing-games p {
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.page-fishing-games .text-center {
  text-align: center;
}

.page-fishing-games a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-fishing-games a:hover {
  text-decoration: underline;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.page-fishing-games .cta-button:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .primary-button {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.page-fishing-games .primary-button:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border-color: var(--secondary-color);
}

.page-fishing-games .small-cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
}

.page-fishing-games .small-cta-button:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border-color: var(--secondary-color);
  transform: translateY(-1px);
}

/* Hero Banner Section */
.page-fishing-games-hero-banner {
  position: relative;
  width: 100%;
  height: 500px; /* Fixed height for consistency */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--primary-color);
}

.page-fishing-games .fishing-games-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
  z-index: 1;
}

.page-fishing-games .fishing-games-hero-container {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  max-width: 900px;
  padding: 20px;
}

.page-fishing-games .fishing-games-hero-content h1 {
  color: var(--text-light);
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games .fishing-games-hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-align: center;
}

.page-fishing-games .fishing-games-hero-content .cta-button {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border-color: var(--secondary-color);
}

.page-fishing-games .fishing-games-hero-content .cta-button:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

/* Intro Section */
.page-fishing-games-intro .intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-intro .intro-item {
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-fishing-games-intro .intro-item .feature-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-fishing-games-intro .intro-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-fishing-games-intro .intro-item p {
  font-size: 1em;
  color: #555;
  text-align: center;
}

/* How to Play Section */
.page-fishing-games-how-to-play .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-fishing-games-how-to-play .step-item {
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  border-top: 5px solid var(--secondary-color);
}

.page-fishing-games-how-to-play .step-item .step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-fishing-games-how-to-play .step-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-fishing-games-how-to-play .step-item p {
  font-size: 0.95em;
  color: #666;
  text-align: center;
}

/* Popular Games Section */
.page-fishing-games-popular-games .game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-popular-games .game-card {
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

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

.page-fishing-games-popular-games .game-card .game-info {
  padding: 20px;
  text-align: center;
}

.page-fishing-games-popular-games .game-card .game-info h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-fishing-games-popular-games .game-card .game-info h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-fishing-games-popular-games .game-card .game-info h3 a:hover {
  text-decoration: underline;
}

.page-fishing-games-popular-games .game-card .game-info p {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 20px;
  text-align: center;
}

/* Promotions Section */
.page-fishing-games-promotions .promotion-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games-promotions .promotion-list li {
  display: flex;
  align-items: flex-start;
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 20px;
  gap: 20px;
  transition: transform 0.3s ease;
}

.page-fishing-games-promotions .promotion-list li:hover {
  transform: translateX(5px);
}

.page-fishing-games-promotions .promotion-list .promo-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  object-fit: contain;
  border-radius: 50%;
  padding: 10px;
  background-color: var(--secondary-color);
}

.page-fishing-games-promotions .promotion-list h3 {
  text-align: left;
  font-size: 1.4em;
  margin-top: 0;
}

.page-fishing-games-promotions .promotion-list p {
  text-align: left;
  color: #666;
  margin-bottom: 0;
}

/* Safety Section */
.page-fishing-games-safety {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-fishing-games-safety h2 {
  color: var(--text-light);
}

.page-fishing-games-safety p {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

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

.page-fishing-games-safety .safety-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.page-fishing-games-safety .safety-item .safety-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Slightly brighten icon for visibility on dark background */
}

.page-fishing-games-safety .safety-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-fishing-games-safety .safety-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95em;
}

/* FAQ Section */
.page-fishing-games-faq .faq-list {
  margin-top: 40px;
}

.page-fishing-games-faq .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-fishing-games-faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.page-fishing-games-faq .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-fishing-games-faq .faq-question:hover {
  background-color: #f0f0f0;
}

.page-fishing-games-faq .faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--text-dark);
  text-align: left;
  flex-grow: 1;
}

.page-fishing-games-faq .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

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

.page-fishing-games-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #fcfcfc;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-fishing-games-faq .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-fishing-games-faq .faq-answer p {
  margin-bottom: 0;
  color: #444;
  text-align: left;
}

/* Conclusion Section */
.page-fishing-games-conclusion h2 {
  margin-bottom: 25px;
}

.page-fishing-games-conclusion p {
  font-size: 1.1em;
  margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games h1 {
    font-size: 2.8em;
  }

  .page-fishing-games h2 {
    font-size: 2em;
  }

  .page-fishing-games h3 {
    font-size: 1.6em;
  }

  .page-fishing-games-hero-banner {
    height: 400px;
  }

  .page-fishing-games-hero-content h1 {
    font-size: 2.8em;
  }

  .page-fishing-games-hero-content p {
    font-size: 1.1em;
  }

  .page-fishing-games-intro .intro-grid,
  .page-fishing-games-how-to-play .steps-grid,
  .page-fishing-games-popular-games .game-cards-grid,
  .page-fishing-games-safety .safety-features {
    grid-template-columns: 1fr;
  }

  .page-fishing-games-promotions .promotion-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-fishing-games-promotions .promotion-list .promo-icon {
    margin-bottom: 15px;
  }

  .page-fishing-games-promotions .promotion-list h3,
  .page-fishing-games-promotions .promotion-list p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-fishing-games .section-padding {
    padding: 40px 0;
  }

  .page-fishing-games h1 {
    font-size: 2.2em;
  }

  .page-fishing-games h2 {
    font-size: 1.8em;
  }

  .page-fishing-games h3 {
    font-size: 1.4em;
  }

  .page-fishing-games p {
    font-size: 0.95em;
  }

  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-fishing-games-hero-banner {
    height: 350px;
  }

  .page-fishing-games-hero-content h1 {
    font-size: 2.2em;
  }

  .page-fishing-games-hero-content p {
    font-size: 1em;
  }

  .page-fishing-games-intro .intro-item,
  .page-fishing-games-how-to-play .step-item,
  .page-fishing-games-popular-games .game-card,
  .page-fishing-games-safety .safety-item {
    padding: 20px;
  }

  .page-fishing-games-faq .faq-question {
    padding: 15px 20px;
  }

  .page-fishing-games-faq .faq-question h3 {
    font-size: 1em;
  }

  .page-fishing-games-faq .faq-toggle {
    font-size: 1.5em;
  }

  .page-fishing-games-faq .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-hero-banner {
    height: 300px;
  }

  .page-fishing-games-hero-content h1 {
    font-size: 1.8em;
  }

  .page-fishing-games-hero-content p {
    font-size: 0.9em;
  }

  .page-fishing-games .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }

  .page-fishing-games-intro .intro-item .feature-image {
    max-width: 200px;
  }

  .page-fishing-games-promotions .promotion-list .promo-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .page-fishing-games-safety .safety-item .safety-icon {
    width: 80px;
    height: 80px;
  }
}