.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A202C; /* Primary dark background */
}

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

.page-fishing-games .section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary gold for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

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

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

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

.page-fishing-games .cta-button, .page-fishing-games .secondary-button, .page-fishing-games .card-button, .page-fishing-games .step-button, .page-fishing-games .promo-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #1A202C;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-fishing-games .cta-button:hover, .page-fishing-games .secondary-button:hover, .page-fishing-games .card-button:hover, .page-fishing-games .step-button:hover, .page-fishing-games .promo-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
  color: #000;
}

.page-fishing-games .secondary-button {
  background: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games .secondary-button:hover {
  background: #FFD700;
  color: #1A202C;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

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

/* Hero Banner */
.page-fishing-games .hero-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-fishing-games .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-fishing-games .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-fishing-games .hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 900px;
  padding: 20px;
}

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

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

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

.page-fishing-games .intro-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-fishing-games .intro-text {
  flex: 1;
}

.page-fishing-games .intro-image {
  flex: 1;
  text-align: center;
}

.page-fishing-games .intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Game Cards */
.page-fishing-games .section-games-list {
  padding: 60px 0;
  background-color: #1A202C;
}

.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: #2A313C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-fishing-games .card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.page-fishing-games .card-content h3 a {
  color: #FFD700;
}

.page-fishing-games .card-content p {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games .card-button {
  width: 100%;
  margin-top: auto;
  padding: 10px 20px;
  font-size: 1em;
}

.page-fishing-games .more-games-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.2em;
  color: #FFD700;
}

/* Advantages Section */
.page-fishing-games .section-advantages {
  padding: 60px 0;
  background-color: #2A313C;
}

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

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

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

.page-fishing-games .advantage-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-fishing-games .advantage-item h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games .advantage-item p {
  font-size: 0.95em;
}

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

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

.page-fishing-games .step-item {
  background-color: #2A313C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games .step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px auto;
  object-fit: contain;
}

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

.page-fishing-games .step-item p {
  font-size: 1em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games .step-button {
  width: 100%;
  margin-top: auto;
  padding: 10px 20px;
  font-size: 1em;
}

/* Tips Section */
.page-fishing-games .section-tips {
  padding: 60px 0;
  background-color: #2A313C;
}

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

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

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

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

.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-item {
  background-color: #2A313C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games .promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-fishing-games .promo-item h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin: 20px 20px 10px 20px;
}

.page-fishing-games .promo-item p {
  font-size: 0.95em;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-fishing-games .promo-button {
  width: calc(100% - 40px);
  margin: 0 20px 20px 20px;
  padding: 10px 20px;
  font-size: 1em;
}

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

.page-fishing-games .faq-list {
  margin-top: 40px;
}

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

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

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

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

.page-fishing-games .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  margin-left: 15px;
  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;
  background: #3A455A;
  padding: 0 25px;
}

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

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

/* Contact Section */
.page-fishing-games .section-contact {
  padding: 60px 0;
  background-color: #1A202C;
  text-align: center;
}

.page-fishing-games .contact-info {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-fishing-games .contact-info p {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.page-fishing-games .contact-link {
  font-weight: bold;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games .hero-content h1 {
    font-size: 2.8em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games .intro-grid {
    flex-direction: column;
  }
  .page-fishing-games .intro-image {
    margin-top: 30px;
  }
  .page-fishing-games .advantage-items-grid, .page-fishing-games .guide-steps, .page-fishing-games .game-cards-grid, .page-fishing-games .promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games .section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-fishing-games .hero-banner {
    height: 400px;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 2.2em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fishing-games .game-card h3 {
    font-size: 1.3em;
  }
  .page-fishing-games .advantage-item h3 {
    font-size: 1.2em;
  }
  .page-fishing-games .step-item h3 {
    font-size: 1.3em;
  }
  .page-fishing-games .promo-item h3 {
    font-size: 1.2em;
  }
  .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 .hero-banner {
    height: 300px;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 1.8em;
  }
  .page-fishing-games .hero-content p {
    font-size: 0.9em;
  }
  .page-fishing-games .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-fishing-games .section-title {
    font-size: 1.8em;
  }
  .page-fishing-games .intro-image img {
    border-radius: 10px;
  }
  .page-fishing-games .advantage-icon, .page-fishing-games .step-icon {
    width: 70px;
    height: 70px;
  }
  .page-fishing-games .promo-image {
    height: 150px;
  }
}