.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #f8f8f8;
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding as per instruction */
  margin-bottom: 40px;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 550px; /* Limit height for desktop hero */
}

.page-fishing-games__hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff; /* Ensure good contrast */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-50px); /* Slightly overlap with image */
  position: relative;
  z-index: 1;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5em, 4vw, 3.2em); /* Using clamp for H1 as per instruction */
  color: #017439;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games__intro-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

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

.page-fishing-games__cta-buttons--center {
  margin-top: 30px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background-color: #C30808; /* Custom color for Register/Login */
  color: #FFFF00; /* Custom font color for Register/Login */
  border: 2px solid #C30808;
}

.page-fishing-games__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-fishing-games__btn-secondary {
  background-color: #FFFFFF;
  color: #017439;
  border: 2px solid #017439;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #e0e0e0;
  color: #017439;
}

.page-fishing-games__btn-card {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 15px;
}

.page-fishing-games__btn-card:hover {
  background-color: #005a2d;
  border-color: #005a2d;
}

.page-fishing-games__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-fishing-games__dark-section {
  background-color: #017439;
  color: #ffffff;
}

.page-fishing-games__dark-section .page-fishing-games__section-title,
.page-fishing-games__dark-section .page-fishing-games__section-description,
.page-fishing-games__dark-section .page-fishing-games__sub-title,
.page-fishing-games__dark-section .page-fishing-games__list-title {
  color: #ffffff;
}

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

.page-fishing-games__section-title {
  font-size: clamp(2em, 3.5vw, 2.8em);
  color: #017439;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-fishing-games__dark-section .page-fishing-games__section-description {
  color: #f0f0f0;
}

.page-fishing-games__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-fishing-games__text-block {
  padding-right: 20px;
}

.page-fishing-games__sub-title {
  font-size: clamp(1.5em, 2.5vw, 2em);
  color: #017439;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-fishing-games__dark-section .page-fishing-games__sub-title {
  color: #ffffff;
}

.page-fishing-games__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-fishing-games__list li {
  background-color: #ffffff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #333333;
  line-height: 1.6;
}

.page-fishing-games__dark-section .page-fishing-games__list li {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-fishing-games__list-title {
  font-size: 1.1em;
  font-weight: 600;
  color: #017439;
  margin-bottom: 5px;
}

.page-fishing-games__dark-section .page-fishing-games__list-title {
  color: #FFFF00; /* Yellow for titles on dark background list items */
}

.page-fishing-games__image-block {
  text-align: center;
}

.page-fishing-games__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  display: block;
  margin: 0 auto;
}

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

.page-fishing-games__products-grid {
  grid-template-columns: repeat(4, 1fr); /* Desktop: 4 columns */
}

.page-fishing-games__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

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

.page-fishing-games__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  width: 100%; /* Ensure image takes full card width */
  object-fit: cover;
}

.page-fishing-games__card-title {
  font-size: 1.3em;
  color: #017439;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__card-text {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
  flex-grow: 1;
}

.page-fishing-games__guide-section {
  background-color: #f0f0f0;
}

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

.page-fishing-games__guide-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.page-fishing-games__guide-icon {
  width: 60px;
  height: 60px;
  background-color: #017439;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-fishing-games__guide-title {
  font-size: 1.25em;
  color: #017439;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__image-block--center {
  margin-top: 40px;
}

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

.page-fishing-games__text-emphasis {
  font-size: 1.1em;
  font-style: italic;
  color: #017439;
  margin-top: 30px;
  text-align: center;
}

/* FAQ Styles */
details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
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: #f5f5f5;
}
.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555;
}

.page-fishing-games__faq-answer p {
  margin: 0;
  line-height: 1.6;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  text-align: center;
  padding: 80px 0;
}

.page-fishing-games__conclusion-section .page-fishing-games__section-title {
  color: #ffffff;
  margin-bottom: 25px;
}

.page-fishing-games__conclusion-section .page-fishing-games__section-description {
  color: #f0f0f0;
  margin-bottom: 50px;
}

/* Global image sizing for content area */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    padding: 30px 15px;
    transform: translateY(-30px);
  }

  .page-fishing-games__main-title {
    font-size: clamp(2.2em, 3.5vw, 2.8em);
  }

  .page-fishing-games__intro-text {
    font-size: 1em;
  }

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

  .page-fishing-games__products-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 10px; /* Ensure small top padding */
    margin-bottom: 20px;
  }

  .page-fishing-games__hero-image-wrapper {
    height: auto; /* Allow height to adjust */
  }

  .page-fishing-games__hero-image {
    object-fit: contain !important; /* Mobile hero image: contain, not cover */
    aspect-ratio: unset !important; /* Remove aspect ratio */
    max-height: 400px; /* Adjust max height for mobile */
  }

  .page-fishing-games__hero-content {
    padding: 20px 15px;
    transform: translateY(0); /* No overlap on mobile */
    margin-top: -20px; /* Slight negative margin to pull it up */
    box-shadow: none;
    border-radius: 0;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em); /* Adjust H1 for smaller screens */
    margin-bottom: 10px;
  }

  .page-fishing-games__intro-text {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column; /* Buttons stack vertically */
    gap: 15px;
  }
}
}