.page-fishing-games {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 15px 40px;
  color: #FFFFFF;
  font-family: Arial, sans-serif;
  background-color: #0a0909; /* Deep background to complement main color */
}

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

.page-fishing-games__hero-section {
  padding: 60px 0;
  text-align: center;
  background-color: #26A9E0; /* Main brand color for hero */
  border-radius: 12px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__main-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.page-fishing-games__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0F7FA;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 150px;
}

.page-fishing-games__btn--primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #FFFFFF;
}

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

.page-fishing-games__btn--secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn--secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-fishing-games__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  position: relative;
}

.page-fishing-games__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #EA7C07;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-fishing-games__about-section, 
.page-fishing-games__features-section, 
.page-fishing-games__guide-section, 
.page-fishing-games__cta-section, 
.page-fishing-games__faq-section {
  padding: 40px 0;
  margin-bottom: 30px;
  background-color: #1a1a1a; /* Slightly lighter dark background for sections */
  border-radius: 12px;
}

.page-fishing-games__content-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.page-fishing-games__text-content, 
.page-fishing-games__image-content {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__text-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-fishing-games__image-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  filter: none; /* Ensure no CSS filter is applied */
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__features-section ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-fishing-games__feature-item {
  background-color: #0d0d0d;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-fishing-games__feature-title {
  font-size: 1.3rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__feature-item p {
  font-size: 0.95rem;
  color: #B0B0B0;
  line-height: 1.6;
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
}

.page-fishing-games__guide-list li {
  background-color: #0d0d0d;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #26A9E0;
  color: #E0E0E0;
  font-size: 1rem;
  line-height: 1.6;
}

.page-fishing-games__guide-list li strong {
  color: #EA7C07;
}

.page-fishing-games__cta-section .page-fishing-games__cta-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-fishing-games__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-fishing-games__faq-item {
  background-color: #0d0d0d;
  border-radius: 10px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: block;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  position: relative;
  background-color: #0d0d0d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: #151515;
}

.page-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #EA7C07;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #B0B0B0;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-fishing-games__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__text-content, 
  .page-fishing-games__image-content {
    min-width: unset;
    width: 100%;
  }
  .page-fishing-games__guide-section .page-fishing-games__content-wrapper {
    flex-direction: column-reverse; /* Guide section image above text on mobile */
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 40px 0;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
  }
  .page-fishing-games__subtitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-fishing-games__btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
    margin-bottom: 30px;
  }
  .page-fishing-games__image-content img {
    max-width: 100%;
    height: auto;
  }
  .page-fishing-games__features-section ul {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__faq-question {
    font-size: 1rem;
  }
  .page-fishing-games__faq-question::after {
    font-size: 1.2rem;
  }
  .page-fishing-games__faq-answer {
    font-size: 0.9rem;
  }
}

@media (max-width: 549px) {
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn {
    width: 100%;
    max-width: 280px;
  }
  .page-fishing-games__text-content p {
    text-align: left;
  }
}