.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-fishing-games section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-fishing-games section:nth-of-type(odd) {
  background-color: #fdfdfd;
}

.page-fishing-games h1,
.page-fishing-games h2 {
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games h1 {
  font-size: 2.8em;
  color: #0A2463;
}

.page-fishing-games h2 {
  font-size: 2.2em;
  color: #0A2463;
}

.page-fishing-games h3 {
  color: #0A2463;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-fishing-games p {
  margin-bottom: 20px;
  color: #555;
}

.page-fishing-games ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-fishing-games ul li {
  margin-bottom: 10px;
  color: #555;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.page-fishing-games .primary-cta {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

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

.page-fishing-games .secondary-cta {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #0A2463;
  margin-left: 15px;
}

.page-fishing-games .secondary-cta:hover {
  background-color: #071a47;
  border-color: #071a47;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(10, 36, 99, 0.3);
}

.page-fishing-games .button-small {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  text-decoration: none;
  background-color: #0A2463;
  color: #FFD700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
}

.page-fishing-games .button-small:hover {
  background-color: #071a47;
  transform: translateY(-2px);
}

/* Hero Section */
.page-fishing-games .hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #0A2463 70%, #FFD700 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games .hero-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games .hero-image {
  width: 100%;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-fishing-games .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-fishing-games .hero-content h1 {
  color: #FFD700;
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games .hero-content p {
  color: #f0f0f0;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-fishing-games .hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Why Choose Section */
.page-fishing-games .why-choose-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games .why-choose-section .feature-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #FFD700;
}

.page-fishing-games .why-choose-section .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .why-choose-section .feature-item h3 {
  color: #0A2463;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-fishing-games .why-choose-section .feature-item p {
  color: #666;
  font-size: 0.95em;
}

/* How to Play Section */
.page-fishing-games .how-to-play-section {
  background-color: #f8f8f8;
}

.page-fishing-games .how-to-play-section .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games .how-to-play-section .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-fishing-games .how-to-play-section .step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0A2463;
  color: #FFD700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #FFD700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .how-to-play-section .step-item h3 {
  color: #0A2463;
  font-size: 1.4em;
  margin-top: 15px;
  margin-bottom: 10px;
}

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

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

.page-fishing-games .popular-games-section .game-card {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.page-fishing-games .popular-games-section .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-fishing-games .popular-games-section .game-card h3 {
  margin: 15px 10px 10px;
  font-size: 1.3em;
  color: #0A2463;
}

.page-fishing-games .popular-games-section .game-card .game-link {
  text-decoration: none;
  color: #0A2463;
  transition: color 0.3s ease;
}

.page-fishing-games .popular-games-section .game-card .game-link:hover {
  color: #FFD700;
}

.page-fishing-games .popular-games-section .game-card p {
  padding: 0 15px 15px;
  font-size: 0.9em;
  color: #666;
  min-height: 80px; /* Ensure consistent card height */
}

.page-fishing-games .popular-games-section .game-card .button-small {
  margin-bottom: 15px;
}

/* Tips and Strategies Section */
.page-fishing-games .tips-strategies-section {
  background-color: #fdfdfd;
}

.page-fishing-games .tips-strategies-section ul {
  list-style: none;
  padding: 0;
}

.page-fishing-games .tips-strategies-section ul li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FFD700;
  font-size: 1.05em;
  color: #444;
}

.page-fishing-games .tips-strategies-section ul li strong {
  color: #0A2463;
}

/* App Section */
.page-fishing-games .app-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 0;
  text-align: left;
}

.page-fishing-games .app-section .app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-fishing-games .app-section .app-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-fishing-games .app-section .app-text h2 {
  color: #FFD700;
  text-align: left;
}

.page-fishing-games .app-section .app-text p,
.page-fishing-games .app-section .app-text ul li {
  color: #f0f0f0;
}

.page-fishing-games .app-section .app-text ul {
  list-style: none;
  padding-left: 0;
}

.page-fishing-games .app-section .app-text ul li {
  position: relative;
  padding-left: 25px;
}

.page-fishing-games .app-section .app-text ul li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-fishing-games .app-section .app-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
}

.page-fishing-games .app-section .app-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Safety Support Section */
.page-fishing-games .safety-support-section .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games .safety-support-section .info-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-bottom: 5px solid #0A2463;
}

.page-fishing-games .safety-support-section .info-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-fishing-games .safety-support-section .info-item h3 {
  color: #0A2463;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-fishing-games .safety-support-section .info-item p {
  color: #666;
  font-size: 0.95em;
}

/* FAQ Section */
.page-fishing-games .faq-section {
  background-color: #f8f8f8;
}

.page-fishing-games .faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-fishing-games .faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-fishing-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #eee;
}

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

.page-fishing-games .faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: #0A2463;
}

.page-fishing-games .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  color: #555;
}

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

.page-fishing-games .faq-answer p {
  margin-bottom: 10px;
}

/* Final CTA Section */
.page-fishing-games .final-cta-section {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-fishing-games .final-cta-section h2 {
  color: #FFD700;
  font-size: 2.5em;
}

.page-fishing-games .final-cta-section p {
  color: #f0f0f0;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games .hero-content h1 {
    font-size: 3em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 2.5em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games h3 {
    font-size: 1.2em;
  }
  .page-fishing-games .hero-ctas {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games .secondary-cta {
    margin-left: 0;
  }
  .page-fishing-games .app-section .app-content {
    flex-direction: column-reverse;
  }
  .page-fishing-games .app-section .app-text h2 {
    text-align: center;
  }
  .page-fishing-games .app-section .app-text ul {
    padding-left: 15px;
  }
  .page-fishing-games .app-section .app-image {
    order: -1;
  }
  .page-fishing-games .faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games .faq-answer {
    padding: 0 20px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 15px 20px 20px;
  }
  .page-fishing-games .final-cta-section h2 {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .container {
    padding: 0 15px;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 2em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-fishing-games h2 {
    font-size: 1.6em;
  }
  .page-fishing-games .how-to-play-section .step-item {
    padding-top: 50px;
  }
  .page-fishing-games .how-to-play-section .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
    top: -15px;
  }
  .page-fishing-games .popular-games-section .game-card img {
    height: 160px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 1.5em;
  }
  .page-fishing-games .final-cta-section h2 {
    font-size: 1.8em;
  }
}