.page-fishing-games {
  padding-top: 10px; /* Small top padding for content below header */
  background-color: var(--background-color, #F4F7FB);
  color: var(--text-main-color, #1F2D3D);
}

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

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--primary-color, #2F6BFF);
  color: #FFFFFF;
  padding: 40px 0;
  margin-bottom: 40px;
}

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

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

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

.page-fishing-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-fishing-games__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.page-fishing-games__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 200px; /* Ensure buttons are not too small */
}

.page-fishing-games__button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__button--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fishing-games__button--secondary {
  background-color: #FFFFFF;
  color: var(--primary-color, #2F6BFF);
  border: 2px solid var(--primary-color, #2F6BFF);
}

.page-fishing-games__button--secondary:hover {
  background-color: var(--primary-color, #2F6BFF);
  color: #FFFFFF;
}

.page-fishing-games__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
  min-width: unset;
}

.page-fishing-games__button--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-fishing-games__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--text-main-color, #1F2D3D);
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  line-height: 1.3;
}

.page-fishing-games__features-section {
  padding: 60px 0;
  background-color: var(--background-color, #F4F7FB);
}

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

.page-fishing-games__feature-item {
  background-color: var(--card-bg-color, #FFFFFF);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-fishing-games__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--custom-color-1776249996415, #000000);
  margin-bottom: 10px;
}

.page-fishing-games__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-main-color, #1F2D3D);
}

.page-fishing-games__how-to-play-section {
  padding: 60px 0;
}

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

.page-fishing-games__step-item {
  background-color: var(--card-bg-color, #FFFFFF);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-top: 50px;
}

.page-fishing-games__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
  border: 4px solid var(--background-color, #F4F7FB);
}

.page-fishing-games__step-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--custom-color-1776249996415, #000000);
  margin-bottom: 10px;
}

.page-fishing-games__step-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-main-color, #1F2D3D);
  margin-bottom: 20px;
}

.page-fishing-games__cta-section {
  background: linear-gradient(90deg, var(--primary-color, #2F6BFF) 0%, var(--auxiliary-color, #6FA3FF) 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-fishing-games__cta-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-fishing-games__info-section {
  padding: 40px 0;
  background-color: var(--background-color, #F4F7FB);
}

.page-fishing-games__text {
  font-size: 1em;
  line-height: 1.7;
  color: var(--text-main-color, #1F2D3D);
  margin-bottom: 15px;
}

.page-fishing-games__text-link {
  color: var(--primary-color, #2F6BFF);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-fishing-games__text-link:hover {
  color: var(--auxiliary-color, #6FA3FF);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 2.5em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 30px 0;
  }
  .page-fishing-games__main-title {
    font-size: 2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__feature-grid, .page-fishing-games__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__cta-title {
    font-size: 1.8em;
  }
  .page-fishing-games__cta-description {
    font-size: 1em;
  }
  .page-fishing-games__hero-image,
  .page-fishing-games__feature-icon,
  .page-fishing-games__feature-item img,
  .page-fishing-games__step-item img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images maintain minimum size */
    min-height: 200px;
  }
  .page-fishing-games__feature-icon {
    max-width: 100%;
  }
  .page-fishing-games__container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 1.7em;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__cta-title {
    font-size: 1.5em;
  }
  .page-fishing-games__button--large {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-fishing-games__button {
    width: 90%;
  }
  .page-fishing-games__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5em;
  }
  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 15px;
  }
  .page-fishing-games__hero-content {
    padding: 0 15px;
  }
  .page-fishing-games__hero-buttons {
    gap: 10px;
  }
}

/* Ensure no image filter */
.page-fishing-games img {
  filter: none;
}

/* Content area image CSS size lower bound check */
.page-fishing-games img:not([class*="shared-"]) {
  min-width: 200px;
  min-height: 200px;
  width: auto; /* Allow width to be flexible, but respect min-width */
  height: auto; /* Allow height to be flexible, but respect min-height */
}