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

.page-fishing-games .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-fishing-games section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games h1,
.page-fishing-games h2 {
  color: #0A1931;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-fishing-games h2 {
  font-size: 2.2em;
}

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

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

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: #FFD700;
  color: #0A1931;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-fishing-games .cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .cta-button.secondary {
  background: #0A1931;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-fishing-games .cta-button.secondary:hover {
  background: #1a3050;
  border-color: #e6c200;
}

.page-fishing-games .cta-button.small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-fishing-games .cta-button.large {
  padding: 18px 45px;
  font-size: 1.3em;
}

/* 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: 80px 20px 60px;
  background-color: #0A1931;
  overflow: hidden;
}

.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;
  z-index: 1;
}

.page-fishing-games .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.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%;
  color: #ffffff;
}

.page-fishing-games .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-fishing-games .hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-fishing-games .intro-section p {
  max-width: 800px;
  margin: 0 auto 20px;
}

/* Game Types Section */
.page-fishing-games .game-types {
  background-color: #f0f4f8;
  padding: 60px 0;
}

.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: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 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(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

/* Gameplay Guide Section */
.page-fishing-games .gameplay-guide {
  background-color: #ffffff;
  padding: 60px 0;
}

.page-fishing-games .gameplay-guide ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
}

.page-fishing-games .gameplay-guide li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  position: relative;
  padding-left: 50px;
  font-size: 1.1em;
  color: #444;
}

.page-fishing-games .gameplay-guide li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-color: #FFD700;
  color: #0A1931;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-fishing-games .gameplay-guide li strong {
  color: #0A1931;
}

/* Benefits Section */
.page-fishing-games .benefits-section {
  background-color: #0A1931;
  color: #ffffff;
  padding: 60px 0;
}

.page-fishing-games .benefits-section h2 {
  color: #FFD700;
}

.page-fishing-games .benefits-section p {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-fishing-games .benefit-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

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

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

.page-fishing-games .benefit-item p {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 0;
}

/* Promotions Section */
.page-fishing-games .promotions-section {
  background-color: #f0f4f8;
  padding: 60px 0;
}

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

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

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

.page-fishing-games .promo-item h3 .card-link {
  color: #0A1931;
  text-decoration: none;
}

.page-fishing-games .promo-item h3 .card-link:hover {
  color: #FFD700;
}

.page-fishing-games .promo-item p {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-fishing-games .promo-note {
  margin-top: 40px;
  font-style: italic;
  color: #777777;
}

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

.page-fishing-games .faq-items {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.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 20px;
  background: #f9f9f9;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-fishing-games .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #0A1931;
}

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

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

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #ffffff;
}

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

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

/* Final CTA Section */
.page-fishing-games .cta-final {
  background: linear-gradient(135deg, #0A1931, #1a3050);
  color: #ffffff;
  padding: 80px 0;
}

.page-fishing-games .cta-final h2 {
  color: #FFD700;
  font-size: 2.5em;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games h1 {
    font-size: 2.2em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games h3 {
    font-size: 1.3em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games .game-cards,
  .page-fishing-games .benefits-grid,
  .page-fishing-games .promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.6em;
  }
  .page-fishing-games h3 {
    font-size: 1.2em;
  }
  .page-fishing-games .hero-section {
    padding: 60px 15px 40px;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-fishing-games .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-fishing-games .cta-button {
    width: 80%;
    margin: 5px auto;
  }
  .page-fishing-games .gameplay-guide li {
    padding-left: 40px;
    font-size: 1em;
  }
  .page-fishing-games .gameplay-guide li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .page-fishing-games .benefits-grid,
  .page-fishing-games .promo-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .benefit-item img {
    max-width: 200px;
  }
  .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 .faq-answer {
    padding: 15px;
  }
  .page-fishing-games .cta-final h2 {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 1.5em;
  }
  .page-fishing-games h2 {
    font-size: 1.4em;
  }
  .page-fishing-games .cta-button.large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-fishing-games .hero-image {
    margin-bottom: 20px;
  }
  .page-fishing-games .hero-content p {
    font-size: 0.9em;
  }
  .page-fishing-games .game-card img {
    height: 180px;
  }
}