.page-resources-mcw-e-games-featured-recommendations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey text for dark background */
  background-color: #1A1A1A; /* Dark background */
}

.page-resources-mcw-e-games-featured-recommendations .highlight-text {
  color: #FFD700; /* Gold for highlights */
}

.page-resources-mcw-e-games-featured-recommendations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-mcw-e-games-featured-recommendations__section {
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.page-resources-mcw-e-games-featured-recommendations__section:nth-of-type(even) {
  background-color: #222222;
}

.page-resources-mcw-e-games-featured-recommendations__section-title {
  font-size: 2.8em;
  color: #CC0000; /* Red for main titles */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-resources-mcw-e-games-featured-recommendations__section-description {
  font-size: 1.2em;
  margin-bottom: 50px;
  color: #B0B0B0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-mcw-e-games-featured-recommendations__hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-resources-mcw-e-games-featured-recommendations__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}

.page-resources-mcw-e-games-featured-recommendations__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 2;
}

.page-resources-mcw-e-games-featured-recommendations__hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.page-resources-mcw-e-games-featured-recommendations__hero-title {
  font-size: 4em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-mcw-e-games-featured-recommendations__hero-subtitle {
  font-size: 1.5em;
  color: #F0F0F0;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-mcw-e-games-featured-recommendations__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-mcw-e-games-featured-recommendations__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-resources-mcw-e-games-featured-recommendations__btn--primary {
  background-color: #CC0000; /* Red */
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
}

.page-resources-mcw-e-games-featured-recommendations__btn--primary:hover {
  background-color: #FFD700; /* Gold */
  color: #1A1A1A;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

.page-resources-mcw-e-games-featured-recommendations__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-resources-mcw-e-games-featured-recommendations__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

.page-resources-mcw-e-games-featured-recommendations__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-resources-mcw-e-games-featured-recommendations__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-resources-mcw-e-games-featured-recommendations__features-grid,
.page-resources-mcw-e-games-featured-recommendations__game-grid,
.page-resources-mcw-e-games-featured-recommendations__steps-grid,
.page-resources-mcw-e-games-featured-recommendations__offers-grid,
.page-resources-mcw-e-games-featured-recommendations__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-mcw-e-games-featured-recommendations__feature-item,
.page-resources-mcw-e-games-featured-recommendations__game-card,
.page-resources-mcw-e-games-featured-recommendations__step-item,
.page-resources-mcw-e-games-featured-recommendations__offer-card,
.page-resources-mcw-e-games-featured-recommendations__safety-item {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.page-resources-mcw-e-games-featured-recommendations__feature-item:hover,
.page-resources-mcw-e-games-featured-recommendations__game-card:hover,
.page-resources-mcw-e-games-featured-recommendations__step-item:hover,
.page-resources-mcw-e-games-featured-recommendations__offer-card:hover,
.page-resources-mcw-e-games-featured-recommendations__safety-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-mcw-e-games-featured-recommendations__feature-icon,
.page-resources-mcw-e-games-featured-recommendations__offer-icon,
.page-resources-mcw-e-games-featured-recommendations__safety-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-resources-mcw-e-games-featured-recommendations__feature-title,
.page-resources-mcw-e-games-featured-recommendations__step-title,
.page-resources-mcw-e-games-featured-recommendations__offer-title,
.page-resources-mcw-e-games-featured-recommendations__safety-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-resources-mcw-e-games-featured-recommendations__feature-text,
.page-resources-mcw-e-games-featured-recommendations__step-text,
.page-resources-mcw-e-games-featured-recommendations__offer-text,
.page-resources-mcw-e-games-featured-recommendations__safety-text {
  font-size: 1em;
  color: #B0B0B0;
}

.page-resources-mcw-e-games-featured-recommendations__game-category {
  margin-bottom: 60px;
  text-align: center;
}

.page-resources-mcw-e-games-featured-recommendations__category-title {
  font-size: 2.2em;
  color: #CC0000; /* Red for category titles */
  margin-bottom: 20px;
  margin-top: 40px;
}

.page-resources-mcw-e-games-featured-recommendations__category-intro {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-mcw-e-games-featured-recommendations__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  filter: brightness(0.9);
}

.page-resources-mcw-e-games-featured-recommendations__game-name {
  font-size: 1.3em;
  color: #FFD700; /* Gold for game names */
  margin-bottom: 10px;
}

.page-resources-mcw-e-games-featured-recommendations__game-description {
  font-size: 0.95em;
  color: #A0A0A0;
  margin-bottom: 20px;
  min-height: 60px; /* Ensure consistent height */
}

.page-resources-mcw-e-games-featured-recommendations__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #CC0000; /* Red for step numbers */
  color: #FFFFFF;
  font-size: 2em;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 15px rgba(204, 0, 0, 0.5);
}

.page-resources-mcw-e-games-featured-recommendations__cta-bottom,
.page-resources-mcw-e-games-featured-recommendations__cta-actions {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-mcw-e-games-featured-recommendations__hero-title {
    font-size: 3em;
  }
  .page-resources-mcw-e-games-featured-recommendations__hero-subtitle {
    font-size: 1.3em;
  }
  .page-resources-mcw-e-games-featured-recommendations__section-title {
    font-size: 2.2em;
  }
  .page-resources-mcw-e-games-featured-recommendations__category-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-mcw-e-games-featured-recommendations__hero {
    height: 500px;
  }
  .page-resources-mcw-e-games-featured-recommendations__hero-title {
    font-size: 2.5em;
  }
  .page-resources-mcw-e-games-featured-recommendations__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-mcw-e-games-featured-recommendations__section {
    padding: 60px 0;
  }
  .page-resources-mcw-e-games-featured-recommendations__section-title {
    font-size: 1.8em;
  }
  .page-resources-mcw-e-games-featured-recommendations__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-resources-mcw-e-games-featured-recommendations__features-grid,
  .page-resources-mcw-e-games-featured-recommendations__game-grid,
  .page-resources-mcw-e-games-featured-recommendations__steps-grid,
  .page-resources-mcw-e-games-featured-recommendations__offers-grid,
  .page-resources-mcw-e-games-featured-recommendations__safety-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-mcw-e-games-featured-recommendations__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-mcw-e-games-featured-recommendations__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-resources-mcw-e-games-featured-recommendations__hero-actions,
  .page-resources-mcw-e-games-featured-recommendations__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-mcw-e-games-featured-recommendations__game-description {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-mcw-e-games-featured-recommendations__hero {
    height: 400px;
  }
  .page-resources-mcw-e-games-featured-recommendations__hero-title {
    font-size: 2em;
  }
  .page-resources-mcw-e-games-featured-recommendations__hero-subtitle {
    font-size: 0.9em;
  }
  .page-resources-mcw-e-games-featured-recommendations__section-title {
    font-size: 1.5em;
  }
  .page-resources-mcw-e-games-featured-recommendations__category-title {
    font-size: 1.5em;
  }
  .page-resources-mcw-e-games-featured-recommendations__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-resources-mcw-e-games-featured-recommendations__feature-item,
  .page-resources-mcw-e-games-featured-recommendations__game-card,
  .page-resources-mcw-e-games-featured-recommendations__step-item,
  .page-resources-mcw-e-games-featured-recommendations__offer-card,
  .page-resources-mcw-e-games-featured-recommendations__safety-item {
    padding: 20px;
  }
}