.page-fishing-games {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small padding to ensure content is not completely flush with header */
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #17191F;
  border-bottom: 2px solid #A84F0C;
  margin-bottom: 30px;
}

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

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

.page-fishing-games__hero-content {
  max-width: 900px;
  width: 100%;
}

.page-fishing-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #FFB04D, #FF8C1A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback for browsers that don't support text-fill-color */
}

.page-fishing-games__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-width: 150px;
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-fishing-games__btn--primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.4);
}

.page-fishing-games__btn--primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 140, 26, 0.6);
}

.page-fishing-games__btn--secondary {
  background-color: #17191F;
  color: #FF8C1A;
  border: 2px solid #A84F0C;
}

.page-fishing-games__btn--secondary:hover {
  background-color: #2a2d36;
  color: #FFB04D;
  border-color: #FFB04D;
  transform: translateY(-2px);
}

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #FFB04D, #FF8C1A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback */
}

.page-fishing-games__section-description {
  font-size: 1.05rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.page-fishing-games__intro-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__tips-strategy-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
  border-radius: 12px;
  background-color: #17191F;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
}

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

.page-fishing-games__intro-item {
  text-align: center;
}

.page-fishing-games__intro-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__intro-item-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FF8C1A;
  margin-bottom: 10px;
}

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

.page-fishing-games__game-card {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background-color: #0D0E12;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C;
}

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

.page-fishing-games__game-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games__btn--center {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

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

.page-fishing-games__tip-card {
  background-color: #0D0E12;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
}

.page-fishing-games__tip-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #FFA53A;
  margin-bottom: 15px;
}

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

.page-fishing-games__feature-item {
  background-color: #0D0E12;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #FF8C1A;
  margin-bottom: 10px;
}

.page-fishing-games__cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #17191F 0%, #0D0E12 100%);
}

.page-fishing-games__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-fishing-games__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games__hero-section {
    padding: 30px 15px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-fishing-games__hero-description {
    font-size: 1.1rem;
  }
  .page-fishing-games__intro-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__tips-strategy-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__cta-section {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-fishing-games__hero-image,
  .page-fishing-games__intro-image,
  .page-fishing-games__game-image,
  .page-fishing-games__feature-icon {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-fishing-games__hero-description {
    font-size: 1rem;
  }
  .page-fishing-games__hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-fishing-games__btn {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .page-fishing-games__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-fishing-games__intro-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__tips-grid,
  .page-fishing-games__why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 549px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  .page-fishing-games__intro-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__tips-strategy-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__cta-section {
    padding: 30px 10px;
  }
  .page-fishing-games__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}