.page-fishing-games {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__section-description {
  font-size: 18px;
  color: #A7D9B8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-secondary {
  background: #11271B;
  color: #2AD16F;
  border: 2px solid #2E7A4E;
}

.page-fishing-games__btn-secondary:hover {
  background: #2E7A4E;
  color: #F2FFF6;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(46, 122, 78, 0.4);
}

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section */
.page-fishing-games__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green fallback */
}

.page-fishing-games__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.page-fishing-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-fishing-games__hero-content {
  position: relative;
  padding: 40px 15px;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
  margin-top: -80px; /* Overlap with image slightly for visual appeal */
  border-radius: 15px 15px 0 0;
  z-index: 10;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__main-title {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
  line-height: 1.1;
}

.page-fishing-games__hero-description {
  font-size: 19px;
  color: #A7D9B8;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.page-fishing-games__about-section {
  padding: 60px 0;
  background-color: #08160F;
}

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

.page-fishing-games__content-grid .page-fishing-games__text-block {
  flex: 1;
}

.page-fishing-games__content-grid .page-fishing-games__image-block {
  flex: 1;
  text-align: center;
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-fishing-games__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #F2FFF6;
}

.page-fishing-games__text-block p strong {
  color: #F2C14E;
}

.page-fishing-games__link-more {
  color: #2AD16F;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-fishing-games__link-more:hover {
  color: #57E38D;
  text-decoration: underline;
}

/* Game Types Section */
.page-fishing-games__game-types-section {
  padding: 60px 0;
  background-color: #11271B;
}

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

.page-fishing-games__game-card {
  background-color: #0A4B2C;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-fishing-games__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-fishing-games__card-text {
  font-size: 16px;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Why Choose Us Section */
.page-fishing-games__why-choose-us {
  padding: 60px 0;
  background-color: #08160F;
}

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

.page-fishing-games__feature-item {
  text-align: center;
  background-color: #11271B;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  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.3);
}

.page-fishing-games__feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fishing-games__feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-fishing-games__feature-description {
  font-size: 16px;
  color: #A7D9B8;
}

/* Download App Section */
.page-fishing-games__download-app-section {
  padding: 60px 0;
  background-color: #11271B;
}

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

.page-fishing-games__download-content .page-fishing-games__text-block {
  flex: 1;
}

.page-fishing-games__download-content .page-fishing-games__image-block {
  flex: 1;
  text-align: center;
}

.page-fishing-games__download-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-fishing-games__small-text {
  font-size: 14px;
  color: #A7D9B8;
  margin-top: 20px;
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-fishing-games__article-body {
  max-width: 900px;
  margin: 0 auto;
  background-color: #11271B;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__article-subtitle {
  font-size: 26px;
  font-weight: 700;
  color: #F2C14E;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fishing-games__article-subtitle:first-of-type {
  margin-top: 0;
}

.page-fishing-games__article-body p {
  font-size: 17px;
  color: #F2FFF6;
  margin-bottom: 15px;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 60px 0;
  background-color: #11271B;
}

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

.page-fishing-games__promo-card {
  background-color: #0A4B2C;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__promo-card .page-fishing-games__card-image {
  height: 180px;
}

/* Security Section */
.page-fishing-games__security-section {
  padding: 60px 0;
  background-color: #08160F;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: #11271B;
}

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #2E7A4E;
  overflow: hidden;
  background: #0A4B2C;
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: #1e3a2a;
}

.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2FFF6;
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #57E38D;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  line-height: 1;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  background: #11271B;
  border-radius: 0 0 5px 5px;
  color: #A7D9B8;
  font-size: 16px;
}

.page-fishing-games__faq-answer p {
  margin-bottom: 10px;
  color: #A7D9B8;
}

.page-fishing-games__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Contact CTA Section */
.page-fishing-games__contact-cta-section {
  padding: 80px 0;
  background-color: #0A4B2C;
  text-align: center;
}

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

.page-fishing-games__contact-cta-section .page-fishing-games__section-title {
  color: #F2C14E;
}

.page-fishing-games__contact-cta-section .page-fishing-games__section-description {
  color: #F2FFF6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(26px, 4.5vw, 45px);
  }

  .page-fishing-games__hero-description {
    font-size: 18px;
  }

  .page-fishing-games__game-grid,
  .page-fishing-games__features-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-fishing-games__section-title {
    font-size: 32px;
  }

  .page-fishing-games__article-subtitle {
    font-size: 24px;
  }

  .page-fishing-games__article-body {
    padding: 30px;
  }
}

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

  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-fishing-games__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* HERO Section Mobile */
  .page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding for mobile */
  }
  
  .page-fishing-games__hero-image-wrapper {
    padding-bottom: 75%; /* 4:3 Aspect Ratio for mobile hero */
  }

  .page-fishing-games__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
  }

  .page-fishing-games__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
    border-radius: 10px 10px 0 0;
  }

  .page-fishing-games__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-fishing-games__hero-description {
    font-size: 16px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Content Grids Mobile */
  .page-fishing-games__content-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games__content-grid .page-fishing-games__text-block,
  .page-fishing-games__content-grid .page-fishing-games__image-block {
    flex: none;
    width: 100%;
  }

  .page-fishing-games__game-grid,
  .page-fishing-games__features-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__card-image {
    height: 160px;
  }

  .page-fishing-games__card-title {
    font-size: 20px;
  }

  .page-fishing-games__feature-icon {
    width: 100px;
    height: 100px;
  }

  .page-fishing-games__feature-title {
    font-size: 20px;
  }

  /* Download Section Mobile */
  .page-fishing-games__download-content {
    flex-direction: column-reverse;
  }

  .page-fishing-games__download-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* Article Body Mobile */
  .page-fishing-games__article-body {
    padding: 25px 15px;
  }

  .page-fishing-games__article-subtitle {
    font-size: 22px;
  }

  .page-fishing-games__article-body p {
    font-size: 16px;
  }

  /* FAQ Mobile */
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px;
  }
  .page-fishing-games__faq-qtext {
    font-size: 16px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }
  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 15px 15px;
  }

  /* General Image Responsiveness for content images */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-content,
  .page-fishing-games__download-content,
  .page-fishing-games__article-body {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__hero-content { padding-left: 15px !important; padding-right: 15px !important; }
  .page-fishing-games__download-buttons { padding-left: 0; padding-right: 0; }
}

@media (max-width: 480px) {
  .page-fishing-games__section-title {
    font-size: 24px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(22px, 8vw, 32px);
  }
  .page-fishing-games__hero-description {
    font-size: 15px;
  }
  .page-fishing-games__article-subtitle {
    font-size: 20px;
  }
  .page-fishing-games__game-card, .page-fishing-games__feature-item, .page-fishing-games__promo-card {
    padding: 20px;
  }
  .page-fishing-games__card-image {
    height: 140px;
  }
  .page-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
  }
}