.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;
}

.page-fishing-games section.bg-light {
  background-color: #f0f0f0;
}

.page-fishing-games section.bg-dark {
  background-color: #2c3e50;
  color: #ecf0f1;
}

.page-fishing-games section.bg-dark h2,
.page-fishing-games section.bg-dark h3 {
  color: #FFD700;
}

.page-fishing-games h1,
.page-fishing-games h2,
.page-fishing-games h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #00CED1;
  font-weight: bold;
}

.page-fishing-games h1 {
  font-size: 3.2em;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-fishing-games h2 {
  font-size: 2.5em;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 15px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games h3 {
  font-size: 1.8em;
  color: #00CED1;
  margin-top: 40px;
  text-align: left;
}

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

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

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

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: center;
}

.page-fishing-games .cta-button:hover {
  background: #00CED1;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.page-fishing-games .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
}

.page-fishing-games .btn-primary {
  background-color: #00CED1;
  color: #ffffff;
}

.page-fishing-games .btn-primary:hover {
  background-color: #00a0a3;
  transform: translateY(-1px);
}

.page-fishing-games .btn-secondary {
  background-color: #FFD700;
  color: #2c3e50;
}

.page-fishing-games .btn-secondary:hover {
  background-color: #e6c200;
  transform: translateY(-1px);
}

.page-fishing-games .btn-promo {
  background-color: #FFD700;
  color: #2c3e50;
  margin-top: 15px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games .btn-promo:hover {
  background-color: #00CED1;
  color: #ffffff;
}

.page-fishing-games .btn-link {
  color: #00CED1;
  text-decoration: underline;
  background: none;
  padding: 0;
  font-size: 1em;
}

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

/* Hero Section */
.page-fishing-games .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #00CED1, #008080);
}

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

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

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

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

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

.page-fishing-games .hero-content p {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

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

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

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

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

.page-fishing-games .step-item h3 {
  color: #00CED1;
  font-size: 1.5em;
  margin-bottom: 15px;
  text-align: center;
}

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

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

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

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

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

.page-fishing-games .strategy-card h3 {
  padding: 20px;
  font-size: 1.4em;
  color: #00CED1;
  margin-top: 0;
  text-align: left;
}

.page-fishing-games .strategy-card p {
  padding: 0 20px 20px;
  color: #555;
  font-size: 0.95em;
  text-align: justify;
}

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

.page-fishing-games .feature-item {
  background-color: #3b506b;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-fishing-games .feature-item:hover {
  transform: translateY(-5px);
  background-color: #4a6788;
}

.page-fishing-games .feature-item .feature-img {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-fishing-games .feature-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
  text-align: center;
}

.page-fishing-games .feature-item p {
  color: #e0e0e0;
  font-size: 0.95em;
  text-align: center;
}

/* Promotions Section */
.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: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .promo-card h3 {
  color: #00CED1;
  font-size: 1.5em;
  margin-bottom: 15px;
  text-align: center;
}

.page-fishing-games .promo-card p {
  color: #555;
  font-size: 0.95em;
  text-align: center;
  min-height: 80px; /* Ensure consistent card height */
}

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

.page-fishing-games .game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-fishing-games .game-card h3 {
  padding: 20px 20px 0;
  font-size: 1.4em;
  color: #00CED1;
  margin-top: 0;
  text-align: center;
}

.page-fishing-games .game-card p {
  padding: 0 20px 15px;
  color: #555;
  font-size: 0.95em;
  text-align: center;
  min-height: 70px;
}

.page-fishing-games .game-card .btn-link {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 15px;
  border: 1px solid #00CED1;
  border-radius: 5px;
  text-decoration: none;
  color: #00CED1;
  font-weight: bold;
}

.page-fishing-games .game-card .btn-link:hover {
  background-color: #00CED1;
  color: #ffffff;
}

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

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

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

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

.page-fishing-games .support-item h3 {
  color: #00CED1;
  font-size: 1.5em;
  margin-bottom: 15px;
  text-align: center;
}

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

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

.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
}

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

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

.page-fishing-games .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333;
  flex-grow: 1;
  text-align: left;
}

.page-fishing-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #00CED1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.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;
  background: #f9f9f9;
  color: #555;
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.page-fishing-games .faq-answer p {
  margin: 0;
  font-size: 1em;
  text-align: justify;
}

/* Conclusion Section */
.page-fishing-games .section-conclusion {
  text-align: center;
  background: linear-gradient(135deg, #00CED1, #FFD700);
  color: #ffffff;
  padding: 80px 20px;
}

.page-fishing-games .section-conclusion h2 {
  color: #ffffff;
  border-bottom-color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.page-fishing-games .section-conclusion p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: center;
}

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

@media (max-width: 768px) {
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games .container {
    padding: 0 15px;
  }
  .page-fishing-games h1 {
    font-size: 2.5em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-fishing-games h3 {
    font-size: 1.4em;
    margin-top: 30px;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-fishing-games .step-by-step,
  .page-fishing-games .strategy-grid,
  .page-fishing-games .feature-grid,
  .page-fishing-games .promo-grid,
  .page-fishing-games .game-cards-grid,
  .page-fishing-games .support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games .step-item .step-icon,
  .page-fishing-games .feature-item .feature-img,
  .page-fishing-games .support-item .support-icon {
    width: 80px;
    height: 80px;
  }
  .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: 20px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 2em;
  }
  .page-fishing-games h2 {
    font-size: 1.6em;
    padding-bottom: 10px;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-fishing-games .strategy-card .card-img,
  .page-fishing-games .game-card .game-card-img {
    height: 180px;
  }
  .page-fishing-games .promo-card p {
    min-height: auto;
  }
  .page-fishing-games .game-card p {
    min-height: auto;
  }
}