.page-resources-latest-game-quay-hu-recommendations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #0a0a0a, so light text */
  background-color: transparent; /* Main content background is transparent to let body background show */
}

.page-resources-latest-game-quay-hu-recommendations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-resources-latest-game-quay-hu-recommendations__dark-bg {
  background-color: rgba(38, 169, 224, 0.15); /* Light transparent primary color for dark sections */
  color: #ffffff;
  padding: 60px 0;
}

.page-resources-latest-game-quay-hu-recommendations__light-bg {
  background-color: #0a0a0a; /* Use body background color, but ensure text is light */
  color: #ffffff;
  padding: 60px 0;
}

.page-resources-latest-game-quay-hu-recommendations__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-latest-game-quay-hu-recommendations__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

/* Hero Section */
.page-resources-latest-game-quay-hu-recommendations__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  position: relative;
  overflow: hidden;
}

.page-resources-latest-game-quay-hu-recommendations__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-resources-latest-game-quay-hu-recommendations__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-latest-game-quay-hu-recommendations__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-latest-game-quay-hu-recommendations__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-resources-latest-game-quay-hu-recommendations__btn-primary,
.page-resources-latest-game-quay-hu-recommendations__btn-secondary,
.page-resources-latest-game-quay-hu-recommendations__btn-play,
.page-resources-latest-game-quay-hu-recommendations__btn-action {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-latest-game-quay-hu-recommendations__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-resources-latest-game-quay-hu-recommendations__btn-primary:hover {
  background-color: #1f8ec4;
  border-color: #1f8ec4;
}

.page-resources-latest-game-quay-hu-recommendations__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources-latest-game-quay-hu-recommendations__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

.page-resources-latest-game-quay-hu-recommendations__btn-play,
.page-resources-latest-game-quay-hu-recommendations__btn-action {
  background-color: #EA7C07; /* Login color for action buttons */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-latest-game-quay-hu-recommendations__btn-play:hover,
.page-resources-latest-game-quay-hu-recommendations__btn-action:hover {
  background-color: #c46406;
  border-color: #c46406;
}

.page-resources-latest-game-quay-hu-recommendations__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-latest-game-quay-hu-recommendations__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

/* Overview Section */
.page-resources-latest-game-quay-hu-recommendations__overview-image {
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

/* Top Games Section */
.page-resources-latest-game-quay-hu-recommendations__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-latest-game-quay-hu-recommendations__game-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white card background */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-latest-game-quay-hu-recommendations__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}