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

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

.page-fishing-games .section-title {
  font-size: 36px;
  color: #FF4500;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  position: relative;
  font-weight: bold;
}

.page-fishing-games .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #007BFF;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FF4500;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-fishing-games .secondary-button {
  background: #007BFF;
  margin-left: 20px;
}

.page-fishing-games .secondary-button:hover {
  background: #0056b3;
}

/* 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, #FF4500, #007BFF);
  color: #ffffff;
  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;
}

.page-fishing-games .hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  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;
  border-radius: 12px;
}

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

.page-fishing-games .hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games .hero-actions {
  margin-top: 30px;
}

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

.page-fishing-games .section-intro p {
  font-size: 17px;
  margin-bottom: 15px;
  color: #555;
  text-align: justify;
}

/* Section Highlights */
.page-fishing-games .section-highlights {
  padding: 60px 0;
  background-color: #f0f4f7;
}

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

.page-fishing-games .highlight-item {
  background-color: #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 .highlight-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .highlight-item h3 {
  font-size: 22px;
  color: #FF4500;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games .highlight-item p {
  font-size: 16px;
  color: #666;
  text-align: justify;
}

.page-fishing-games .highlight-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto;
  display: block;
}

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

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

.page-fishing-games .game-list li {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-fishing-games .game-list li:hover {
  transform: translateY(-5px);
}

.page-fishing-games .game-list h3 {
  font-size: 20px;
  color: #FF4500;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games .game-list p {
  font-size: 15px;
  color: #666;
  text-align: justify;
}

.page-fishing-games .list-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-fishing-games .game-link {
  color: #FF4500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games .game-link:hover {
  color: #007BFF;
  text-decoration: underline;
}

/* Section How To Play */
.page-fishing-games .section-how-to-play {
  padding: 60px 0;
  background-color: #f0f4f7;
}

.page-fishing-games .play-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-fishing-games .play-steps li {
  background-color: #ffffff;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 80px; /* Space for step number */
}

.page-fishing-games .play-steps li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #007BFF;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .play-steps li h3 {
  font-size: 22px;
  color: #FF4500;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games .play-steps li p {
  font-size: 16px;
  color: #666;
  text-align: justify;
}

.page-fishing-games .step-link {
  color: #FF4500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games .step-link:hover {
  color: #007BFF;
  text-decoration: underline;
}

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

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

.page-fishing-games .promo-item {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-fishing-games .promo-item h3 {
  font-size: 22px;
  color: #FF4500;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games .promo-item p {
  font-size: 16px;
  color: #666;
  text-align: justify;
}

.page-fishing-games .promo-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 15px;
  display: block;
}

.page-fishing-games .promo-link {
  color: #FF4500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games .promo-link:hover {
  color: #007BFF;
  text-decoration: underline;
}

/* Section Tips & Strategies */
.page-fishing-games .section-tips-strategies {
  padding: 60px 0;
  background-color: #f0f4f7;
}

.page-fishing-games .strategy-list {
  list-style: none;
  padding: 0;
}

.page-fishing-games .strategy-list li {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games .strategy-list li h3 {
  font-size: 22px;
  color: #007BFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games .strategy-list li p {
  font-size: 16px;
  color: #666;
  text-align: justify;
}

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

.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: #FF4500;
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

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

.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: #f9f9f9;
  color: #555;
}

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

.page-fishing-games .faq-answer p {
  margin: 0;
  font-size: 16px;
  text-align: justify;
}

/* Section CTA Bottom */
.page-fishing-games .section-cta-bottom {
  padding: 80px 0;
  background: linear-gradient(45deg, #007BFF, #FF4500);
  color: #ffffff;
  text-align: center;
}

.page-fishing-games .section-cta-bottom .section-title {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 25px;
}

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

.page-fishing-games .section-cta-bottom p {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-fishing-games .large-button {
  padding: 18px 50px;
  font-size: 22px;
  background-color: #FFD700; /* Gold-like color for extra emphasis */
  color: #333;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games .small-text {
  font-size: 14px;
  margin-top: 30px;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games .hero-title {
    font-size: 40px;
  }
  .page-fishing-games .hero-description {
    font-size: 18px;
  }
  .page-fishing-games .section-title {
    font-size: 30px;
  }
  .page-fishing-games .highlight-grid, .page-fishing-games .game-list, .page-fishing-games .promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-fishing-games .play-steps li {
    padding-left: 60px;
  }
  .page-fishing-games .play-steps li::before {
    width: 40px;
    height: 40px;
    font-size: 16px;
    left: 15px;
    top: 20px;
  }
  .page-fishing-games .play-steps li h3 {
    font-size: 20px;
  }
  .page-fishing-games .section-cta-bottom .section-title {
    font-size: 32px;
  }
  .page-fishing-games .large-button {
    padding: 15px 40px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games .hero-title {
    font-size: 32px;
  }
  .page-fishing-games .hero-description {
    font-size: 16px;
  }
  .page-fishing-games .hero-actions .cta-button {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  .page-fishing-games .secondary-button {
    margin-left: 0;
  }
  .page-fishing-games .section-title {
    font-size: 26px;
  }
  .page-fishing-games .highlight-item, .page-fishing-games .game-list li, .page-fishing-games .promo-item, .page-fishing-games .strategy-list li {
    padding: 20px;
  }
  .page-fishing-games .highlight-item h3, .page-fishing-games .game-list h3, .page-fishing-games .promo-item h3, .page-fishing-games .strategy-list li h3 {
    font-size: 18px;
  }
  .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-answer {
    padding: 0 20px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-fishing-games .section-cta-bottom .section-title {
    font-size: 28px;
  }
  .page-fishing-games .section-cta-bottom p {
    font-size: 18px;
  }
  .page-fishing-games .large-button {
    padding: 12px 30px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .hero-title {
    font-size: 28px;
  }
  .page-fishing-games .hero-description {
    font-size: 15px;
  }
  .page-fishing-games .section-title {
    font-size: 24px;
  }
  .page-fishing-games .highlight-grid, .page-fishing-games .game-list, .page-fishing-games .promo-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .play-steps li {
    padding-left: 15px;
    padding-top: 60px;
  }
  .page-fishing-games .play-steps li::before {
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
  }
  .page-fishing-games .section-cta-bottom .section-title {
    font-size: 24px;
  }
  .page-fishing-games .section-cta-bottom p {
    font-size: 16px;
  }
  .page-fishing-games .large-button {
    width: 90%;
  }
}