.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A2A44;
  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;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-fishing-games h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

.page-fishing-games section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

/* Hero Section */
.page-fishing-games .hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1A2A44 70%, #0A192F 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.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 10px 30px 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 {
  color: #C0C0C0;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #0A192F;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-fishing-games .cta-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.6);
}

/* Intro Section */
.page-fishing-games .intro-section p {
  font-size: 1.1em;
  color: #C0C0C0;
  text-align: justify;
  margin-bottom: 25px;
}

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

.page-fishing-games .feature-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
}

.page-fishing-games .feature-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-fishing-games .game-card {
  background-color: #0A192F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games .game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
}

.page-fishing-games .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-fishing-games .game-card h3 {
  font-size: 1.5em;
  color: #FFD700;
  padding: 15px 20px 5px;
  text-align: left;
  margin-bottom: 5px;
}

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

.page-fishing-games .game-card h3 a:hover {
  color: #FFA500;
}

.page-fishing-games .game-card p {
  font-size: 0.95em;
  color: #B0B0B0;
  padding: 0 20px 15px;
  text-align: left;
}

.page-fishing-games .btn-play {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #0A192F;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-fishing-games .btn-play:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* How-to-Play Section */
.page-fishing-games .how-to-play-section p {
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #C0C0C0;
}

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

.page-fishing-games .step-item {
  background-color: #0A192F;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games .step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
}

.page-fishing-games .step-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #FFD700;
  padding: 10px;
  background-color: #1A2A44;
}

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

.page-fishing-games .step-item p {
  font-size: 0.95em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 20px;
}

.page-fishing-games .btn-step {
  display: inline-block;
  padding: 10px 25px;
  background-color: #FFD700;
  color: #0A192F;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-fishing-games .btn-step:hover {
  background-color: #FFA500;
  transform: translateY(-2px);
}

/* Promotions Section */
.page-fishing-games .promotions-section p {
  color: #C0C0C0;
}

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

.page-fishing-games .promo-card {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
}

.page-fishing-games .promo-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .promo-card h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-fishing-games .promo-card p {
  font-size: 1em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 25px;
}

.page-fishing-games .btn-promo {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #0A192F;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-fishing-games .btn-promo:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-2px);
}

/* Safety & Support Section */
.page-fishing-games .safety-support-section {
  text-align: center;
}

.page-fishing-games .safety-support-section p {
  color: #C0C0C0;
  text-align: justify;
}

.page-fishing-games .btn-contact {
  display: inline-block;
  padding: 15px 40px;
  background-color: #FFD700;
  color: #0A192F;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-fishing-games .btn-contact:hover {
  background-color: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

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

.page-fishing-games .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-fishing-games .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #FFFFFF;
  text-align: left;
}

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

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

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #0A192F;
  border-radius: 0 0 8px 8px;
  border-top: none;
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-top: none;
}

.page-fishing-games .faq-answer p {
  font-size: 1em;
  color: #B0B0B0;
  text-align: left;
  margin-bottom: 10px;
}

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

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

/* Call to Action Bottom */
.page-fishing-games .call-to-action {
  background: linear-gradient(135deg, #0A192F, #1A2A44);
  text-align: center;
  padding: 80px 20px;
}

.page-fishing-games .call-to-action h2 {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-fishing-games .call-to-action p {
  color: #C0C0C0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-fishing-games .cta-button-bottom {
  display: inline-block;
  padding: 20px 50px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #0A192F;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-fishing-games .cta-button-bottom:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games h1 {
    font-size: 2.8em;
  }
  .page-fishing-games h2 {
    font-size: 2.2em;
  }
  .page-fishing-games h3 {
    font-size: 1.6em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games .cta-button {
    padding: 16px 40px;
    font-size: 1.2em;
  }
  .page-fishing-games .feature-item img, .page-fishing-games .promo-card img {
    width: 120px;
    height: 120px;
  }
  .page-fishing-games .game-card img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .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: 1em;
    text-align: left;
  }
  .page-fishing-games .hero-section, .page-fishing-games section {
    padding: 50px 0;
  }
  .page-fishing-games .cta-button {
    padding: 14px 35px;
    font-size: 1.1em;
  }
  .page-fishing-games .hero-image img {
    border-radius: 8px;
  }
  .page-fishing-games .features-grid, .page-fishing-games .game-cards, .page-fishing-games .steps-grid, .page-fishing-games .promo-cards {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .feature-item, .page-fishing-games .game-card, .page-fishing-games .step-item, .page-fishing-games .promo-card {
    padding: 25px 15px;
  }
  .page-fishing-games .game-card h3, .page-fishing-games .game-card p {
    text-align: center;
  }
  .page-fishing-games .btn-play {
    width: calc(100% - 30px);
    margin: 0 15px 15px;
  }
  .page-fishing-games .faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-answer {
    padding: 10px 20px;
  }
  .page-fishing-games .cta-button-bottom {
    padding: 15px 35px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.6em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-fishing-games .feature-item img, .page-fishing-games .promo-card img {
    width: 100px;
    height: 100px;
  }
  .page-fishing-games .step-item img {
    width: 90px;
    height: 90px;
  }
  .page-fishing-games .cta-button-bottom {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 20px;
  }
}