.page-fishing-games-recommendations {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

.page-fishing-games-recommendations__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  box-sizing: border-box;
}

.page-fishing-games-recommendations__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-fishing-games-recommendations__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-fishing-games-recommendations__hero-content {
  max-width: 900px;
  text-align: center;
  margin-top: 30px;
  padding: 0 20px;
}

.page-fishing-games-recommendations__hero-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
}

.page-fishing-games-recommendations__hero-description {
  font-size: 1.1em;
  color: #FFF3E6;
  margin-bottom: 30px;
}

.page-fishing-games-recommendations__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-fishing-games-recommendations__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #FF8C1A;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 140, 26, 0.4);
}

.page-fishing-games-recommendations__subsection-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: #FFA53A;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-fishing-games-recommendations__section-text {
  font-size: 1em;
  color: #FFF3E6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games-recommendations__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-fishing-games-recommendations__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: none;
}

.page-fishing-games-recommendations__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.4);
  opacity: 0.9;
}

.page-fishing-games-recommendations__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FF8C1A;
  border: 2px solid #FF8C1A; /* Main Color */
}

.page-fishing-games-recommendations__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.4);
  background: #0D0E12;
}

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

.page-fishing-games-recommendations__card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games-recommendations__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 176, 77, 0.5);
}

.page-fishing-games-recommendations__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #FF8C1A;
}

.page-fishing-games-recommendations__card-title {
  font-size: 1.5em;
  color: #FFA53A; /* Auxiliary Color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games-recommendations__card-description {
  font-size: 0.95em;
  color: #FFF3E6;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-fishing-games-recommendations__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-fishing-games-recommendations__card-button:hover {
  opacity: 0.9;
}

.page-fishing-games-recommendations__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-fishing-games-recommendations__list-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: #FFF3E6;
  font-size: 1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-recommendations__list-item strong {
  color: #FFA53A;
}

.page-fishing-games-recommendations__image-inline {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #FF8C1A;
}

.page-fishing-games-recommendations__promotions-section {
  background-color: #0D0E12; /* Background */
  color: #FFF3E6;
}

.page-fishing-games-recommendations__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.page-fishing-games-recommendations__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #FFA53A; /* Auxiliary Color */
  cursor: pointer;
  list-style: none;
  transition: background-color 0.3s ease;
}

.page-fishing-games-recommendations__faq-question:hover {
  background-color: rgba(255, 165, 58, 0.1);
}

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

.page-fishing-games-recommendations__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FF8C1A;
}

.page-fishing-games-recommendations__faq-answer {
  padding: 0 25px 20px;
  color: #FFF3E6;
  font-size: 0.95em;
  text-align: justify;
}

.page-fishing-games-recommendations__faq-answer a {
  color: #FFB04D;
  text-decoration: underline;
}

.page-fishing-games-recommendations__cta-bottom {
  padding-bottom: 80px;
}

.page-fishing-games-recommendations__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games-recommendations__hero-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }
  .page-fishing-games-recommendations__section-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
  }
}

@media (max-width: 768px) {
  .page-fishing-games-recommendations {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games-recommendations__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset, this is small decor padding */
  }

  .page-fishing-games-recommendations__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-fishing-games-recommendations__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-fishing-games-recommendations__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-fishing-games-recommendations__section {
    padding: 40px 15px;
  }

  .page-fishing-games-recommendations__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games-recommendations__section-title {
    font-size: clamp(1.6em, 5vw, 2.2em);
    margin-bottom: 25px;
  }

  .page-fishing-games-recommendations__subsection-title {
    font-size: clamp(1.2em, 4vw, 1.8em);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-fishing-games-recommendations__game-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games-recommendations__card {
    padding: 20px;
  }

  .page-fishing-games-recommendations__list {
    margin: 20px auto;
    padding: 0 10px;
  }

  .page-fishing-games-recommendations__list-item {
    padding: 12px 18px;
    margin-bottom: 10px;
    font-size: 0.95em;
  }

  .page-fishing-games-recommendations__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-fishing-games-recommendations__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9em;
  }

  .page-fishing-games-recommendations__button-group {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .page-fishing-games-recommendations__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
  }

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

  .page-fishing-games-recommendations__hero-image-wrapper,
  .page-fishing-games-recommendations__card,
  .page-fishing-games-recommendations__section,
  .page-fishing-games-recommendations__container,
  .page-fishing-games-recommendations__game-cards,
  .page-fishing-games-recommendations__faq-list,
  .page-fishing-games-recommendations__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-fishing-games-recommendations__hero-section .page-fishing-games-recommendations__cta-button {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games-recommendations__card-button {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-recommendations__hero-title {
    font-size: clamp(1.6em, 7vw, 2.2em);
  }
  .page-fishing-games-recommendations__section-title {
    font-size: clamp(1.4em, 6vw, 2em);
  }
  .page-fishing-games-recommendations__faq-question {
    font-size: 0.95em;
  }
}

/* Ensure link styles are visible */
.page-fishing-games-recommendations a {
  color: #FFB04D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games-recommendations a:hover {
  color: #FFA53A;
  text-decoration: underline;
}

.page-fishing-games-recommendations__section-text a {
  color: #FFB04D;
  text-decoration: underline;
}

.page-fishing-games-recommendations__section-text a:hover {
  color: #FFA53A;
}