.page-fishing-games {
  background-color: #F4F7FB;
  color: #1F2D3D;
  padding-top: 10px; /* Small top padding, relying on body for --header-offset */
}

.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;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-fishing-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
  font-size: clamp(2em, 4vw, 3.2em); /* Using clamp for responsive H1 */
}

.page-fishing-games__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.3);
  min-width: 150px; /* Ensure button is not too small */
}

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

.page-fishing-games__cta-button--small {
  padding: 12px 25px;
  font-size: 0.95em;
}

.page-fishing-games__cta-button--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-fishing-games__section {
  padding: 60px 0;
  margin-bottom: 40px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__section:last-of-type {
  margin-bottom: 0;
}

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

.page-fishing-games__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-fishing-games__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-fishing-games__text-content {
  flex: 1;
  line-height: 1.7;
  color: #1F2D3D; /* Text Main */
}

.page-fishing-games__text-content p {
  margin-bottom: 20px;
}

.page-fishing-games__image {
  flex: 1;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size for content images */
  min-height: 150px; /* Enforce min size for content images */
}

.page-fishing-games__feature-list,
.page-fishing-games__benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-fishing-games__feature-item,
.page-fishing-games__benefit-item {
  background-color: #F4F7FB; /* Background color */
  border-left: 4px solid #2F6BFF; /* Primary color */
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #1F2D3D; /* Text Main */
  line-height: 1.5;
}

.page-fishing-games__feature-item:last-child,
.page-fishing-games__benefit-item:last-child {
  margin-bottom: 0;
}

.page-fishing-games__feature-item strong,
.page-fishing-games__benefit-item strong {
  color: #2F6BFF; /* Primary color for emphasis */
}

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

.page-fishing-games__card {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border color */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-fishing-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__card-title {
  font-size: 1.4em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__card-description {
  font-size: 0.95em;
  color: #1F2D3D; /* Text Main */
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.page-fishing-games__card-button:hover {
  background: #6FA3FF; /* Auxiliary color for hover */
}

.page-fishing-games__call-to-action-section {
  text-align: center;
  padding: 80px 20px;
  background: #2F6BFF; /* Primary color */
  color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__call-to-action-section .page-fishing-games__section-title {
  color: #FFFFFF;
  margin-bottom: 25px;
}

.page-fishing-games__call-to-action-section .page-fishing-games__description {
  font-size: 1.15em;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-fishing-games__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-fishing-games__image {
    margin-bottom: 30px;
  }

  .page-fishing-games__text-content {
    margin-bottom: 30px;
  }
}

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

  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

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

  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 0.95em;
  }

  .page-fishing-games__section {
    padding: 40px 0;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.6em, 5vw, 2em);
    margin-bottom: 30px;
  }

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

  .page-fishing-games__image,
  .page-fishing-games__hero-image,
  .page-fishing-games__card-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: auto; /* Allow height to adjust naturally */
  }

  .page-fishing-games__call-to-action-section {
    padding: 60px 15px;
  }

  .page-fishing-games__call-to-action-section .page-fishing-games__description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-section {
    padding: 20px 10px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.6em, 7vw, 2em);
  }

  .page-fishing-games__section {
    padding: 30px 0;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.4em, 6vw, 1.8em);
  }

  .page-fishing-games__cta-button--large {
    padding: 15px 30px;
    font-size: 1em;
  }
}