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

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

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

.page-fishing-games section:nth-of-type(even) {
  background-color: #1a2a47;
}

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

.page-fishing-games h1 {
  font-size: 3.2em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-fishing-games h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

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

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

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

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

/* 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, #0A1931 0%, #1a2a47 100%);
  padding-top: 100px; /* Adjust for potential fixed header */
}

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

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

.page-fishing-games .hero-content p {
  max-width: 800px;
  margin: 20px auto 30px auto;
  font-size: 1.2em;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #E0B143;
  color: #0A1931;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(224, 177, 67, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-fishing-games .cta-button:hover {
  background: #f5d070;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(224, 177, 67, 0.6);
  color: #000;
}

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

.page-fishing-games .section-intro .intro-item {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .section-intro .intro-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games .section-intro .intro-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games .section-intro .intro-item p {
  font-size: 1em;
  color: #c0c0c0;
}

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

.page-fishing-games .game-card {
  background-color: #0A1931;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0B143;
}

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

.page-fishing-games .game-card img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-fishing-games .game-card p {
  font-size: 1em;
  color: #c0c0c0;
}

/* Section Guide */
.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-color: #1a2a47;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-fishing-games .step-item h3 a {
  color: #E0B143;
}

.page-fishing-games .step-item h3 a:hover {
  color: #f5d070;
}

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

.page-fishing-games .tips-section {
  background-color: #0A1931;
  padding: 40px;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.page-fishing-games .tips-section h3 {
  color: #E0B143;
  font-size: 2em;
  margin-bottom: 25px;
  text-align: center;
}

.page-fishing-games .tips-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-fishing-games .tips-section ul li {
  background-color: #1a2a47;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #d0d0d0;
  border-left: 5px solid #E0B143;
}

.page-fishing-games .tips-section ul li strong {
  color: #E0B143;
}

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

.page-fishing-games .promo-card {
  background-color: #0A1931;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0B143;
}

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

.page-fishing-games .promo-card img {
  width: 100%;
  max-width: 400px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games .promo-card h3 a {
  color: #E0B143;
}

.page-fishing-games .promo-card h3 a:hover {
  color: #f5d070;
}

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

.page-fishing-games .promo-call-to-action {
  margin-top: 40px;
  font-size: 1.2em;
  color: #d0d0d0;
}

.page-fishing-games .promo-call-to-action a {
  font-weight: bold;
}

/* Section Platform */
.page-fishing-games .section-platform {
  text-align: left;
}

.page-fishing-games .section-platform h2 {
  text-align: center;
}

.page-fishing-games .section-platform p {
  text-align: center;
  margin-bottom: 30px;
}

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

.page-fishing-games .platform-features ul li {
  background-color: #1a2a47;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #d0d0d0;
  border-left: 5px solid #E0B143;
  transition: transform 0.2s ease;
}

.page-fishing-games .platform-features ul li:hover {
  transform: translateX(5px);
}

.page-fishing-games .platform-features ul li strong {
  color: #E0B143;
}

/* FAQ Section */
.page-fishing-games .section-faq .faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #0A1931;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.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: #0A1931;
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Đủ cao để chứa nội dung */
  padding: 25px;
  border-top: 1px solid #2a3e61;
}

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

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

/* Section Conclusion */
.page-fishing-games .section-conclusion p {
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games h1 {
    font-size: 2.8em;
  }

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

  .page-fishing-games h3 {
    font-size: 1.6em;
  }

  .page-fishing-games .hero-image img {
    border-radius: 10px;
  }

  .page-fishing-games .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }

  .page-fishing-games .intro-grid,
  .page-fishing-games .game-cards-grid,
  .page-fishing-games .guide-steps,
  .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: 2.2em;
  }

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

  .page-fishing-games h3 {
    font-size: 1.4em;
  }

  .page-fishing-games p {
    font-size: 1em;
  }

  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }

  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-fishing-games .hero-image img {
    border-radius: 8px;
  }

  .page-fishing-games .intro-item,
  .page-fishing-games .game-card,
  .page-fishing-games .step-item,
  .page-fishing-games .promo-card {
    padding: 20px;
  }

  .page-fishing-games .game-card img,
  .page-fishing-games .promo-card img {
    height: 180px;
  }

  .page-fishing-games .tips-section {
    padding: 30px;
  }

  .page-fishing-games .tips-section h3 {
    font-size: 1.6em;
  }

  .page-fishing-games .platform-features ul {
    grid-template-columns: 1fr;
  }

  .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.8em;
  }

  .page-fishing-games .faq-answer {
    padding: 0 20px;
  }

  .page-fishing-games .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 1.8em;
  }

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

  .page-fishing-games h3 {
    font-size: 1.3em;
  }

  .page-fishing-games .hero-content p {
    font-size: 0.95em;
  }

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

  .page-fishing-games .intro-grid,
  .page-fishing-games .game-cards-grid,
  .page-fishing-games .guide-steps,
  .page-fishing-games .promo-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games .intro-item,
  .page-fishing-games .game-card,
  .page-fishing-games .step-item,
  .page-fishing-games .promo-card {
    padding: 15px;
  }

  .page-fishing-games .game-card img,
  .page-fishing-games .promo-card img {
    height: 150px;
  }

  .page-fishing-games .tips-section {
    padding: 20px;
  }

  .page-fishing-games .tips-section h3 {
    font-size: 1.4em;
  }

  .page-fishing-games .tips-section ul li {
    padding: 15px;
    font-size: 1em;
  }

  .page-fishing-games .faq-question {
    padding: 12px 15px;
  }

  .page-fishing-games .faq-question h3 {
    font-size: 1em;
  }

  .page-fishing-games .faq-toggle {
    font-size: 1.5em;
  }

  .page-fishing-games .faq-answer {
    padding: 0 15px;
  }

  .page-fishing-games .faq-item.active .faq-answer {
    padding: 15px;
  }
}