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

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

.page-fishing-games .section-title {
  font-size: 36px;
  color: #E44D26;
  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: #FFB800;
  border-radius: 2px;
}

.page-fishing-games .section-description {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #E44D26;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .cta-button:hover {
  background: #FFB800;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: #E44D26;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-fishing-games .btn-small:hover {
  background: #FFB800;
  transform: translateY(-1px);
}

.page-fishing-games .center-button {
  text-align: center;
  margin-top: 50px;
}

/* 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-color: #f0f0f0;
}

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

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

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

.page-fishing-games .hero-content p {
  font-size: 20px;
  color: #444;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-fishing-games .intro-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .intro-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-fishing-games .intro-item h3 {
  font-size: 24px;
  color: #E44D26;
  margin-bottom: 15px;
}

.page-fishing-games .intro-item p {
  color: #666;
}

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

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

.page-fishing-games .game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  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: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-fishing-games .game-card h3 {
  font-size: 22px;
  color: #E44D26;
  padding: 20px 20px 10px;
}

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

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

.page-fishing-games .game-card p {
  color: #666;
  padding: 0 20px 20px;
}

.page-fishing-games .game-card .btn-small {
  margin: 0 20px 20px;
  text-align: center;
  display: block;
}

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

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

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

.page-fishing-games .step-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-fishing-games .step-item h4 {
  font-size: 20px;
  color: #E44D26;
  margin-bottom: 15px;
}

.page-fishing-games .step-item p {
  color: #666;
}

.page-fishing-games .step-item p a {
  color: #E44D26;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games .step-item p a:hover {
  color: #FFB800;
}

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

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

.page-fishing-games .strategy-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-fishing-games .strategy-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-fishing-games .strategy-item h4 {
  font-size: 20px;
  color: #E44D26;
  margin-bottom: 15px;
}

.page-fishing-games .strategy-item p {
  color: #666;
}

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

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

.page-fishing-games .promo-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-fishing-games .promo-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-fishing-games .promo-item h4 {
  font-size: 20px;
  color: #E44D26;
  margin-bottom: 15px;
}

.page-fishing-games .promo-item p {
  color: #666;
}

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

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

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

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

.page-fishing-games .faq-question h3 {
  font-size: 18px;
  color: #333;
  margin: 0;
}

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

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

.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: #fdfdfd;
  border-top: none;
}

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

.page-fishing-games .faq-answer p {
  color: #555;
  margin-bottom: 0;
}

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

.page-fishing-games .faq-answer p a:hover {
  color: #FFB800;
}

/* Contact CTA Section */
.page-fishing-games .contact-cta-section {
  background: linear-gradient(135deg, #E44D26, #FFB800);
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games .contact-cta-section .section-title {
  color: #ffffff;
  margin-bottom: 20px;
}

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

.page-fishing-games .contact-cta-section .section-description {
  color: #ffffff;
  margin-bottom: 40px;
}

.page-fishing-games .contact-cta-section .cta-button {
  background: #ffffff;
  color: #E44D26;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .contact-cta-section .cta-button:hover {
  background: #f0f0f0;
  color: #FFB800;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games .hero-content h1 {
    font-size: 40px;
  }
  .page-fishing-games .section-title {
    font-size: 30px;
  }
  .page-fishing-games .hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games .hero-section {
    padding: 40px 15px;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 32px;
  }
  .page-fishing-games .hero-content p {
    font-size: 16px;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-fishing-games .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-fishing-games .section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-fishing-games .intro-section, .page-fishing-games .game-types-section, .page-fishing-games .guide-section, .page-fishing-games .strategy-section, .page-fishing-games .promotions-section, .page-fishing-games .faq-section, .page-fishing-games .contact-cta-section {
    padding: 50px 0;
  }
  .page-fishing-games .game-card img {
    height: 200px;
  }
  .page-fishing-games .faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 16px;
  }
  .page-fishing-games .faq-toggle {
    font-size: 20px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .hero-content h1 {
    font-size: 28px;
  }
  .page-fishing-games .section-title {
    font-size: 24px;
  }
  .page-fishing-games .cta-button {
    padding: 10px 25px;
    font-size: 14px;
  }
  .page-fishing-games .intro-grid, .page-fishing-games .game-cards-grid, .page-fishing-games .guide-steps, .page-fishing-games .strategy-grid, .page-fishing-games .promo-list {
    grid-template-columns: 1fr;
  }
}