.page-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background #f8f8f8 */
  background-color: #f8f8f8;
}

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

.page-slot-games__hero-section {
  background: linear-gradient(135deg, #1A202C, #FFD700);
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-slot-games__highlight-text {
  color: #FFD700;
  font-weight: bold;
}

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

.page-slot-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-slot-games__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
}

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

.page-slot-games__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #FFD700;
}

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

.page-slot-games__btn--outline {
  background-color: transparent;
  color: #1A202C;
  border: 2px solid #1A202C;
}

.page-slot-games__btn--outline:hover {
  background-color: #1A202C;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-slot-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #1A202C;
}

.page-slot-games__btn--small:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-slot-games__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

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

.page-slot-games__introduction-section,
.page-slot-games__features-section,
.page-slot-games__game-showcase-section,
.page-slot-games__how-to-play-section,
.page-slot-games__promotions-section,
.page-slot-games__cta-section {
  padding: 60px 0;
  background-color: #ffffff; /* Use white background for content sections */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-slot-games__introduction-section {
  margin-top: -60px; /* Overlap with hero section slightly */
}

.page-slot-games__text-content {
  font-size: 1.1em;
  color: #555555;
  text-align: justify;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-slot-games__text-content a {
  color: #1A202C;
  font-weight: bold;
  text-decoration: underline;
}

.page-slot-games__text-content a:hover {
  color: #FFD700;
}

.page-slot-games__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-slot-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-slot-games__feature-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slot-games__feature-icon {
  width: 120px; /* Increased size for content images */
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-slot-games__feature-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games__feature-description {
  font-size: 1em;
  color: #666666;
}

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

.page-slot-games__game-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.page-slot-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slot-games__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-slot-games__game-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 10px;
  padding: 0 15px;
  font-weight: bold;
}

.page-slot-games__game-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-slot-games__view-more-games {
  text-align: center;
  margin-top: 50px;
}

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

.page-slot-games__step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.page-slot-games__step-item::before {
  content: attr(data-step-number);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1A202C;
  color: #FFD700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #FFD700;
}

.page-slot-games__step-item:nth-child(1)::before { content: '1'; }
.page-slot-games__step-item:nth-child(2)::before { content: '2'; }
.page-slot-games__step-item:nth-child(3)::before { content: '3'; }
.page-slot-games__step-item:nth-child(4)::before { content: '4'; }
.page-slot-games__step-item:nth-child(5)::before { content: '5'; }

.page-slot-games__step-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: bold;
}

.page-slot-games__step-description {
  font-size: 1em;
  color: #666666;
  text-align: center;
}

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

.page-slot-games__promo-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.page-slot-games__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slot-games__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-slot-games__promo-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-bottom: 10px;
  padding: 0 15px;
  font-weight: bold;
}

.page-slot-games__promo-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-slot-games__cta-button {
  text-align: center;
  margin-top: 50px;
}

.page-slot-games__cta-section {
  background-color: #1A202C;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-slot-games__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
}

.page-slot-games__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-slot-games__cta-description a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: underline;
}

.page-slot-games__cta-description a:hover {
  color: #e6c200;
}

.page-slot-games__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games__hero-title {
    font-size: 3em;
  }
  .page-slot-games__hero-description {
    font-size: 1.3em;
  }
  .page-slot-games__section-title {
    font-size: 2em;
  }
  .page-slot-games__feature-title, .page-slot-games__game-title, .page-slot-games__promo-title {
    font-size: 1.5em;
  }
  .page-slot-games__cta-title {
    font-size: 2.2em;
  }
  .page-slot-games__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-title {
    font-size: 2.5em;
  }
  .page-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-slot-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-slot-games__features-grid,
  .page-slot-games__game-cards-grid,
  .page-slot-games__steps-list,
  .page-slot-games__promo-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-slot-games__feature-card, .page-slot-games__game-card, .page-slot-games__promo-card, .page-slot-games__step-item {
    padding: 25px;
  }
  .page-slot-games__cta-title {
    font-size: 1.8em;
  }
  .page-slot-games__cta-description {
    font-size: 1em;
  }
  .page-slot-games__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__hero-title {
    font-size: 2em;
  }
  .page-slot-games__hero-description {
    font-size: 1em;
  }
  .page-slot-games__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-slot-games__section-title {
    font-size: 1.5em;
  }
  .page-slot-games__feature-title, .page-slot-games__game-title, .page-slot-games__promo-title {
    font-size: 1.3em;
  }
  .page-slot-games__cta-title {
    font-size: 1.5em;
  }
  .page-slot-games__cta-description {
    font-size: 0.9em;
  }
}