.page-fishing-games {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for internal content */
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-fishing-games__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games__hero-content {
  text-align: center;
  max-width: 800px;
}

.page-fishing-games__main-title {
  font-size: clamp(2em, 3.5vw, 2.8em);
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-fishing-games__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.6);
}

.page-fishing-games__games-showcase,
.page-fishing-games__why-choose,
.page-fishing-games__how-to-play {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-fishing-games__section-description {
  font-size: 1.05em;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__game-card {
  background-color: #F4F7FB;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #D6E2FF;
}

.page-fishing-games__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #000000;
  margin: 15px 10px 10px 10px;
}

.page-fishing-games__card-title a {
  color: #000000;
  text-decoration: none;
}

.page-fishing-games__card-title a:hover {
  color: #2F6BFF;
}

.page-fishing-games__card-text {
  font-size: 0.95em;
  color: #1F2D3D;
  padding: 0 15px 15px 15px;
  flex-grow: 1;
}

.page-fishing-games__card-link {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  background: #2F6BFF;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-fishing-games__card-link:hover {
  background-color: #6FA3FF;
}

.page-fishing-games__features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-fishing-games__feature-item {
  background-color: #F4F7FB;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-fishing-games__feature-item img {
  
  
  object-fit: contain;
  margin-bottom: 15px;
}

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

.page-fishing-games__feature-description {
  font-size: 0.95em;
  color: #1F2D3D;
}

.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-fishing-games__step-item {
  background-color: #F4F7FB;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #2F6BFF;
  border-radius: 5px;
  font-size: 1.05em;
  color: #1F2D3D;
}

.page-fishing-games__step-item strong {
  color: #000000;
}

.page-fishing-games__play-advice {
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
  color: #000000;
  margin-bottom: 30px;
}

.page-fishing-games__cta-button--bottom {
  margin-top: 20px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 15px;
    margin: 0 auto 30px auto;
  }

  .page-fishing-games__main-title {
    font-size: 2em;
  }

  .page-fishing-games__hero-description {
    font-size: 1em;
  }

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

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

  .page-fishing-games__features-list {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__game-card img,
  .page-fishing-games__feature-item img {
    max-width: 100%;
    height: auto;
  }

  .page-fishing-games__games-showcase,
  .page-fishing-games__why-choose,
  .page-fishing-games__how-to-play {
    margin: 30px auto;
    padding: 15px;
  }

  .page-fishing-games__game-card img,
  .page-fishing-games__feature-item img,
  .page-fishing-games__hero-image-wrapper img {
    max-width: 100%;
    height: auto;
  }

  .page-fishing-games__games-showcase img,
  .page-fishing-games__why-choose img,
  .page-fishing-games__how-to-play img {
    max-width: 100%;
    height: auto;
  }
}