/* style/fishing-games-recommendations.css */

/* Base styles for the page content */
.page-fishing-games-recommendations {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-bottom: 40px;
}

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

/* Hero Section */
.page-fishing-games-recommendations__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 40px;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-fishing-games-recommendations__hero-image-wrapper {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

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

.page-fishing-games-recommendations__hero-content {
  position: relative;
  z-index: 10;
  padding: 20px;
  margin-top: -150px; /* Adjust to position content over lower part of image */
  background: linear-gradient(0deg, #08160F 0%, rgba(8, 22, 15, 0.8) 70%, rgba(8, 22, 15, 0) 100%);
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
}

.page-fishing-games-recommendations__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Flexible H1 font size */
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-fishing-games-recommendations__intro-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-recommendations__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-games-recommendations__btn-primary,
.page-fishing-games-recommendations__btn-secondary,
.page-fishing-games-recommendations__btn-card,
.page-fishing-games-recommendations__btn-step,
.page-fishing-games-recommendations__btn-promo {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games-recommendations__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-fishing-games-recommendations__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-fishing-games-recommendations__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Button primary color for text */
  border: 2px solid #2AD16F; /* Button primary color for border */
}

.page-fishing-games-recommendations__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

/* General Section Styles */
.page-fishing-games-recommendations__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games-recommendations__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-fishing-games-recommendations__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-fishing-games-recommendations__sub-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games-recommendations__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.page-fishing-games-recommendations__content-block--reverse {
  flex-direction: row-reverse;
}

.page-fishing-games-recommendations__text-content {
  flex: 1;
}

.page-fishing-games-recommendations__text-content p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-fishing-games-recommendations__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games-recommendations__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

/* Popular Games Section */
.page-fishing-games-recommendations__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games-recommendations__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games-recommendations__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games-recommendations__card-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games-recommendations__card-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1;
}

.page-fishing-games-recommendations__btn-card {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  padding: 10px 20px;
  margin: 0 15px;
}

.page-fishing-games-recommendations__btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

/* Strategy Section */
.page-fishing-games-recommendations__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-fishing-games-recommendations__strategy-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-recommendations__strategy-title {
  font-size: 1.6em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-fishing-games-recommendations__strategy-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
}

/* Registration Section */
.page-fishing-games-recommendations__registration-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-fishing-games-recommendations__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.page-fishing-games-recommendations__step-title {
  font-size: 1.6em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-fishing-games-recommendations__step-list {
  list-style-type: decimal;
  color: #A7D9B8; /* Text Secondary */
  padding-left: 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games-recommendations__step-list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-fishing-games-recommendations__btn-step {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  padding: 10px 20px;
  align-self: flex-start;
}

.page-fishing-games-recommendations__btn-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

/* Promotions Section */
.page-fishing-games-recommendations__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games-recommendations__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-fishing-games-recommendations__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games-recommendations__promo-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin: 15px 15px 10px 15px;
}

.page-fishing-games-recommendations__promo-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin: 0 15px 20px 15px;
  flex-grow: 1;
}

.page-fishing-games-recommendations__btn-promo {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  padding: 10px 20px;
  margin: 0 15px 20px 15px;
  align-self: flex-start;
}

.page-fishing-games-recommendations__btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

/* FAQ Section */
.page-fishing-games-recommendations__faq-list {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

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

.page-fishing-games-recommendations__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
}

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

.page-fishing-games-recommendations__faq-qtext {
  flex-grow: 1;
}

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

.page-fishing-games-recommendations__faq-answer {
  padding: 0 20px 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
}

/* Final CTA Section */
.page-fishing-games-recommendations__cta-final {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
  margin-top: 60px;
}

.page-fishing-games-recommendations__cta-final .page-fishing-games-recommendations__section-title {
  color: #F2FFF6;
}

.page-fishing-games-recommendations__cta-final .page-fishing-games-recommendations__section-description {
  color: #A7D9B8;
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-recommendations__hero-content {
    margin-top: -100px;
  }
}

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

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

  .page-fishing-games-recommendations__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-fishing-games-recommendations__hero-image-wrapper {
    height: 400px;
  }

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

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

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

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

  .page-fishing-games-recommendations__btn-primary,
  .page-fishing-games-recommendations__btn-secondary,
  .page-fishing-games-recommendations__btn-card,
  .page-fishing-games-recommendations__btn-step,
  .page-fishing-games-recommendations__btn-promo {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    text-align: center;
  }

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

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

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

  .page-fishing-games-recommendations__content-block {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .page-fishing-games-recommendations__content-block--reverse {
    flex-direction: column;
  }

  .page-fishing-games-recommendations__image,
  .page-fishing-games-recommendations__card-image,
  .page-fishing-games-recommendations__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-fishing-games-recommendations__image-wrapper,
  .page-fishing-games-recommendations__game-cards,
  .page-fishing-games-recommendations__strategy-grid,
  .page-fishing-games-recommendations__registration-steps,
  .page-fishing-games-recommendations__promo-grid,
  .page-fishing-games-recommendations__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-fishing-games-recommendations__card,
  .page-fishing-games-recommendations__strategy-item,
  .page-fishing-games-recommendations__step-card,
  .page-fishing-games-recommendations__promo-card,
  .page-fishing-games-recommendations__faq-item {
    padding: 20px;
  }

  .page-fishing-games-recommendations__btn-step,
  .page-fishing-games-recommendations__btn-promo {
    align-self: stretch;
  }

  .page-fishing-games-recommendations__faq-item summary {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-fishing-games-recommendations__faq-answer {
    padding: 0 15px 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-recommendations__main-title {
    font-size: 1.8em;
  }

  .page-fishing-games-recommendations__section-title {
    font-size: 1.8em;
  }
}