.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: #0a0a0a; /* Ensure body background is respected */
}

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

/* Hero Section */
.page-fishing-games-popular-recommendations__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Use header offset */
  padding-bottom: 80px;
  overflow: hidden;
  color: #ffffff;
  background-color: #0a0a0a;
}

.page-fishing-games-popular-recommendations__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.page-fishing-games-popular-recommendations__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-fishing-games-popular-recommendations__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

/* Section Titles and Descriptions */
.page-fishing-games-popular-recommendations__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  color: #26A9E0;
  padding-top: 60px;
}

.page-fishing-games-popular-recommendations__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #cccccc;
}

/* Buttons */
.page-fishing-games-popular-recommendations__btn-primary,
.page-fishing-games-popular-recommendations__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-fishing-games-popular-recommendations__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

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

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

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

.page-fishing-games-popular-recommendations__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-fishing-games-popular-recommendations__btn-large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Why Choose Us Section */
.page-fishing-games-popular-recommendations__why-choose-us {
  padding: 80px 0;
  background-color: #ffffff; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-fishing-games-popular-recommendations__why-choose-us .page-fishing-games-popular-recommendations__section-title {
  color: #26A9E0;
}

.page-fishing-games-popular-recommendations__why-choose-us .page-fishing-games-popular-recommendations__section-description {
  color: #555555;
}

.page-fishing-games-popular-recommendations__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-fishing-games-popular-recommendations__feature-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-popular-recommendations__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-popular-recommendations__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-fishing-games-popular-recommendations__feature-description {
  font-size: 1em;
  color: #666666;
}

/* Games Showcase Section */
.page-fishing-games-popular-recommendations__games-showcase {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

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

.page-fishing-games-popular-recommendations__game-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-fishing-games-popular-recommendations__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-popular-recommendations__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-fishing-games-popular-recommendations__game-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games-popular-recommendations__game-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-fishing-games-popular-recommendations__game-description {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* Strategy & Tips Section */
.page-fishing-games-popular-recommendations__strategy-tips {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games-popular-recommendations__strategy-tips .page-fishing-games-popular-recommendations__section-title {
  color: #26A9E0;
}

.page-fishing-games-popular-recommendations__strategy-tips .page-fishing-games-popular-recommendations__section-description {
  color: #555555;
}

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

.page-fishing-games-popular-recommendations__tip-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-popular-recommendations__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-popular-recommendations__tip-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games-popular-recommendations__tip-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-fishing-games-popular-recommendations__tip-description {
  font-size: 1em;
  color: #666666;
}

.page-fishing-games-popular-recommendations__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

/* Promotions Section */
.page-fishing-games-popular-recommendations__promotions {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

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

.page-fishing-games-popular-recommendations__promo-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-fishing-games-popular-recommendations__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games-popular-recommendations__promo-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games-popular-recommendations__promo-title {
  font-size: 1.5em;
  color: #26A9E0;
  padding: 20px 20px 0;
}

.page-fishing-games-popular-recommendations__promo-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 20px 20px;
  flex-grow: 1;
}

/* How to Start Section */
.page-fishing-games-popular-recommendations__how-to-start {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games-popular-recommendations__how-to-start .page-fishing-games-popular-recommendations__section-title {
  color: #26A9E0;
}

.page-fishing-games-popular-recommendations__how-to-start .page-fishing-games-popular-recommendations__section-description {
  color: #555555;
}

.page-fishing-games-popular-recommendations__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-fishing-games-popular-recommendations__step-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-popular-recommendations__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-popular-recommendations__step-icon {
  font-size: 2.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
  background: #e0f2f7;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-fishing-games-popular-recommendations__step-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-fishing-games-popular-recommendations__step-description {
  font-size: 1em;
  color: #666666;
}

/* FAQ Section */
.page-fishing-games-popular-recommendations__faq {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-fishing-games-popular-recommendations__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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