.page-game-reviews-slot-games {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-game-reviews-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-reviews-slot-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-reviews-slot-games__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-game-reviews-slot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-reviews-slot-games__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-slot-games__hero-content {
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-game-reviews-slot-games__hero-title {
  font-size: 3.8em;
  color: #FFD700; /* Gold for hero title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-reviews-slot-games__hero-description {
  font-size: 1.3em;
  color: #e5dfd3;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-slot-games__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-game-reviews-slot-games__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  opacity: 0.1;
  z-index: 1;
  transform: rotate(15deg);
}

.page-game-reviews-slot-games__hero-image {
  width: 500px;
  height: auto;
  filter: grayscale(100%);
}

.page-game-reviews-slot-games__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-game-reviews-slot-games__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
}

.page-game-reviews-slot-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-reviews-slot-games__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-game-reviews-slot-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-game-reviews-slot-games__btn--inline {
  margin-top: 30px;
}

.page-game-reviews-slot-games__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-game-reviews-slot-games__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-game-reviews-slot-games__intro p {
  max-width: 800px;
  margin: 20px auto;
  font-size: 1.1em;
  color: #cccccc;
}

.page-game-reviews-slot-games__features-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 0;
  max-width: 700px;
  text-align: left;
}

.page-game-reviews-slot-games__features-list li {
  background-color: #2a3447; /* Slightly lighter dark blue */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 1.05em;
  color: #e5dfd3;
}

.page-game-reviews-slot-games__icon {
  margin-right: 15px;
  font-size: 1.2em;
  color: #FFD700;
}

.page-game-reviews-slot-games__icon--check::before {
  content: '✓'; /* Unicode checkmark */
  font-weight: bold;
}

.page-game-reviews-slot-games__game-types .page-game-reviews-slot-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-slot-games__grid-item {
  background-color: #2a3447;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-slot-games__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-slot-games__grid-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-reviews-slot-games__grid-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-reviews-slot-games__grid-item p {
  color: #cccccc;
  font-size: 1em;
}

.page-game-reviews-slot-games__popular-games .page-game-reviews-slot-games__game-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-slot-games__game-card {
  background-color: #2a3447;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-slot-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-slot-games__game-card-image {
  width: 100%;
  max-width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-game-reviews-slot-games__game-card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 8px;
}

.page-game-reviews-slot-games__game-card-provider {
  font-size: 0.9em;
  color: #999999;
  margin-bottom: 10px;
}

.page-game-reviews-slot-games__game-card-description {
  color: #cccccc;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-game-reviews-slot-games__more-games-text {
  margin-top: 40px;
  font-size: 1.1em;
  color: #e5dfd3;
}

.page-game-reviews-slot-games__how-to-play ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-game-reviews-slot-games__how-to-play li {
  counter-increment: step-counter;
  background-color: #2a3447;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  position: relative;
  padding-left: 60px;
  font-size: 1.1em;
  color: #e5dfd3;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-slot-games__how-to-play li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-game-reviews-slot-games__how-to-play p {
  margin-top: 30px;
  font-size: 1.05em;
  color: #cccccc;
}

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

.page-game-reviews-slot-games__tip-card {
  background-color: #2a3447;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-slot-games__tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-slot-games__tip-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust to gold */
}

.page-game-reviews-slot-games__tip-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-reviews-slot-games__tip-card p {
  color: #cccccc;
  font-size: 0.95em;
}

.page-game-reviews-slot-games__promotions .page-game-reviews-slot-games__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-slot-games__promo-card {
  background-color: #2a3447;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-slot-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-slot-games__promo-image {
  width: 100%;
  max-width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-game-reviews-slot-games__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-reviews-slot-games__promo-card p {
  color: #cccccc;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-game-reviews-slot-games__conclusion p {
  max-width: 900px;
  margin: 20px auto;
  font-size: 1.15em;
  color: #e5dfd3;
}

.page-game-reviews-slot-games__conclusion .page-game-reviews-slot-games__btn--large {
  margin: 20px 10px;
}

.page-game-reviews-slot-games .highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-reviews-slot-games__hero-title {
    font-size: 3em;
  }
  .page-game-reviews-slot-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-slot-games__hero {
    padding: 80px 0;
  }
  .page-game-reviews-slot-games__hero-title {
    font-size: 2.5em;
  }
  .page-game-reviews-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-game-reviews-slot-games__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-reviews-slot-games__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-game-reviews-slot-games__section {
    padding: 40px 0;
  }
  .page-game-reviews-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-slot-games__grid, .page-game-reviews-slot-games__game-carousel, .page-game-reviews-slot-games__tips-grid, .page-game-reviews-slot-games__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-slot-games__features-list, .page-game-reviews-slot-games__how-to-play ol {
    margin-left: 10px;
    margin-right: 10px;
  }
  .page-game-reviews-slot-games__hero-image-wrapper {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-slot-games__hero-title {
    font-size: 2em;
  }
  .page-game-reviews-slot-games__hero-description {
    font-size: 1em;
  }
  .page-game-reviews-slot-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews-slot-games__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-game-reviews-slot-games__section-title {
    font-size: 1.5em;
  }
  .page-game-reviews-slot-games__grid-title, .page-game-reviews-slot-games__game-card-title, .page-game-reviews-slot-games__tip-title, .page-game-reviews-slot-games__promo-title {
    font-size: 1.3em;
  }
  .page-game-reviews-slot-games__how-to-play li {
    font-size: 1em;
    padding-left: 50px;
  }
  .page-game-reviews-slot-games__how-to-play li::before {
    width: 25px;
    height: 25px;
    font-size: 1em;
    left: 15px;
  }
}