.page-fishing-games {
  --primary-color: #1a2a3a;
  --secondary-color: #ffcc00;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121e2c;
  --bg-light: #f4f7f6;
  --border-color: #3a4a5a;
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--bg-dark);
  line-height: 1.6;
}

.page-fishing-games a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games a:hover {
  color: #ffd700; /* Slightly brighter gold on hover */
}

.page-fishing-games h1, .page-fishing-games h2, .page-fishing-games h3, .page-fishing-games h4 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-fishing-games h3 {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

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

.page-fishing-games__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.page-fishing-games__hero {
  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, var(--primary-color), var(--bg-dark));
}

.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 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 {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-fishing-games__cta-button:hover {
  background: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-fishing-games__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
  margin-top: 20px;
}

.page-fishing-games__intro p, .page-fishing-games__game-variety p, .page-fishing-games__guide p, .page-fishing-games__promotions p, .page-fishing-games__why-choose p, .page-fishing-games__conclusion p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.page-fishing-games__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-fishing-games__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games ul, .page-fishing-games ol {
  margin-left: 25px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.page-fishing-games ul li, .page-fishing-games ol li {
  margin-bottom: 10px;
}

.page-fishing-games__faq .faq-list {
  margin-top: 30px;
}

.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--primary-color);
}

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

.page-fishing-games .faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--text-light);
}

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

.page-fishing-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  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: #213142;
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 0;
  }

  .page-fishing-games h1 {
    font-size: 2em;
  }

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

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

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

  .page-fishing-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

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

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

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

  .page-fishing-games .faq-item.active .faq-answer {
    padding: 12px 20px 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.2em;
  }

  .page-fishing-games__hero-content p {
    font-size: 0.9em;
  }

  .page-fishing-games__cta-button {
    padding: 10px 25px;
    font-size: 14px;
  }

  .page-fishing-games ul, .page-fishing-games ol {
    margin-left: 15px;
  }
}