.page-fishing-games {
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
}

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

.page-fishing-games__hero-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px #A5C4FF; /* Glow */
}

.page-fishing-games__hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px #A5C4FF;
}

.page-fishing-games__introduction-section,
.page-fishing-games__game-showcase-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__cta-bottom-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 30px;
}

.page-fishing-games__section-title--gradient {
  background: linear-gradient(to right, #2F6BFF, #6FA3FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-fishing-games__section-description {
  font-size: 1rem;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__game-tile {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__game-tile img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-fishing-games__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games__feature-item {
  background-color: #F4F7FB;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
}

.page-fishing-games__feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 10px;
}

.page-fishing-games__feature-item p {
  font-size: 0.95rem;
  color: #1F2D3D;
}

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

.page-fishing-games__step-card {
  background-color: #F4F7FB;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
  position: relative;
  padding-top: 50px;
}

.page-fishing-games__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 10px;
}

.page-fishing-games__step-card p {
  font-size: 0.9rem;
  color: #1F2D3D;
}

.page-fishing-games__cta-bottom-section {
  text-align: center;
  margin-bottom: 60px;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px #A5C4FF; /* Glow */
  margin-top: 20px;
}

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

/* Responsive Design */
@media (max-width: 849px) {
  .page-fishing-games__hero-section {
    margin-bottom: 30px;
    padding: 15px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

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

  .page-fishing-games__hero-cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-fishing-games__introduction-section,
  .page-fishing-games__game-showcase-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__cta-bottom-section {
    padding: 30px 15px;
    margin: 30px auto;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    margin-bottom: 25px;
  }

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

  .page-fishing-games__game-tile img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }

  .page-fishing-games__feature-list,
  .page-fishing-games__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__feature-item,
  .page-fishing-games__step-card {
    padding: 20px;
  }

  .page-fishing-games__step-number {
    top: -15px;
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }

  .page-fishing-games__cta-button {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 549px) {
  .page-fishing-games {
    padding-left: 12px;
    padding-right: 12px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

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

  .page-fishing-games__hero-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-fishing-games__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .page-fishing-games__hero-cta-button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .page-fishing-games__introduction-section,
  .page-fishing-games__game-showcase-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__cta-bottom-section {
    padding: 20px 10px;
    margin: 20px auto;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    margin-bottom: 20px;
  }

  .page-fishing-games__section-description {
    font-size: 0.9rem;
  }

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

  .page-fishing-games__game-tile img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Still enforce minimum size */
    min-height: 200px;
  }

  .page-fishing-games__feature-item,
  .page-fishing-games__step-card {
    padding: 15px;
  }

  .page-fishing-games__feature-title {
    font-size: 1.1rem;
  }

  .page-fishing-games__step-title {
    font-size: 1.1rem;
  }

  .page-fishing-games__cta-button {
    width: 100%;
    max-width: 280px;
    margin: 20px auto 0 auto;
  }
}