.page-games-slots-fishing-game {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #1A202C; /* Main background color */
}

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

.page-games-slots-fishing-game__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-games-slots-fishing-game__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

.page-games-slots-fishing-game__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #D0D0D0;
}

.page-games-slots-fishing-game__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  cursor: pointer;
}

.page-games-slots-fishing-game__btn--primary {
  background-color: #FFD700; /* Accent color for primary button */
  color: #1A202C; /* Dark text on accent background */
  border: none;
}

.page-games-slots-fishing-game__btn--primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-games-slots-fishing-game__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Accent text on dark background */
  border: 2px solid #FFD700;
}

.page-games-slots-fishing-game__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-games-slots-fishing-game__btn--full-width {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  display: block;
}

.page-games-slots-fishing-game__btn--lg {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-games-slots-fishing-game__content-section {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-games-slots-fishing-game__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-games-slots-fishing-game__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-games-slots-fishing-game__subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Accent color for subsection titles */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-games-slots-fishing-game__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-games-slots-fishing-game__list,
.page-games-slots-fishing-game__numbered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #D0D0D0;
}

.page-games-slots-fishing-game__numbered-list {
  list-style-type: decimal;
}

.page-games-slots-fishing-game__list li,
.page-games-slots-fishing-game__numbered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-games-slots-fishing-game p {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #E0E0E0;
}

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

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

.page-games-slots-fishing-game .highlight {
  color: #FFD700;
}

.page-games-slots-fishing-game__faq-item {
  background-color: #2A313E; /* Slightly lighter dark background for FAQ items */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-games-slots-fishing-game__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-games-slots-fishing-game__faq-answer {
  font-size: 1.05em;
  color: #D0D0D0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-games-slots-fishing-game__hero-title {
    font-size: 2.5em;
  }
  .page-games-slots-fishing-game__hero-subtitle {
    font-size: 1.2em;
  }
  .page-games-slots-fishing-game__section-title {
    font-size: 2em;
  }
  .page-games-slots-fishing-game__subsection-title {
    font-size: 1.5em;
  }
  .page-games-slots-fishing-game__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-games-slots-fishing-game__list,
  .page-games-slots-fishing-game__numbered-list,
  .page-games-slots-fishing-game p {
    font-size: 1em;
  }
  .page-games-slots-fishing-game__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-games-slots-fishing-game__hero-title {
    font-size: 2em;
  }
  .page-games-slots-fishing-game__hero-subtitle {
    font-size: 1em;
  }
  .page-games-slots-fishing-game__btn--full-width {
    max-width: 90%;
  }
  .page-games-slots-fishing-game__btn {
    display: block;
    margin: 10px auto;
  }
}