.page-slots-games {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Default text color for dark background */
  background-color: #1a0033; /* Darker variant of primary for overall background */
}

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

.page-slots-games__hero {
  background: linear-gradient(135deg, #4B0082 0%, #6a00b2 100%); /* Primary color gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.page-slots-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-slots-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

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

.page-slots-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
}

.page-slots-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-slots-games__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-slots-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #4B0082; /* Imperial Purple */
}

.page-slots-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.page-slots-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #4B0082;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-slots-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 20px;
}

.page-slots-games__btn--large {
  padding: 18px 45px;
  font-size: 1.2em;
  border-radius: 35px;
  background-color: #FFD700;
  color: #4B0082;
  margin-top: 30px;
}

.page-slots-games__btn--large:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slots-games__section {
  padding: 80px 0;
  text-align: center;
}

.page-slots-games__section:nth-of-type(even) {
  background-color: #2e005c; /* Slightly lighter purple for contrast */
}

.page-slots-games__section-title {
  font-size: 2.8em;
  margin-bottom: 30px;
  color: #FFD700; /* Gold */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-slots-games__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-slots-games__intro .highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-slots-games__feature-item {
  background-color: #4B0082; /* Primary color */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

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

.page-slots-games__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slots-games__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #c0c0c0;
}

.page-slots-games__game-types {
  background-color: #1a0033;
}

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

.page-slots-games__type-card {
  background-color: #2e005c;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games__type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

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

.page-slots-games__type-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 25px 15px 15px 15px;
}

.page-slots-games__type-card-description {
  font-size: 0.9em;
  line-height: 1.6;
  color: #c0c0c0;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-slots-games__type-card .page-slots-games__btn--small {
  margin-bottom: 25px;
  align-self: center;
}

.page-slots-games__bonus-cta {
  background: linear-gradient(45deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
  color: #4B0082;
  padding: 100px 0;
}

.page-slots-games__bonus-cta .page-slots-games__section-title {
  color: #4B0082;
  text-shadow: none;
}

.page-slots-games__bonus-cta .page-slots-games__section-text {
  color: #2e005c;
  max-width: 800px;
  margin-bottom: 0;
}

.page-slots-games__strategy-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-slots-games__strategy-list li {
  background-color: #2e005c;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-size: 1.05em;
  line-height: 1.7;
  color: #e0e0e0;
  border-left: 5px solid #FFD700;
}

.page-slots-games__strategy-list li strong {
  color: #FFD700;
}

.page-slots-games__app-download {
  background-color: #4B0082;
  color: #f0f0f0;
}

.page-slots-games__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.page-slots-games__app-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-slots-games__app-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-slots-games__app-text a {
  color: #FFD700;
  text-decoration: underline;
}

.page-slots-games__app-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
}

.page-slots-games__app-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-slots-games__detail-pages {
  background-color: #1a0033;
}

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

.page-slots-games__detail-card {
  background-color: #2e005c;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
}

.page-slots-games__detail-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slots-games__detail-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-slots-games__detail-title a:hover {
  text-decoration: underline;
}

.page-slots-games__detail-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #c0c0c0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slots-games__detail-card .page-slots-games__btn--small {
  align-self: flex-start;
  background-color: #4B0082;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-slots-games__detail-card .page-slots-games__btn--small:hover {
  background-color: #FFD700;
  color: #4B0082;
}

.page-slots-games__faq {
  background-color: #2e005c;
}

.page-slots-games__faq-item {
  background-color: #4B0082;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-left: 5px solid #FFD700;
}

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

.page-slots-games__faq-answer {
  font-size: 1.0em;
  line-height: 1.7;
  color: #e0e0e0;
  display: none; /* Hidden by default */
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed rgba(255, 215, 0, 0.3);
}

.page-slots-games__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slots-games__hero-title {
    font-size: 2.8em;
  }
  .page-slots-games__section-title {
    font-size: 2.2em;
  }
  .page-slots-games__hero-description,
  .page-slots-games__section-text {
    font-size: 1em;
  }
  .page-slots-games__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-slots-games__app-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-slots-games__hero {
    padding: 80px 0;
  }
  .page-slots-games__hero-title {
    font-size: 2.2em;
  }
  .page-slots-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-slots-games__section {
    padding: 60px 0;
  }
  .page-slots-games__section-title {
    font-size: 1.8em;
  }
  .page-slots-games__features-grid,
  .page-slots-games__type-card-grid,
  .page-slots-games__detail-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-games__feature-item,
  .page-slots-games__type-card,
  .page-slots-games__detail-card,
  .page-slots-games__faq-item {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .page-slots-games__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games__hero-description {
    font-size: 0.9em;
  }
  .page-slots-games__section-title {
    font-size: 1.5em;
  }
  .page-slots-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slots-games__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-slots-games__feature-title,
  .page-slots-games__type-card-title,
  .page-slots-games__detail-title {
    font-size: 1.3em;
  }
  .page-slots-games__faq-question {
    font-size: 1.2em;
  }
}