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

.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: #0A2463;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-fishing-games h1 {
  font-size: 3em;
  text-align: center;
  margin-bottom: 30px;
}

.page-fishing-games h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

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

.page-fishing-games p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444444;
}

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

.page-fishing-games a:hover {
  color: #E3B505;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #E3B505;
  color: #0A2463;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 1.2em;
}

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

/* Hero Section */
.page-fishing-games .hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1a3c7c 100%);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-fishing-games .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-games .hero-content {
  z-index: 2;
}

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

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

.page-fishing-games .hero-image {
  width: 100%;
  max-width: 800px;
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Intro Section */
.page-fishing-games .intro-section {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-fishing-games .intro-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Games Showcase */
.page-fishing-games .games-showcase {
  padding: 80px 0;
  background-color: #f4f7f6;
}

.page-fishing-games .game-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: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-fishing-games .game-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games .game-card .game-title-link {
  color: #0A2463;
}

.page-fishing-games .game-card .game-title-link:hover {
  color: #E3B505;
}

.page-fishing-games .game-card p {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-fishing-games .game-card .btn-play {
  display: inline-block;
  padding: 10px 25px;
  background-color: #E3B505;
  color: #0A2463;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-fishing-games .game-card .btn-play:hover {
  background-color: #d1a504;
}

.page-fishing-games .note-text {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #555555;
}

/* Guide Section */
.page-fishing-games .guide-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

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

.page-fishing-games .step-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-fishing-games .step-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.page-fishing-games .step-item .btn-action {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0A2463;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-fishing-games .step-item .btn-action:hover {
  background-color: #1a3c7c;
}

/* Strategy Section */
.page-fishing-games .strategy-section {
  padding: 80px 0;
  background-color: #f4f7f6;
}

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

.page-fishing-games .strategy-section ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444444;
}

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

.page-fishing-games .strategy-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Promotions Section */
.page-fishing-games .promotions-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

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

.page-fishing-games .promo-item {
  background-color: #f9f9f9;
  border-left: 5px solid #E3B505;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-fishing-games .promo-item .promo-link {
  color: #0A2463;
}

.page-fishing-games .promo-item .promo-link:hover {
  color: #E3B505;
}

.page-fishing-games .promo-item p {
  font-size: 1em;
  color: #666666;
}

/* Why Choose Us Section */
.page-fishing-games .why-choose-us {
  padding: 80px 0;
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
}

.page-fishing-games .why-choose-us h2 {
  color: #E3B505;
}

.page-fishing-games .why-choose-us p {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

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

.page-fishing-games .feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games .feature-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games .feature-item p {
  color: #cccccc;
  font-size: 1em;
}

/* FAQ Section */
.page-fishing-games .faq-section {
  padding: 80px 0;
  background-color: #fcfcfc;
}

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

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

.page-fishing-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  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.25em;
  color: #0A2463;
}

.page-fishing-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #E3B505;
  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.3s ease-out, padding 0.3s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
}

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

.page-fishing-games .faq-answer p {
  font-size: 1em;
  color: #555555;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games .hero-content h1 {
    font-size: 2.8em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
  }
  .page-fishing-games h3 {
    font-size: 1.5em;
  }
  .page-fishing-games .game-card img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games .hero-section {
    padding: 60px 0;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 2.2em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games h3 {
    font-size: 1.4em;
  }
  .page-fishing-games .game-grid,
  .page-fishing-games .guide-steps,
  .page-fishing-games .promo-list,
  .page-fishing-games .feature-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .game-card img {
    height: 160px;
  }
  .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-answer {
    padding: 0 20px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .hero-section {
    padding: 40px 0;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 1.8em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-fishing-games h2 {
    font-size: 1.5em;
  }
  .page-fishing-games h3 {
    font-size: 1.2em;
  }
  .page-fishing-games .intro-section,
  .page-fishing-games .games-showcase,
  .page-fishing-games .guide-section,
  .page-fishing-games .strategy-section,
  .page-fishing-games .promotions-section,
  .page-fishing-games .why-choose-us,
  .page-fishing-games .faq-section {
    padding: 40px 0;
  }
  .page-fishing-games .container {
    padding: 0 15px;
  }
}