.page-casino-games-popular-casino-game-recommendations {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A1A2E;
  line-height: 1.6;
}

.page-casino-games-popular-casino-game-recommendations h1, .page-casino-games-popular-casino-game-recommendations h2, .page-casino-games-popular-casino-game-recommendations h3 {
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

.page-casino-games-popular-casino-game-recommendations h1 {
  font-size: 3.2em;
  margin-top: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino-games-popular-casino-game-recommendations h2 {
  font-size: 2.5em;
  margin-top: 60px;
  border-bottom: 3px solid #DC143C;
  padding-bottom: 10px;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.page-casino-games-popular-casino-game-recommendations h3 {
  font-size: 1.8em;
  color: #FFD700;
}

.page-casino-games-popular-casino-game-recommendations p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

.page-casino-games-popular-casino-game-recommendations__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-casino-games-popular-casino-game-recommendations__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A1A2E, #330000);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-casino-games-popular-casino-game-recommendations__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[IMAGE:hero_main]');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: blur(5px);
  z-index: 1;
}

.page-casino-games-popular-casino-game-recommendations__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-casino-games-popular-casino-game-recommendations__hero-content p {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 30px;
  text-align: center;
}

.page-casino-games-popular-casino-game-recommendations__hero-image-wrapper {
  display: none; /* Hide hero image in this section as it's used as background */
}

.page-casino-games-popular-casino-game-recommendations__btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-casino-games-popular-casino-game-recommendations__btn--primary {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-casino-games-popular-casino-game-recommendations__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-casino-games-popular-casino-game-recommendations__btn--secondary {
  background-color: #DC143C;
  color: #FFFFFF;
}

.page-casino-games-popular-casino-game-recommendations__btn--secondary:hover {
  background-color: #B00F2F;
  transform: translateY(-3px);
}

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

.page-casino-games-popular-casino-game-recommendations__game-card {
  background-color: #2A2A3E;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-casino-games-popular-casino-game-recommendations__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-casino-games-popular-casino-game-recommendations__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #DC143C;
}

.page-casino-games-popular-casino-game-recommendations__game-card h3 {
  font-size: 1.5em;
  padding: 20px 15px 10px;
  text-align: left;
  color: #FFD700;
}

.page-casino-games-popular-casino-game-recommendations__game-card p {
  font-size: 0.95em;
  color: #D0D0D0;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-casino-games-popular-casino-game-recommendations__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  margin: 0 15px 15px;
  align-self: flex-start;
  background-color: #DC143C;
  color: #FFFFFF;
}

.page-casino-games-popular-casino-game-recommendations__btn--small:hover {
  background-color: #B00F2F;
}

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

.page-casino-games-popular-casino-game-recommendations__feature-item {
  background-color: #2A2A3E;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #FFD700;
}

.page-casino-games-popular-casino-game-recommendations__feature-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-casino-games-popular-casino-game-recommendations__feature-item h3 i {
  margin-right: 10px;
  color: #DC143C;
  font-size: 1.2em;
}

.page-casino-games-popular-casino-game-recommendations__feature-item p {
  color: #D0D0D0;
  font-size: 1em;
  text-align: center;
}

.page-casino-games-popular-casino-game-recommendations__cta-banner {
  background: linear-gradient(90deg, #DC143C, #8B0000);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-casino-games-popular-casino-game-recommendations__cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[IMAGE:call_to_action_banner]');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: blur(3px);
  z-index: 1;
}

.page-casino-games-popular-casino-game-recommendations__cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-casino-games-popular-casino-game-recommendations__cta-content h2 {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-casino-games-popular-casino-game-recommendations__cta-content p {
  color: #FFFFFF;
  font-size: 1.2em;
  margin-bottom: 30px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-casino-games-popular-casino-game-recommendations h1 {
    font-size: 2.5em;
  }

  .page-casino-games-popular-casino-game-recommendations h2 {
    font-size: 2em;
  }

  .page-casino-games-popular-casino-game-recommendations h3 {
    font-size: 1.5em;
  }

  .page-casino-games-popular-casino-game-recommendations__hero {
    padding: 60px 15px;
  }

  .page-casino-games-popular-casino-game-recommendations__hero-content p {
    font-size: 1.1em;
  }

  .page-casino-games-popular-casino-game-recommendations__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-casino-games-popular-casino-game-recommendations__game-grid,
  .page-casino-games-popular-casino-game-recommendations__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-casino-games-popular-casino-game-recommendations__game-card-image {
    height: 180px;
  }

  .page-casino-games-popular-casino-game-recommendations__cta-content h2 {
    font-size: 2em;
  }

  .page-casino-games-popular-casino-game-recommendations__cta-content p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-casino-games-popular-casino-game-recommendations h1 {
    font-size: 2em;
  }

  .page-casino-games-popular-casino-game-recommendations h2 {
    font-size: 1.8em;
  }

  .page-casino-games-popular-casino-game-recommendations h3 {
    font-size: 1.3em;
  }

  .page-casino-games-popular-casino-game-recommendations__btn {
    padding: 8px 15px;
    font-size: 0.9em;
    margin: 5px;
  }

  .page-casino-games-popular-casino-game-recommendations__game-card {
    margin-bottom: 20px;
  }
}