.page-fishing-games {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Text Main from custom palette */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  padding-top: 10px; /* Small padding-top as body handles header offset */
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 12px;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2FFF6;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-fishing-games__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary from custom palette */
}

.page-fishing-games__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main for button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-fishing-games__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-fishing-games__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-fishing-games__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6;
  padding-top: 40px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.page-fishing-games__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #22C768; /* Auxiliary color */
}

.page-fishing-games__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-fishing-games__text-block a {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-fishing-games__text-block a:hover {
  color: #F2C14E; /* Gold color on hover */
  text-decoration: underline;
}

.page-fishing-games__highlight {
  color: #57E38D; /* Glow color */
  font-weight: bold;
}

.page-fishing-games__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.page-fishing-games__intro-section,
.page-fishing-games__games-showcase-section,
.page-fishing-games__guide-section,
.page-fishing-games__advantages-section,
.page-fishing-games__strategy-section,
.page-fishing-games__conclusion-section {
  padding: 60px 0;
}

.page-fishing-games__games-showcase-section {
  background-color: #11271B; /* Card BG from custom palette */
}

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

.page-fishing-games__game-card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.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: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold color */
}

.page-fishing-games__card-description {
  font-size: 0.95em;
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-fishing-games__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.page-fishing-games__card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-1px);
}

.page-fishing-games__guide-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.page-fishing-games__guide-text {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__advantages-section {
  background-color: #11271B; /* Card BG */
}

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

.page-fishing-games__advantage-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-fishing-games__advantage-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__advantage-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E;
}

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

.page-fishing-games__strategy-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-fishing-games__strategy-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__strategy-item-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #22C768;
}

.page-fishing-games__faq-section {
  background-color: #08160F; /* Background color */
}

.page-fishing-games__faq-list {
  margin-top: 30px;
}

.page-fishing-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.page-fishing-games__faq-item[open] {
  background-color: #0A4B2C; /* Deep Green when open */
  border-color: #57E38D; /* Glow color border when open */
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  list-style: none;
  user-select: none;
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #F2C14E; /* Gold color */
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
  color: #57E38D; /* Glow color when open */
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

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

.page-fishing-games__conclusion-section {
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: clamp(2em, 6vw, 3em);
  }

  .page-fishing-games__section-title {
    font-size: 2em;
  }
}

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

  .page-fishing-games__hero-section {
    padding-bottom: 30px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-fishing-games__sub-title,
  .page-fishing-games__advantage-title,
  .page-fishing-games__strategy-item-title {
    font-size: 1.2em;
  }

  .page-fishing-games__text-block,
  .page-fishing-games__card-description,
  .page-fishing-games__faq-answer {
    font-size: 0.9em;
  }

  .page-fishing-games__game-list,
  .page-fishing-games__grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__guide-content {
    flex-direction: column;
  }

  .page-fishing-games__guide-text {
    min-width: unset;
  }

  /* Mobile image, video, button adaptation */
  .page-fishing-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__hero-image,
  .page-fishing-games__image-content,
  .page-fishing-games__card-image {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
  }

  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__game-card,
  .page-fishing-games__advantage-item,
  .page-fishing-games__strategy-item,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__cta-button,
  .page-fishing-games__card-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__cta-button.page-fishing-games__cta-button--large {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-fishing-games__hero-content {
    padding: 0 15px;
  }

  .page-fishing-games__intro-section,
  .page-fishing-games__games-showcase-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__advantages-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__conclusion-section {
    padding: 40px 0;
  }
  
  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-fishing-games__faq-answer {
    padding: 0 20px 15px 20px;
  }
}