:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: var(--dark-bg-1); /* From shared.css, implies dark */
  --card-background: rgba(255, 255, 255, 0.08); /* Light transparent on dark bg */
  --border-color: rgba(255, 255, 255, 0.15);
}

/* Base styles for the page content */
.page-slot-games-popular-slots-recommendation {
  background-color: var(--background-dark); /* Assume body background is dark */
  color: var(--text-light); /* Light text on dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

/* Ensure all images are responsive */
.page-slot-games-popular-slots-recommendation img {
  max-width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
  filter: none !important; /* Strictly prohibit filter effects */
}

/* Ensure all buttons are responsive */
.page-slot-games-popular-slots-recommendation a[class*="button"],
.page-slot-games-popular-slots-recommendation__cta-button {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-popular-slots-recommendation__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-slot-games-popular-slots-recommendation__section-title {
  font-size: 38px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slot-games-popular-slots-recommendation__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-slot-games-popular-slots-recommendation__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #330000 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-slot-games-popular-slots-recommendation__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-slot-games-popular-slots-recommendation__main-title {
  font-size: 52px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.page-slot-games-popular-slots-recommendation__hero-description {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-slot-games-popular-slots-recommendation__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.page-slot-games-popular-slots-recommendation__cta-button:hover {
  background: #FFC107; /* Slightly brighter gold */
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games-popular-slots-recommendation__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-slot-games-popular-slots-recommendation__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: none !important; /* Strictly prohibit filter effects */
}

/* Intro Section */
.page-slot-games-popular-slots-recommendation__intro-section {
  background-color: var(--background-dark);
  padding: 80px 0;
}

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

.page-slot-games-popular-slots-recommendation__feature-item {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-popular-slots-recommendation__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games-popular-slots-recommendation__feature-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
  filter: none !important;
}

.page-slot-games-popular-slots-recommendation__feature-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-popular-slots-recommendation__feature-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* Top Slots Section */
.page-slot-games-popular-slots-recommendation__top-slots-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-slot-games-popular-slots-recommendation__slot-card {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-popular-slots-recommendation__slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games-popular-slots-recommendation__slot-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: none !important;
}

.page-slot-games-popular-slots-recommendation__slot-card-content {
  padding: 25px;
}

.page-slot-games-popular-slots-recommendation__slot-card-title {
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-popular-slots-recommendation__slot-card-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.page-slot-games-popular-slots-recommendation__slot-card-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-slot-games-popular-slots-recommendation__slot-card-button:hover {
  background: #a30000;
  transform: translateY(-2px);
}

/* How to Play Section */
.page-slot-games-popular-slots-recommendation__how-to-play-section {
  background-color: var(--background-dark);
  padding: 80px 0;
}

.page-slot-games-popular-slots-recommendation__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slot-games-popular-slots-recommendation__step-item {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-popular-slots-recommendation__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games-popular-slots-recommendation__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -20px;
  left: 20px;
  background: var(--primary-color);
  color: var(--text-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games-popular-slots-recommendation__step-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games-popular-slots-recommendation__step-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.page-slot-games-popular-slots-recommendation__cta-buttons--centered {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.page-slot-games-popular-slots-recommendation__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-dark);
}

.page-slot-games-popular-slots-recommendation__cta-button--primary:hover {
  background: #FFC107;
}

.page-slot-games-popular-slots-recommendation__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--text-light);
}

.page-slot-games-popular-slots-recommendation__cta-button--secondary:hover {
  background: #a30000;
}

/* Bonuses Section */
.page-slot-games-popular-slots-recommendation__bonuses-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-slot-games-popular-slots-recommendation__promo-card {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-popular-slots-recommendation__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games-popular-slots-recommendation__promo-card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: none !important;
}

.page-slot-games-popular-slots-recommendation__promo-card-content {
  padding: 25px;
}

.page-slot-games-popular-slots-recommendation__promo-card-title {
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-popular-slots-recommendation__promo-card-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.page-slot-games-popular-slots-recommendation__promo-card-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-slot-games-popular-slots-recommendation__promo-card-button:hover {
  background: #a30000;
  transform: translateY(-2px);
}

/* Tips Section */
.page-slot-games-popular-slots-recommendation__tips-section {
  background-color: var(--background-dark);
  padding: 80px 0;
}

.page-slot-games-popular-slots-recommendation__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slot-games-popular-slots-recommendation__tip-item {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-popular-slots-recommendation__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games-popular-slots-recommendation__tip-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}