.page-slot-games {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
}

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

.page-slot-games__hero-section {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.page-slot-games__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.page-slot-games__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.page-slot-games__hero-content {
  padding: 30px 15px;
  text-align: center;
  background-color: rgba(17, 39, 27, 0.8);
  margin-top: -5px; /* Slight overlap for visual cohesion */
}

.page-slot-games__main-title {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.5px;
}

.page-slot-games__hero-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__section {
  padding: 50px 0;
  margin-bottom: 20px;
}

.page-slot-games__section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-slot-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #13994A;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-slot-games__text-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #F2FFF6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games__text-content:last-child {
  margin-bottom: 0;
}

.page-slot-games__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.page-slot-games__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.3);
}

.page-slot-games__btn--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.4);
}

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

.page-slot-games__btn--secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #57E38D;
  border-color: #57E38D;
}

.page-slot-games__btn--center {
  display: block;
  margin: 30px auto 0;
  max-width: 250px;
}

.page-slot-games__image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background-color: #11271B;
}

.page-slot-games__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
  object-fit: cover;
}

.page-slot-games__image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #A7D9B8;
  padding: 10px 15px;
  background-color: #11271B;
}

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

.page-slot-games__feature-item,
.page-slot-games__benefit-item,
.page-slot-games__step-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-item:hover,
.page-slot-games__benefit-item:hover,
.page-slot-games__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__feature-title,
.page-slot-games__benefit-title,
.page-slot-games__step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-slot-games__feature-description,
.page-slot-games__benefit-description,
.page-slot-games__step-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-slot-games__step-list {
  counter-reset: step-counter;
  grid-template-columns: 1fr;
}

.page-slot-games__step-item {
  text-align: left;
  position: relative;
  padding-left: 60px;
}

.page-slot-games__step-item::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  left: 15px;
  top: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #57E38D;
  line-height: 1;
}

.page-slot-games__action-center {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slot-games__faq-item {
  background-color: #11271B;
  border: 1px solid #1E3A2A;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-slot-games__faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-slot-games__faq-answer {
  font-size: 0.95rem;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-slot-games__faq-answer a {
  color: #57E38D;
  text-decoration: none;
}

.page-slot-games__faq-answer a:hover {
  text-decoration: underline;
}

@media (max-width: 850px) {
  .page-slot-games__feature-list,
  .page-slot-games__benefit-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-content {
    padding: 20px 10px;
  }

  .page-slot-games__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-slot-games__hero-description {
    font-size: 0.9rem;
  }

  .page-slot-games__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-slot-games__btn {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-slot-games__section {
    padding: 40px 0;
  }

  .page-slot-games__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-bottom: 30px;
  }

  .page-slot-games__text-content {
    font-size: 0.9rem;
  }

  .page-slot-games__image-wrapper {
    margin: 30px auto;
  }

  .page-slot-games__image-wrapper img {
    max-width: 100%;
    height: auto;
  }

  .page-slot-games__feature-title,
  .page-slot-games__benefit-title,
  .page-slot-games__step-title {
    font-size: 1.1rem;
  }

  .page-slot-games__feature-description,
  .page-slot-games__benefit-description,
  .page-slot-games__step-description {
    font-size: 0.85rem;
  }

  .page-slot-games__step-item::before {
    font-size: 1.5rem;
    left: 10px;
  }

  .page-slot-games__step-item {
    padding-left: 50px;
  }

  .page-slot-games__action-center {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 549px) {
  .page-slot-games__text-content {
    text-align: left;
  }
}