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

/* 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%, #333333 100%); /* Darker gradient for background */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.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%;
  padding: 20px;
  background: rgba(26, 26, 26, 0.7);
  border-radius: 10px;
}

.page-fishing-games .hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  font-weight: bold;
}

.page-fishing-games .hero-description {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games .hero-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.5em;
  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: #E0B500;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* General Section Styles */
.page-fishing-games section {
  padding: 80px 0;
  text-align: center;
}

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

.page-fishing-games .section-games-featured {
  background-color: #222222;
}

.page-fishing-games .section-guide {
  background-color: #1A1A1A;
}

.page-fishing-games .section-promotions {
  background-color: #222222;
}

.page-fishing-games .section-why-choose {
  background-color: #1A1A1A;
}

.page-fishing-games .section-faq {
  background-color: #222222;
}

.page-fishing-games .section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-fishing-games .section-paragraph {
  font-size: 1.1em;
  color: #C0C0C0;
  max-width: 900px;
  margin: 0 auto 25px auto;
}

.page-fishing-games .section-paragraph a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

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

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

.page-fishing-games .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-fishing-games .game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-fishing-games .game-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 15px 10px 15px;
  font-weight: bold;
}

.page-fishing-games .game-description {
  font-size: 1em;
  color: #B0B0B0;
  padding: 0 15px;
  margin-bottom: 25px;
}

.page-fishing-games .btn-play {
  display: inline-block;
  padding: 12px 30px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-fishing-games .btn-play:hover {
  background: #E0B500;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

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

.page-fishing-games .step-item {
  background-color: #333333;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-fishing-games .step-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-fishing-games .step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games .step-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-fishing-games .btn-step {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-fishing-games .btn-step:hover {
  background: #E0B500;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(255, 215, 0, 0.4);
}

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

.page-fishing-games .promo-card {
  background-color: #333333;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.page-fishing-games .promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-fishing-games .promo-thumbnail {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-fishing-games .promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 15px 10px 15px;
  font-weight: bold;
}

.page-fishing-games .promo-description {
  font-size: 1em;
  color: #B0B0B0;
  padding: 0 15px;
  margin-bottom: 25px;
}

.page-fishing-games .btn-promo {
  display: inline-block;
  padding: 12px 30px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-fishing-games .btn-promo:hover {
  background: #E0B500;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

/* Why Choose Us */
.page-fishing-games .feature-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-fishing-games .feature-list li {
  background-color: #333333;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1em;
  color: #C0C0C0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .feature-list li strong {
  color: #FFD700;
  font-weight: bold;
}

.page-fishing-games .feature-list li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

.page-fishing-games .list-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px #FFD700);
}

/* FAQ Section */
.page-fishing-games .faq-list {
  margin-top: 50px;
  text-align: left;
}

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

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

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

.page-fishing-games .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #FFD700;
  font-weight: bold;
}

.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;
  padding: 0 25px;
  background: #2A2A2A;
  border-radius: 0 0 8px 8px;
}

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

.page-fishing-games .faq-answer p {
  margin: 0;
  font-size: 1.1em;
  color: #C0C0C0;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games .hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games .hero-description {
    font-size: 1.2em;
  }
  .page-fishing-games .cta-button {
    padding: 15px 35px;
    font-size: 1.3em;
  }
  .page-fishing-games .section-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games section {
    padding: 60px 0;
  }
  .page-fishing-games .hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games .hero-description {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1.2em;
  }
  .page-fishing-games .section-title {
    font-size: 2em;
  }
  .page-fishing-games .game-grid, .page-fishing-games .guide-steps, .page-fishing-games .promo-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .feature-list {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games .hero-description {
    font-size: 0.9em;
  }
  .page-fishing-games .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-fishing-games .section-title {
    font-size: 1.8em;
  }
  .page-fishing-games .game-title, .page-fishing-games .promo-title, .page-fishing-games .step-title {
    font-size: 1.4em;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1em;
  }
  .page-fishing-games .faq-answer p {
    font-size: 0.9em;
  }
  .page-fishing-games .list-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
}