.page-fishing-games {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games__hero-section {
  position: relative;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  margin-bottom: 40px;
  overflow: hidden; /* Ensures content within does not overflow */
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for aesthetic */
  border-radius: 8px;
}

.page-fishing-games__hero-content {
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(13, 14, 18, 0.8) 0%, rgba(13, 14, 18, 1) 100%);
  margin-top: -80px; /* Pull content up slightly over the image for visual flow */
  position: relative;
  z-index: 1;
  border-radius: 0 0 8px 8px;
}

.page-fishing-games__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #FF8C1A 0%, #FFA53A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

.page-fishing-games__hero-button,
.page-fishing-games__game-button,
.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.page-fishing-games__hero-button:hover,
.page-fishing-games__game-button:hover,
.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-fishing-games__intro-section,
.page-fishing-games__game-showcase,
.page-fishing-games__features-section,
.page-fishing-games__cta-section {
  padding: 40px 0;
  margin-bottom: 40px;
  text-align: center;
}

.page-fishing-games__intro-title,
.page-fishing-games__showcase-title,
.page-fishing-games__features-title,
.page-fishing-games__cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #FF8C1A;
}

.page-fishing-games__intro-text {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
  color: #FFF3E6;
}

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

.page-fishing-games__game-card {
  background-color: #17191F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 1px solid #A84F0C;
}

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

.page-fishing-games__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #A84F0C;
}

.page-fishing-games__game-card h3 {
  font-size: 1.5rem;
  color: #FFA53A;
  margin: 20px 20px 10px 20px;
}

.page-fishing-games__game-card p {
  font-size: 1rem;
  color: #FFF3E6;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-fishing-games__game-button {
  margin: 0 20px 20px 20px;
  align-self: flex-start;
  width: calc(100% - 40px);
  text-align: center;
}

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

.page-fishing-games__feature-item {
  background-color: #17191F;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 176, 77, 0.3);
}

.page-fishing-games__feature-icon {
  width: 200px; /* Minimum size requirement */
  height: 150px; /* Minimum size requirement, maintaining aspect ratio */
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px #FFB04D);
}

.page-fishing-games__feature-heading {
  font-size: 1.6rem;
  color: #FFA53A;
  margin-bottom: 15px;
}

.page-fishing-games__feature-description {
  font-size: 1rem;
  color: #FFF3E6;
}

.page-fishing-games__cta-section {
  background-color: #17191F;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
  border: 1px solid #A84F0C;
}

.page-fishing-games__cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #FF8C1A 0%, #FFA53A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-fishing-games__cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-fishing-games__intro-title,
  .page-fishing-games__showcase-title,
  .page-fishing-games__features-title,
  .page-fishing-games__cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-content {
    margin-top: -60px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-fishing-games__hero-description {
    font-size: 1rem;
  }
  .page-fishing-games__hero-button,
  .page-fishing-games__game-button,
  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-fishing-games__intro-title,
  .page-fishing-games__showcase-title,
  .page-fishing-games__features-title,
  .page-fishing-games__cta-title {
    font-size: 1.8rem;
  }
  .page-fishing-games__intro-text {
    font-size: 0.95rem;
  }
  .page-fishing-games__game-grid,
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__game-image {
    height: 200px;
  }
  .page-fishing-games__feature-icon {
    width: 200px; /* Ensure minimum size */
    height: 150px;
  }
  .page-fishing-games__game-card h3 {
    font-size: 1.3rem;
  }
  .page-fishing-games__feature-heading {
    font-size: 1.4rem;
  }
  .page-fishing-games__cta-title {
    font-size: 2rem;
  }
  /* Mobile content area images anti-overflow */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
  }
  .page-fishing-games__feature-icon {
    max-width: 100%; /* Ensure this specific img also follows */
    height: auto;
    min-width: 200px; /* Maintain minimum size */
    min-height: 150px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-content {
    margin-top: -40px;
  }
  .page-fishing-games__hero-section,
  .page-fishing-games__intro-section,
  .page-fishing-games__game-showcase,
  .page-fishing-games__features-section,
  .page-fishing-games__cta-section {
    padding: 20px 0;
    margin-bottom: 20px;
  }
  .page-fishing-games__container {
    padding: 15px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-fishing-games__intro-title,
  .page-fishing-games__showcase-title,
  .page-fishing-games__features-title,
  .page-fishing-games__cta-title {
    font-size: 1.5rem;
  }
  .page-fishing-games__cta-section {
    padding: 40px 15px;
  }
  .page-fishing-games__cta-title {
    font-size: 1.8rem;
  }
}