.page-games-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #0A1931; /* Primary dark background */
}

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

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

.page-games-fishing-games__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Secondary gold for titles */
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-games-fishing-games__text-center {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  color: #B0C4DE; /* Lighter text for better contrast */
}

.page-games-fishing-games__keyword {
  color: #FFD700;
  font-weight: bold;
}

.page-games-fishing-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1em;
  border: none;
}

.page-games-fishing-games__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #0A1931; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-games-fishing-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-games-fishing-games__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-games-fishing-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-games-fishing-games__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-games-fishing-games__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

/* Hero Section */
.page-games-fishing-games__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%);
  padding: 80px 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-games-fishing-games__hero > .page-games-fishing-games__container {
  position: relative;
  z-index: 1;
}

.page-games-fishing-games__hero-title {
  font-size: 4em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-games-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F8FF; /* AliceBlue for readability */
}

.page-games-fishing-games__hero-actions .page-games-fishing-games__btn {
  margin: 0 10px;
}

/* Why MM99 Section */
.page-games-fishing-games__why-mm99 {
  background-color: #0A1931;
}

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

.page-games-fishing-games__feature-item {
  background-color: #1A2E47; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid #FFD70033; /* Subtle gold border */
}

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

.page-games-fishing-games__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

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

.page-games-fishing-games__feature-item a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-fishing-games__feature-item a:hover {
  text-decoration: underline;
}

/* Popular Games Section */
.page-games-fishing-games__popular-games {
  background-color: #0A1931;
}

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

.page-games-fishing-games__game-card {
  background-color: #1A2E47;
  border-radius: 10px;
  overflow: hidden;
  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 #FFD70033;
}

.page-games-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-games-fishing-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #FFD700;
}

.page-games-fishing-games__game-title {
  font-size: 1.5em;
  color: #FFD700;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-games-fishing-games__game-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-fishing-games__game-title a:hover {
  text-decoration: underline;
}

.page-games-fishing-games__game-description {
  font-size: 0.95em;
  color: #B0C4DE;
  padding: 0 15px 20px;
}

.page-games-fishing-games__game-card .page-games-fishing-games__btn {
  margin-bottom: 20px;
}

/* How to Join Section */
.page-games-fishing-games__how-to-join {
  background-color: #0A1931;
}

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

.page-games-fishing-games__step-item {
  background-color: #1A2E47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  border: 1px solid #FFD70033;
}

.page-games-fishing-games__step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: #FFD700;
  color: #0A1931;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-games-fishing-games__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-games-fishing-games__step-item p {
  font-size: 1em;
  color: #B0C4DE;
  margin-bottom: 20px;
}

.page-games-fishing-games__app-qr-code {
  width: 150px;
  height: 150px;
  display: block;
  margin: 20px auto;
  border: 5px solid #FFD700;
  border-radius: 5px;
}

/* Tips Section */
.page-games-fishing-games__tips {
  background-color: #0A1931;
}

.page-games-fishing-games__list {
  list-style: none;
  padding: 0;
  margin: 50px auto 0;
  max-width: 900px;
  text-align: left;
}

.page-games-fishing-games__list li {
  background-color: #1A2E47;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.05em;
  color: #E0E0E0;
  border-left: 5px solid #FFD700;
}

.page-games-fishing-games__list li strong {
  color: #FFD700;
}

.page-games-fishing-games__list--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-games-fishing-games__list--inline li {
  background: none;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0;
}

/* Promotions Section */
.page-games-fishing-games__promotions {
  background-color: #0A1931;
}

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

.page-games-fishing-games__promo-card {
  background-color: #1A2E47;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #FFD70033;
}

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

.page-games-fishing-games__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #FFD700;
}

.page-games-fishing-games__promo-title {
  font-size: 1.5em;
  color: #FFD700;
  margin: 20px 0 10px;
  padding: 0 15px;
}

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

.page-games-fishing-games__promo-card .page-games-fishing-games__btn {
  margin-bottom: 20px;
}

.page-games-fishing-games__promo-call-to-action {
  margin-top: 60px;
}

.page-games-fishing-games__promo-call-to-action p {
  font-size: 1.2em;
  color: #F0F8FF;
  margin-bottom: 30px;
}

/* Support Section */
.page-games-fishing-games__support {
  background-color: #0A1931;
}

.page-games-fishing-games__support-channels {
  margin-top: 30px;
  margin-bottom: 40px;
}

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

.page-games-fishing-games__support-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
}

/* FAQ Section */
.page-games-fishing-games__faq {
  background-color: #0A1931;
}

.page-games-fishing-games__faq-items {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-fishing-games__faq-item {
  background-color: #1A2E47;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #FFD70033;
}

.page-games-fishing-games__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  position: relative;
  text-align: left;
  margin: 0;
  background-color: #1A2E47;
  transition: background-color 0.3s ease;
}

.page-games-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-games-fishing-games__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-games-fishing-games__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  text-align: left;
}

.page-games-fishing-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-games-fishing-games__faq-answer p {
  color: #B0C4DE;
  font-size: 1em;
}

.page-games-fishing-games__faq-answer a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-fishing-games__faq-answer a:hover {
  text-decoration: underline;
}

/* Call to Action Section */
.page-games-fishing-games__cta {
  background: linear-gradient(90deg, #0A1931, #1A2E47);
  padding: 80px 0;
  color: #FFFFFF;
}

.page-games-fishing-games__cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F8FF;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-fishing-games__hero-title {
    font-size: 3em;
  }
  .page-games-fishing-games__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-games-fishing-games__hero {
    padding: 60px 0;
  }
  .page-games-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-games-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-games-fishing-games__hero-actions .page-games-fishing-games__btn {
    display: block;
    margin: 15px auto;
    width: 80%;
    max-width: 300px;
  }
  .page-games-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-games-fishing-games__features-grid, .page-games-fishing-games__game-grid, .page-games-fishing-games__steps-grid, .page-games-fishing-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-games-fishing-games__faq-question {
    font-size: 1.1em;
  }
  .page-games-fishing-games__faq-answer {
    font-size: 0.9em;
  }
  .page-games-fishing-games__list li {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-games-fishing-games__hero-title {
    font-size: 2em;
  }
  .page-games-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-games-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-games-fishing-games__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-games-fishing-games__step-number {
    left: 10px;
  }
}