.page-slots-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-slots-games__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  position: relative;
  overflow: hidden;
}

.page-slots-games__hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.page-slots-games__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -100px;
  opacity: 0.3;
  z-index: 0;
}

.page-slots-games__hero-image {
  width: 500px;
  height: auto;
  transform: rotate(15deg);
}

.page-slots-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.page-slots-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

.page-slots-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-slots-games__btn--primary {
  background-color: #ffc107;
  color: #212529; /* Dark text for contrast */
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-slots-games__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-slots-games__btn--secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.page-slots-games__btn--secondary:hover {
  background-color: #ffc107;
  color: #212529;
  transform: translateY(-2px);
}

.page-slots-games__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-slots-games__section-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
}

.page-slots-games__introduction,
.page-slots-games__game-categories,
.page-slots-games__why-92lottery,
.page-slots-games__responsible-gambling,
.page-slots-games__faq {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-slots-games__introduction {
  background-color: #fcfcfc;
}

.page-slots-games__grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-slots-games__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-slots-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 123, 255, 0.2));
}

.page-slots-games__feature-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-games__feature-text {
  font-size: 1em;
  color: #555;
}

.page-slots-games__text-center {
  text-align: center;
  font-size: 1.1em;
  color: #444;
  margin-top: 30px;
}

.page-slots-games__link-inline {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-slots-games__link-inline:hover {
  text-decoration: underline;
  color: #0056b3;
}

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

.page-slots-games__category-item {
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-slots-games__category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-slots-games__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #ffc107;
}

.page-slots-games__category-title {
  font-size: 1.8em;
  color: #007bff;
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-slots-games__category-description {
  font-size: 1em;
  color: #555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-slots-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin: 0 20px 20px;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  align-self: flex-start;
}

.page-slots-games__btn--small:hover {
  background-color: #0056b3;
}

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

.page-slots-games__advantage-item {
  background-color: #f8f9fa;
  border-left: 5px solid #ffc107;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: background-color 0.3s ease;
}

.page-slots-games__advantage-item:hover {
  background-color: #e9ecef;
}

.page-slots-games__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 3px 3px rgba(255, 193, 7, 0.3));
}

.page-slots-games__advantage-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slots-games__advantage-text {
  font-size: 0.95em;
  color: #555;
}

.page-slots-games__cta-banner {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-slots-games__cta-content {
  max-width: 900px;
}

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

.page-slots-games__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-slots-games__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: #ffc107;
  color: #212529;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

.page-slots-games__btn--large:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-slots-games__responsible-gambling {
  background-color: #f0f8ff; /* Light blue background for emphasis */
  border-left: 8px solid #007bff;
  padding: 60px 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-slots-games__text-content {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slots-games__faq-list {
  margin-top: 40px;
}

.page-slots-games__faq-item {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  transition: border-color 0.3s ease;
}

.page-slots-games__faq-item:hover {
  border-color: #007bff;
}

.page-slots-games__faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-slots-games__faq-answer {
  font-size: 1em;
  color: #555;
  padding-left: 10px;
  border-left: 3px solid #ffc107;
}

.highlight {
  color: #ffc107;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-slots-games__hero-title {
    font-size: 2.5em;
  }
  .page-slots-games__hero-description,
  .page-slots-games__cta-description {
    font-size: 1.1em;
  }
  .page-slots-games__section-title,
  .page-slots-games__cta-title {
    font-size: 2em;
  }
  .page-slots-games__hero-image-wrapper {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-slots-games__hero {
    padding: 60px 0;
  }
  .page-slots-games__hero-title {
    font-size: 2em;
  }
  .page-slots-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-slots-games__introduction,
  .page-slots-games__game-categories,
  .page-slots-games__why-92lottery,
  .page-slots-games__responsible-gambling,
  .page-slots-games__faq {
    padding: 40px 0;
  }
  .page-slots-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slots-games__category-list,
  .page-slots-games__grid-features,
  .page-slots-games__advantages {
    grid-template-columns: 1fr;
  }
  .page-slots-games__cta-banner {
    padding: 60px 0;
  }
  .page-slots-games__cta-title {
    font-size: 2em;
  }
  .page-slots-games__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-slots-games__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games__hero-description {
    font-size: 1em;
  }
  .page-slots-games__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-slots-games__section-title,
  .page-slots-games__cta-title {
    font-size: 1.5em;
  }
  .page-slots-games__feature-title,
  .page-slots-games__category-title,
  .page-slots-games__advantage-title {
    font-size: 1.3em;
  }
}