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

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

.page-slots-games__hero-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #2A0845 0%, #6441A5 100%); /* Deep purple gradient */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.page-slots-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

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

.page-slots-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold */
}

.page-slots-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

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

.page-slots-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-slots-games__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A1A2E;
}

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

.page-slots-games__button--secondary {
  background-color: #DC143C; /* Crimson Red */
  color: #FFFFFF;
  border: 2px solid #DC143C;
}

.page-slots-games__button--secondary:hover {
  background-color: #c01134;
  border-color: #c01134;
  transform: translateY(-3px);
}

.page-slots-games__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-slots-games__button--center {
  display: block;
  margin: 40px auto 0;
  width: fit-content;
}

.page-slots-games__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-slots-games__section:nth-of-type(even) {
  background-color: #1F1F3A;
}

.page-slots-games__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-slots-games__section-intro {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #B0B0B0;
}

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

.page-slots-games__feature-item,
.page-slots-games__game-type-item,
.page-slots-games__strategy-item {
  background-color: #2C2C4A;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-slots-games__feature-description,
.page-slots-games__game-type-description,
.page-slots-games__strategy-description {
  font-size: 1em;
  color: #B0B0B0;
}

.page-slots-games__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-games__image-margin-top {
  margin-top: 50px;
}

.page-slots-games__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 800px;
  margin: 50px auto 0;
}

.page-slots-games__steps-list li {
  background-color: #2C2C4A;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: left;
  position: relative;
  padding-left: 70px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #DC143C;
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-slots-games__step-title {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

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

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

.page-slots-games__step-title + p {
  color: #B0B0B0;
}

.page-slots-games__provider-logos {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-slots-games__provider-text {
  max-width: 800px;
  margin: 20px auto;
  color: #B0B0B0;
  font-size: 1.1em;
}

.page-slots-games__text-center {
  text-align: center;
}

.page-slots-games__text-small {
  font-size: 0.9em;
  color: #999;
  margin-top: 20px;
}

.page-slots-games__highlight {
  color: #FFD700;
}

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

.page-slots-games__detail-item {
  background-color: #2C2C4A;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.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;
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slots-games__cta {
  background: linear-gradient(90deg, #DC143C 0%, #FFD700 100%); /* Red to Gold gradient */
  padding: 80px 0;
  color: #FFFFFF;
}

.page-slots-games__cta .page-slots-games__section-title {
  color: #FFFFFF;
}

.page-slots-games__cta .page-slots-games__section-intro {
  color: #F0F0F0;
  margin-bottom: 40px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-slots-games__hero-title {
    font-size: 2.5em;
  }

  .page-slots-games__hero-description {
    font-size: 1em;
  }

  .page-slots-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-slots-games__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-slots-games__section-title {
    font-size: 2em;
  }

  .page-slots-games__features-grid,
  .page-slots-games__game-type-grid,
  .page-slots-games__strategy-grid,
  .page-slots-games__detail-list {
    grid-template-columns: 1fr;
  }

  .page-slots-games__steps-list li {
    padding-left: 60px;
  }

  .page-slots-games__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
  }

  .page-slots-games__step-title {
    font-size: 1.2em;
  }

  .page-slots-games__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-slots-games__hero-title {
    font-size: 2em;
  }

  .page-slots-games__section-title {
    font-size: 1.8em;
  }

  .page-slots-games__hero-section {
    padding: 80px 0;
  }

  .page-slots-games__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}