.page-fishing-games {
  padding-top: 10px; /* Small top padding to account for fixed header */
  background-color: var(--bg-background); /* #140C0C */
  color: var(--text-main); /* #FFF1E8 */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* 1920x600 ratio */
  object-fit: cover;
  object-position: center;
}

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

.page-fishing-games__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold);
}

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

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

.page-fishing-games__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-fishing-games__btn--primary {
  background: var(--btn-button); /* linear-gradient */
  color: var(--bg-background); /* #140C0C */
  border: none;
}

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

.page-fishing-games__btn--secondary {
  background-color: var(--deep-red); /* #7E0D0D */
  color: var(--text-main); /* #FFF1E8 */
  border: 1px solid var(--border-border); /* #6A1E1E */
}

.page-fishing-games__btn--secondary:hover {
  background-color: var(--main-color); /* #C61F1F */
  transform: translateY(-2px);
}

.page-fishing-games__btn--center {
  margin: 20px auto 0 auto;
  display: table; /* For centering block element */
}

.page-fishing-games__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--gold); /* #F3C54D */
  text-align: center;
  margin: 60px auto 40px auto;
  max-width: 800px;
  position: relative;
}

.page-fishing-games__section-title::before, 
.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background-color: var(--border-border); /* #6A1E1E */
  transform: translateY(-50%);
}

.page-fishing-games__section-title::before {
  left: 0;
  margin-left: calc(50% - 400px - 60px); /* Adjust based on max-width and title width */
}

.page-fishing-games__section-title::after {
  right: 0;
  margin-right: calc(50% - 400px - 60px); /* Adjust based on max-width and title width */
}

@media (max-width: 900px) {
  .page-fishing-games__section-title::before,
  .page-fishing-games__section-title::after {
    width: 30px;
    margin-left: calc(50% - 300px - 40px);
    margin-right: calc(50% - 300px - 40px);
  }
}

@media (max-width: 600px) {
  .page-fishing-games__section-title::before,
  .page-fishing-games__section-title::after {
    width: 20px;
    margin-left: calc(50% - 150px - 30px);
    margin-right: calc(50% - 150px - 30px);
  }
}

.page-fishing-games__features-section,
.page-fishing-games__gameplay-guide,
.page-fishing-games__tips-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
}

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

.page-fishing-games__feature-card,
.page-fishing-games__tip-card {
  background-color: var(--bg-card-bg); /* #2A1212 */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-border); /* #6A1E1E */
}

.page-fishing-games__feature-card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  min-width: 200px;
  min-height: 200px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure it behaves as a block element */
}

.page-fishing-games__card-title {
  font-size: 1.35rem;
  color: var(--gold); /* #F3C54D */
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-fishing-games__card-description {
  font-size: 1rem;
  color: var(--text-main);
}

.page-fishing-games__guide-content {
  background-color: var(--bg-card-bg); /* #2A1212 */
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-border); /* #6A1E1E */
}

.page-fishing-games__guide-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.page-fishing-games__guide-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-fishing-games__guide-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-fishing-games__guide-list strong {
  color: var(--gold); /* #F3C54D */
}

.page-fishing-games__faq-item {
  background-color: var(--bg-card-bg); /* #2A1212 */
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 15px;
  border: 1px solid var(--border-border); /* #6A1E1E */
}

.page-fishing-games__faq-question {
  font-size: 1.2rem;
  color: var(--gold); /* #F3C54D */
  margin-bottom: 10px;
}

.page-fishing-games__faq-answer {
  font-size: 1rem;
  color: var(--text-main);
}

.page-fishing-games__cta-description {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-fishing-games__section-title::before,
  .page-fishing-games__section-title::after {
    display: none;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__tips-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__hero-image-wrapper img,
  .page-fishing-games__features-grid img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .page-fishing-games__hero-description,
  .page-fishing-games__card-description,
  .page-fishing-games__guide-content p,
  .page-fishing-games__guide-list li,
  .page-fishing-games__faq-answer,
  .page-fishing-games__cta-description {
    font-size: 0.95rem;
  }

  .page-fishing-games__card-title,
  .page-fishing-games__faq-question {
    font-size: 1.1rem;
  }

  .page-fishing-games__guide-list {
    padding-left: 20px;
  }

  .page-fishing-games__feature-card,
  .page-fishing-games__tip-card,
  .page-fishing-games__guide-content,
  .page-fishing-games__faq-item {
    padding: 20px;
  }
}

/* Global image rules for content area to prevent small icons */
.page-fishing-games img:not(.shared-logo, .shared-social-icon, .shared-payment-icon, .shared-game-provider-icon) {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .page-fishing-games img:not(.shared-logo, .shared-social-icon, .shared-payment-icon, .shared-game-provider-icon) {
    max-width: 100%;
    height: auto;
  }
}