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

/* Base styles for the page */
.page-fishing-games-popular-recommendations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

/* Sections */
.page-fishing-games-popular-recommendations__hero-section,
.page-fishing-games-popular-recommendations__introduction-section,
.page-fishing-games-popular-recommendations__games-showcase,
.page-fishing-games-popular-recommendations__strategy-section,
.page-fishing-games-popular-recommendations__promotions-section,
.page-fishing-games-popular-recommendations__registration-section,
.page-fishing-games-popular-recommendations__faq-section,
.page-fishing-games-popular-recommendations__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-fishing-games-popular-recommendations__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

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

.page-fishing-games-popular-recommendations__hero-content {
  position: relative;
  z-index: 2;
  margin-top: -100px; /* Adjust to slightly overlap the image, but not cover text */
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
  border-radius: 8px;
  max-width: 800px;
  box-sizing: border-box;
}

.page-fishing-games-popular-recommendations__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

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

.page-fishing-games-popular-recommendations__section-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-fishing-games-popular-recommendations__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-fishing-games-popular-recommendations__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Color themes */
.page-fishing-games-popular-recommendations__dark-bg {
  background-color: #26A9E0; /* Brand main color for dark sections */
  color: #ffffff;
}

.page-fishing-games-popular-recommendations__light-bg {
  background-color: #000000; /* Use body background for light sections, but text is white */
  color: #ffffff;
}

/* Buttons */
.page-fishing-games-popular-recommendations__btn-primary,
.page-fishing-games-popular-recommendations__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-popular-recommendations__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-fishing-games-popular-recommendations__btn-primary:hover {
  background-color: #d16b00;
  border-color: #d16b00;
}

.page-fishing-games-popular-recommendations__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 15px;
}

.page-fishing-games-popular-recommendations__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-fishing-games-popular-recommendations__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Feature list */
.page-fishing-games-popular-recommendations__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-fishing-games-popular-recommendations__feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-fishing-games-popular-recommendations__feature-item strong {
  color: #26A9E0;
  display: block;
  margin-bottom: 10px;
  font-size: 1.1em;
}

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

.page-fishing-games-popular-recommendations__game-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.page-fishing-games-popular-recommendations__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-games-popular-recommendations__game-title {
  font-size: 1.6em;
  font-weight: 600;
  margin: 20px 20px 10px;
  color: #26A9E0;
}

.page-fishing-games-popular-recommendations__game-description {
  font-size: 1em;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-fishing-games-popular-recommendations__game-card .page-fishing-games-popular-recommendations__btn-primary {
  margin: 0 20px 20px;
  text-align: center;
  width: calc(100% - 40px);
}

/* Strategy Section */
.page-fishing-games-popular-recommendations__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-popular-recommendations__strategy-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #ffffff;
}

.page-fishing-games-popular-recommendations__strategy-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-fishing-games-popular-recommendations__strategy-description {
  font-size: 1em;
}

/* Promotions Section */
.page-fishing-games-popular-recommendations__promo-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  color: #ffffff;
}

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

.page-fishing-games-popular-recommendations__promo-content {
  padding: 30px;
}

.page-fishing-games-popular-recommendations__promo-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-fishing-games-popular-recommendations__promo-description {
  font-size: 1.1em;
  line-height: 1.7;
}

.page-fishing-games-popular-recommendations__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-fishing-games-popular-recommendations__promo-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-fishing-games-popular-recommendations__promo-item strong {
  color: #26A9E0;
}

/* Registration Section */
.page-fishing-games-popular-recommendations__step-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  display: grid;
  gap: 20px;
}

.page-fishing-games-popular-recommendations__step-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-fishing-games-popular-recommendations__step-item strong {
  color: #26A9E0;
  display: block;
  margin-bottom: 10px;
  font-size: 1.2em;
}

/* FAQ Section */
.page-fishing-games-popular-recommendations__faq-list {
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-popular-recommendations__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-fishing-games-popular-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: #26A9E0;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-fishing-games-popular-recommendations__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games-popular-recommendations__faq-item[open] .page-fishing-games-popular-recommendations__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games-popular-recommendations__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-fishing-games-popular-recommendations__faq-item details > summary {
  list-style: none;
}

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

/* Conclusion Section */
.page-fishing-games-popular-recommendations__conclusion-section .page-fishing-games-popular-recommendations__btn-primary {
  margin-top: 30px;
}

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

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

@media (max-width: 768px) {
  .page-fishing-games-popular-recommendations__hero-content {
    margin-top: -50px;
  }

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

  .page-fishing-games-popular-recommendations__hero-description {
    font-size: 1em;
  }

  .page-fishing-games-popular-recommendations__section-title {
    font-size: 1.8em !important;
    margin-bottom: 30px;
  }

  .page-fishing-games-popular-recommendations__sub-title {
    font-size: 1.5em;
  }

  .page-fishing-games-popular-recommendations__text-block,
  .page-fishing-games-popular-recommendations__game-description,
  .page-fishing-games-popular-recommendations__strategy-description,
  .page-fishing-games-popular-recommendations__promo-description,
  .page-fishing-games-popular-recommendations__faq-answer p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .page-fishing-games-popular-recommendations__hero-section,
  .page-fishing-games-popular-recommendations__introduction-section,
  .page-fishing-games-popular-recommendations__games-showcase,
  .page-fishing-games-popular-recommendations__strategy-section,
  .page-fishing-games-popular-recommendations__promotions-section,
  .page-fishing-games-popular-recommendations__registration-section,
  .page-fishing-games-popular-recommendations__faq-section,
  .page-fishing-games-popular-recommendations__conclusion-section {
    padding: 40px 0;
  }

  .page-fishing-games-popular-recommendations__container,
  .page-fishing-games-popular-recommendations__game-card,
  .page-fishing-games-popular-recommendations__strategy-card,
  .page-fishing-games-popular-recommendations__promo-card,
  .page-fishing-games-popular-recommendations__step-item,
  .page-fishing-games-popular-recommendations__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-popular-recommendations__hero-image,
  .page-fishing-games-popular-recommendations__game-image,
  .page-fishing-games-popular-recommendations__promo-image,
  .page-fishing-games-popular-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-popular-recommendations__cta-button,
  .page-fishing-games-popular-recommendations__btn-primary,
  .page-fishing-games-popular-recommendations__btn-secondary,
  .page-fishing-games-popular-recommendations a[class*="button"],
  .page-fishing-games-popular-recommendations a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

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

  .page-fishing-games-popular-recommendations__game-grid,
  .page-fishing-games-popular-recommendations__strategy-grid,
  .page-fishing-games-popular-recommendations__feature-list {
    grid-template-columns: 1fr;
  }

  .page-fishing-games-popular-recommendations__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}