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

.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: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.page-fishing-games h1 {
  font-size: 2.8em;
  margin-top: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games h2 {
  font-size: 2.2em;
  margin-top: 40px;
}

.page-fishing-games h3 {
  font-size: 1.6em;
  margin-top: 20px;
}

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

.page-fishing-games a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.page-fishing-games .btn-primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: none;
}

.page-fishing-games .btn-primary:hover {
  background-color: #E6C200;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .btn-secondary {
  background-color: #333;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-fishing-games .btn-secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* 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: 60px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
  border-bottom: 5px solid #FFD700;
}

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

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

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

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-fishing-games .cta-button:hover {
  background: #E6C200;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* General Section Styling */
.page-fishing-games section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-fishing-games section:last-of-type {
  border-bottom: none;
}

.page-fishing-games .intro-section {
  background-color: #222;
}

.page-fishing-games .intro-section h2, .page-fishing-games .intro-section p {
  text-align: center;
}

/* Why Choose Section */
.page-fishing-games .why-choose-section {
  background-color: #1A1A1A;
}

.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: #2A2A2A;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.page-fishing-games .feature-item img {
  width: 100%;
  max-width: 300px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-fishing-games .feature-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

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

/* Game Types Section */
.page-fishing-games .game-types-section {
  background-color: #222;
}

.page-fishing-games .game-types-section > p {
  text-align: center;
  margin-bottom: 40px;
}

.page-fishing-games .game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

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

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

.page-fishing-games .game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency, adjust as needed */
  object-fit: cover;
  border-bottom: 2px solid #FFD700;
}

.page-fishing-games .game-card h3 {
  color: #FFD700;
  padding: 15px 10px 5px 10px;
  font-size: 1.3em;
  margin-bottom: 5px;
}

.page-fishing-games .game-card h3 a {
  color: #FFD700;
  text-decoration: none;
}

.page-fishing-games .game-card h3 a:hover {
  color: #FFF;
  text-decoration: underline;
}

.page-fishing-games .game-card p {
  color: #C0C0C0;
  font-size: 0.9em;
  padding: 0 15px 15px 15px;
  text-align: center;
}

.page-fishing-games .game-card .btn {
  margin-bottom: 20px;
}

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

.page-fishing-games .how-to-play-section h2 {
  margin-bottom: 30px;
}

.page-fishing-games .how-to-play-section > p {
  text-align: center;
  margin-bottom: 30px;
}

.page-fishing-games ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
}

.page-fishing-games ol li {
  background-color: #2A2A2A;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 70px; /* Space for step number */
}

.page-fishing-games ol li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #FFD700;
  color: #1A1A1A;
  font-weight: bold;
  font-size: 1.5em;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-fishing-games ol li h3 {
  color: #FFD700;
  margin-top: 0;
  text-align: left;
  font-size: 1.5em;
}

.page-fishing-games ol li p {
  color: #C0C0C0;
  text-align: left;
}

/* Tips Section */
.page-fishing-games .tips-section {
  background-color: #222;
}

.page-fishing-games .tips-section > p {
  text-align: center;
  margin-bottom: 40px;
}

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

.page-fishing-games .tip-item {
  background-color: #2A2A2A;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.page-fishing-games .tip-item img {
  width: 100%;
  max-width: 300px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-fishing-games .tip-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

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

/* Promotions Section */
.page-fishing-games .promotions-section {
  background-color: #1A1A1A;
}

.page-fishing-games .promotions-section h2 {
  margin-bottom: 30px;
}

.page-fishing-games .promotions-section > p {
  text-align: center;
  margin-bottom: 30px;
}

.page-fishing-games .promotions-section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-fishing-games .promotions-section ul li {
  background-color: #2A2A2A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #F0F0F0;
}

.page-fishing-games .promotions-section ul li strong {
  color: #FFD700;
  font-size: 1.1em;
}

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

.page-fishing-games .faq-section h2 {
  margin-bottom: 40px;
}

.page-fishing-games .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-fishing-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #2A2A2A;
  border: 1px solid #3A3A3A;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-fishing-games .faq-question:hover {
  background: #3A3A3A;
  border-color: #FFD700;
}

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

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

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

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #333;
  border-radius: 0 0 5px 5px;
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px;
  border: 1px solid #3A3A3A;
  border-top: none;
}

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

/* Final CTA Section */
.page-fishing-games .cta-final-section {
  background: linear-gradient(90deg, #1A1A1A, #333);
  text-align: center;
  padding: 80px 20px;
}

.page-fishing-games .cta-final-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

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

.page-fishing-games .cta-final-section .btn {
  margin: 0 10px 20px 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games h1 {
    font-size: 2.5em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
  }
  .page-fishing-games .cta-button {
    font-size: 18px;
    padding: 15px 35px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games h1 {
    font-size: 2em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games h3 {
    font-size: 1.4em;
  }
  .page-fishing-games .hero-section {
    padding: 40px 15px;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    font-size: 16px;
    padding: 12px 30px;
  }
  .page-fishing-games .features-grid, .page-fishing-games .game-cards-grid, .page-fishing-games .tips-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games ol li {
    padding: 20px 15px 20px 60px;
  }
  .page-fishing-games ol li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 10px;
  }
  .page-fishing-games .faq-question {
    padding: 15px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 20px;
  }
  .page-fishing-games .cta-final-section h2 {
    font-size: 2em;
  }
  .page-fishing-games .cta-final-section .btn {
    display: block;
    margin: 20px auto 15px auto;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.6em;
  }
  .page-fishing-games .hero-image img {
    border-radius: 8px;
  }
  .page-fishing-games .cta-button {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-fishing-games .game-card img {
    height: 180px;
  }
  .page-fishing-games .promotions-section ul li {
    padding: 15px;
  }
}