.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ nhạt trên nền tối */
  background-color: #1A1A1A; /* Nền chính màu đen xám */
}

.page-fishing-games h1, .page-fishing-games h2, .page-fishing-games h3, .page-fishing-games h4 {
  color: #FFD700; /* Tiêu đề màu vàng */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-fishing-games h1 {
  font-size: 3em;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

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

.page-fishing-games p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #D0D0D0;
}

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

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

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

.page-fishing-games section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

/* 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;
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
}

.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: 8px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games .hero-content h1 {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games .hero-content p {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

/* Section Intro & Content Images */
.page-fishing-games .section-intro, .page-fishing-games .section-safety-support {
  background-color: #222222;
}

.page-fishing-games .content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .content-image.right-aligned {
  float: right;
  width: 45%;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-fishing-games .section-guide .content-image.right-aligned {
    width: 45%;
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.page-fishing-games .game-card {
  background-color: #333333;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-fishing-games .game-card h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

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

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

/* Lists */
.page-fishing-games ol, .page-fishing-games ul {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #D0D0D0;
}

.page-fishing-games ol li, .page-fishing-games ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1.1em;
}

.page-fishing-games ol li strong, .page-fishing-games ul li strong {
  color: #FFD700;
}

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

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

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

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

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

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

.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: #2A2A2A;
  color: #D0D0D0;
  border-radius: 0 0 8px 8px;
}

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

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

/* Blog Section */
.page-fishing-games .section-blog {
  background-color: #222222;
}

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

.page-fishing-games .blog-card {
  background-color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.page-fishing-games .blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

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

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

.page-fishing-games .blog-card .read-more {
  display: inline-block;
  padding: 10px 20px 15px;
  color: #FFD700;
  font-weight: bold;
}

.page-fishing-games .blog-card .read-more:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games .hero-content h1 {
    font-size: 2.8em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
  }
  .page-fishing-games .content-image.right-aligned {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-fishing-games .hero-content h1 {
    font-size: 2.2em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games h3 {
    font-size: 1.3em;
  }
  .page-fishing-games p, .page-fishing-games ol li, .page-fishing-games ul li {
    font-size: 1em;
  }
  .page-fishing-games .game-grid, .page-fishing-games .blog-grid {
    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.5em;
  }
  .page-fishing-games .faq-answer {
    padding: 0 20px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.5em;
  }
  .page-fishing-games .hero-section {
    padding: 40px 15px;
  }
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games .cta-button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}