/* Base Styles & Global Resets (scoped) */
.page-fishing-games-popular-recommendations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
  box-sizing: border-box;
  padding-bottom: 40px;
}

.page-fishing-games-popular-recommendations *, .page-fishing-games-popular-recommendations *::before, .page-fishing-games-popular-recommendations *::after {
  box-sizing: inherit;
}

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

.page-fishing-games-popular-recommendations__section {
  padding: 40px 0;
  text-align: center;
}

.page-fishing-games-popular-recommendations__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #FFD86A; /* Gold-like for titles */
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-popular-recommendations__text-block {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF5E1;
}

/* Hero Section */
.page-fishing-games-popular-recommendations__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding as per rules */
  padding-bottom: 40px;
  background-color: #7A0E0E; /* Deep Red */
}

.page-fishing-games-popular-recommendations__hero-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

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

.page-fishing-games-popular-recommendations__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games-popular-recommendations__main-title {
  font-size: clamp(32px, 5vw, 56px);
  color: #FFCC66; /* Glow */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-fishing-games-popular-recommendations__description {
  font-size: 20px;
  color: #FFF5E1;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-popular-recommendations__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}