.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 .section-title {
  font-size: 2.5em;
  color: #002060;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

.page-fishing-games a {
  color: #002060;
  text-decoration: none;
}

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

.page-fishing-games .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-fishing-games .highlight-text {
  color: #002060;
  font-weight: bold;
}

/* 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, #002060, #1a3a70);
  color: #ffffff;
}

.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;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.page-fishing-games .hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

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

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

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

.page-fishing-games .cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-fishing-games section {
  padding: 80px 0;
  border-bottom: 1px solid #e0e0e0;
}

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

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

.page-fishing-games .game-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px 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(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.page-fishing-games .game-card h3 {
  font-size: 1.6em;
  color: #002060;
  margin: 20px 0 10px;
  padding: 0 15px;
}

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

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

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

.page-fishing-games .game-card .card-button {
  display: inline-block;
  background: #FFD700;
  color: #002060;
  padding: 10px 25px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-fishing-games .game-card .card-button:hover {
  background: #e6c200;
}

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

.page-fishing-games .step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-fishing-games .step-item img {
  width: 100%;
  max-width: 250px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-fishing-games .step-item h3 a {
  color: #002060;
  text-decoration: none;
}

.page-fishing-games .step-item h3 a:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

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

.page-fishing-games .strategy-item {
  background: #ffffff;
  padding: 25px;
  border-left: 5px solid #002060;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-fishing-games .strategy-item:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
}

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

.page-fishing-games .strategy-item h3 a.item-link {
  color: #002060;
  text-decoration: none;
}

.page-fishing-games .strategy-item h3 a.item-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

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

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

.page-fishing-games .promo-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .promo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .promo-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

.page-fishing-games .promo-item h3 {
  font-size: 1.6em;
  color: #002060;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-fishing-games .promo-item h3 a.item-link {
  color: #002060;
  text-decoration: none;
}

.page-fishing-games .promo-item h3 a.item-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

/* Platform Features Section */
.page-fishing-games .platform-features {
  background-color: #fcfcfc;
}

.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: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-fishing-games .feature-item:hover {
  transform: translateY(-5px);
}

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

.page-fishing-games .feature-item h3 a.item-link {
  color: #002060;
  text-decoration: none;
}

.page-fishing-games .feature-item h3 a.item-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

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

.page-fishing-games .faq-list {
  margin-top: 40px;
}

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

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

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

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

.page-fishing-games .faq-question h3 a.question-link {
  color: #002060;
  text-decoration: none;
}

.page-fishing-games .faq-question h3 a.question-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

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

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
}

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

.page-fishing-games .faq-answer a {
  color: #002060;
  font-weight: bold;
}

/* Call to Action Bottom Section */
.page-fishing-games .cta-bottom-section {
  background: linear-gradient(135deg, #002060, #1a3a70);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-fishing-games .cta-bottom-section .section-title {
  color: #FFD700;
}

.page-fishing-games .cta-bottom-section .section-title::after {
  background-color: #FFD700;
}

.page-fishing-games .cta-bottom-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-fishing-games .cta-bottom-section p a {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games .hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games .hero-description {
    font-size: 1.2em;
  }
  .page-fishing-games .section-title {
    font-size: 2em;
  }
  .page-fishing-games .game-card img,
  .page-fishing-games .promo-item img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games .hero-section {
    padding: 40px 15px;
  }
  .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: 1em;
  }
  .page-fishing-games section {
    padding: 50px 0;
  }
  .page-fishing-games .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games .game-cards,
  .page-fishing-games .guide-steps,
  .page-fishing-games .strategy-grid,
  .page-fishing-games .promo-grid,
  .page-fishing-games .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games .game-card h3,
  .page-fishing-games .promo-item h3,
  .page-fishing-games .step-item h3,
  .page-fishing-games .strategy-item h3,
  .page-fishing-games .feature-item h3 {
    font-size: 1.3em;
  }
  .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: 1.5em;
  }
  .page-fishing-games .faq-answer {
    padding: 20px;
  }
  .page-fishing-games .cta-bottom-section {
    padding: 60px 15px;
  }
  .page-fishing-games .cta-bottom-section p {
    font-size: 1em;
  }
}