.page-fishing-games {
  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;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  text-align: center;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Adjust as needed for hero image */
}

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

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

.page-fishing-games__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 20px;
  margin-bottom: 15px;
  color: #FFFFFF;
  max-width: 60ch;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-fishing-games__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 80ch;
}

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

.page-fishing-games__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-fishing-games__introduction-section,
.page-fishing-games__features-section,
.page-fishing-games__game-showcase-section,
.page-fishing-games__tips-section,
.page-fishing-games__cta-bottom-section {
  padding: 60px 0;
}

.page-fishing-games__introduction-section {
  background-color: var(--card-bg-color, #FFFFFF);
}

.page-fishing-games__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--custom-color-1776249996415, #000000);
}

.page-fishing-games__paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-fishing-games__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

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

.page-fishing-games__game-card {
  background-color: var(--card-bg-color, #FFFFFF);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color, #D6E2FF);
}

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

.page-fishing-games__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-fishing-games__game-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--text-main-color, #1F2D3D);
}

.page-fishing-games__game-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.page-fishing-games__game-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

.page-fishing-games__tips-item {
  background-color: var(--card-bg-color, #FFFFFF);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--main-color, #2F6BFF);
  transition: box-shadow 0.3s ease;
}

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

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

.page-fishing-games__tips-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main-color, #1F2D3D);
}

.page-fishing-games__cta-bottom-section {
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-fishing-games__cta-bottom-section .page-fishing-games__section-title {
  color: #FFFFFF;
}

.page-fishing-games__cta-bottom-section .page-fishing-games__paragraph {
  color: #FFFFFF;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

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

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-bottom: 30px;
  }
  .page-fishing-games__hero-content {
    padding: 15px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .page-fishing-games__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-fishing-games__introduction-section,
  .page-fishing-games__features-section,
  .page-fishing-games__game-showcase-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__cta-bottom-section {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-fishing-games__paragraph {
    font-size: 0.95rem;
  }
  .page-fishing-games__features-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__tips-item {
    padding: 20px;
  }
  .page-fishing-games__feature-title,
  .page-fishing-games__game-title {
    font-size: 1.3rem;
  }
  .page-fishing-games__feature-image,
  .page-fishing-games__game-image {
    height: 200px;
  }

  /* Critical: Ensure images don't overflow on mobile */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-fishing-games__section-title {
    font-size: 1.6rem;
  }
  .page-fishing-games__cta-bottom-section {
    padding: 60px 0;
  }
}