.page-fishing-games {
  color: var(--secondary-color); /* #FFFFFF */
  background-color: #100224; /* Deep purple-black background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-fishing-games__hero-section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #100224;
}

.page-fishing-games__main-visual {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px; /* Constrain main visual width */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-fishing-games__hero-content {
  padding: 0 20px;
  max-width: 900px;
}

.page-fishing-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color); /* #FFFFFF */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* Responsive font size without fixed values */
  font-size: clamp(2rem, 5vw, 3.5rem); 
}

.page-fishing-games__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games__cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #ff9500, #ff5e3a); /* Orange-red gradient */
  color: var(--secondary-color); /* #FFFFFF */
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  text-align: center;
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color); /* #26A9E0 */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__section-description {
  font-size: 1.05rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: rgba(255, 255, 255, 0.8);
}

.page-fishing-games__about-section,
.page-fishing-games__game-showcase,
.page-fishing-games__how-to-play,
.page-fishing-games__faq-section {
  padding: 20px 20px 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-fishing-games__feature-item {
  background-color: rgba(38, 169, 224, 0.1); /* Lighter blue tint */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(38, 169, 224, 0.3);
}

.page-fishing-games__feature-title {
  font-size: 1.4rem;
  color: var(--primary-color); /* #26A9E0 */
  margin-bottom: 10px;
}

.page-fishing-games__feature-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.page-fishing-games__game-card {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-decoration: none;
  background-color: #1a0632; /* Slightly lighter than main background */
}

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

.page-fishing-games__game-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__secondary-cta {
  display: inline-block;
  background-color: var(--primary-color); /* #26A9E0 */
  color: #000000; /* Use black for contrast on blue */
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}

.page-fishing-games__secondary-cta:hover {
  background-color: #1f8ac7;
}

.page-fishing-games__main-cta {
  display: inline-block;
  background: linear-gradient(90deg, #ff9500, #ff5e3a); /* Orange-red gradient */
  color: var(--secondary-color); /* #FFFFFF */
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games__main-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-fishing-games__step-item {
  background-color: rgba(38, 169, 224, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(38, 169, 224, 0.2);
  position: relative;
  padding-top: 60px;
}

.page-fishing-games__step-number {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color); /* #26A9E0 */
  color: #000000; /* Black for contrast */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-title {
  font-size: 1.3rem;
  color: var(--primary-color); /* #26A9E0 */
  margin-bottom: 10px;
}

.page-fishing-games__step-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-fishing-games__faq-item {
  background-color: rgba(38, 169, 224, 0.05);
  border: 1px solid rgba(38, 169, 224, 0.2);
  border-radius: 10px;
  padding: 20px 25px;
}

.page-fishing-games__faq-question {
  font-size: 1.2rem;
  color: var(--secondary-color); /* #FFFFFF */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-fishing-games__faq-answer {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-question::after {
  transform: rotate(45deg);
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  margin-top: 10px;
}

.page-fishing-games__faq-answer a {
  color: var(--primary-color); /* #26A9E0 */
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 849px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem); 
  }

  .page-fishing-games__section-title {
    font-size: 1.8rem;
  }

  .page-fishing-games__hero-content {
    padding: 0 15px;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__game-card img {
    max-width: 100%;
    min-width: 200px;
    min- /* Adjust min height for mobile game cards */
  }

  .page-fishing-games__about-section,
  .page-fishing-games__game-showcase,
  .page-fishing-games__how-to-play,
  .page-fishing-games__faq-section {
    padding: 20px 15px 40px 15px;
  }
}

@media (max-width: 549px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-fishing-games__section-title {
    font-size: 1.6rem;
  }

  .page-fishing-games__cta-button,
  .page-fishing-games__main-cta {
    padding: 12px 20px;
    font-size: 1rem;
    min-width: unset;
    width: 100%;
    max-width: 280px;
  }

  .page-fishing-games__secondary-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-fishing-games__hero-section {
    padding-bottom: 30px;
  }
}

/* Ensure all images within .page-fishing-games are responsive and meet min size */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Specific rule to ensure content area images are not too small */
.page-fishing-games__game-card img,
.page-fishing-games__main-visual {
  min-width: 200px;
  min-height: 200px;
}

/* Contrast check for text on background */
.page-fishing-games__description, .page-fishing-games__feature-text, .page-fishing-games__step-text, .page-fishing-games__faq-answer {
  color: rgba(255, 255, 255, 0.8);
}

.page-fishing-games__faq-question {
  color: var(--secondary-color); /* #FFFFFF */
}

.page-fishing-games__cta-button, .page-fishing-games__main-cta {
  color: var(--secondary-color); /* #FFFFFF on gradient */
}

.page-fishing-games__secondary-cta {
  color: #000000; /* Black on primary blue */
}

.page-fishing-games__step-number {
  color: #000000; /* Black on primary blue */
}