.page-slot-games {
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for main content */
}

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

.page-slot-games__hero-section {
  position: relative;
  text-align: center;
  background-color: #0a0909; /* Dark background for hero section */
  padding-bottom: 40px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* 1920x600 */
  object-fit: cover;
  object-position: center;
}

.page-slot-games__hero-content {
  padding: 20px;
  margin-top: 20px; /* Space between image and text */
}

.page-slot-games__hero-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted for a bit larger H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__hero-description {
  font-size: 1.1rem;
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__hero-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  margin: 0 10px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-slot-games__hero-btn--register {
  background-color: #C30808;
  color: #FFFF00;
}

.page-slot-games__hero-btn--register:hover {
  background-color: #a00606;
}

.page-slot-games__hero-btn--login {
  background-color: #C30808;
  color: #FFFF00;
}

.page-slot-games__hero-btn--login:hover {
  background-color: #a00606;
}

.page-slot-games__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #017439;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  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: #017439;
  border-radius: 2px;
}

.page-slot-games__section-title--centered {
  text-align: center;
}

.page-slot-games__text-content {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games__text-content--centered {
  text-align: center;
}

.page-slot-games__image-inline {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-slot-games__feature-card:hover {
  transform: translateY(-5px);
}

.page-slot-games__card-title {
  font-size: 1.3rem;
  color: #017439;
  margin-bottom: 10px;
}

.page-slot-games__card-description {
  font-size: 0.95rem;
  color: #555555;
}

.page-slot-games__steps-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  counter-reset: step-counter;
}

.page-slot-games__step-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #333333;
}

.page-slot-games__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #017439;
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.page-slot-games__cta-button {
  display: block;
  width: fit-content;
  margin: 30px auto;
  padding: 15px 35px;
  background-color: #C30808;
  color: #FFFF00;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-slot-games__cta-button:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

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

.page-slot-games__game-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-slot-games__game-card:hover {
  transform: translateY(-5px);
}

.page-slot-games__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-slot-games__game-title {
  font-size: 1.25rem;
  color: #017439;
  margin-bottom: 10px;
}

.page-slot-games__game-description {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 15px;
}

.page-slot-games__game-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #017439;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-slot-games__game-btn:hover {
  background-color: #005a2e;
}

.page-slot-games__advantages-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-slot-games__advantage-item {
  background-color: #F8F8F8;
  border-left: 5px solid #017439;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  color: #333333;
}

.page-slot-games__advantage-item strong {
  color: #017439;
}

.page-slot-games__faq-item {
  background-color: #F8F8F8;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-slot-games__faq-question {
  font-size: 1.15rem;
  color: #017439;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-slot-games__faq-answer {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 0;
}

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

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

.page-slot-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

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

.page-slot-games__cta-btn--register {
  background-color: #C30808;
  color: #FFFF00;
}

.page-slot-games__cta-btn--register:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-slot-games__cta-btn--login {
  background-color: #017439;
  color: #FFFFFF;
}

.page-slot-games__cta-btn--login:hover {
  background-color: #005a2e;
  transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 849px) {
  .page-slot-games__container {
    padding: 15px;
  }

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

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

  .page-slot-games__hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin: 0 5px;
  }

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

  .page-slot-games__features-grid,
  .page-slot-games__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__text-content,
  .page-slot-games__card-description,
  .page-slot-games__game-description,
  .page-slot-games__advantage-item,
  .page-slot-games__faq-question,
  .page-slot-games__faq-answer {
    font-size: 0.95rem;
  }

  .page-slot-games__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-slot-games__game-title {
    font-size: 1.15rem;
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games__cta-btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 549px) {
  .page-slot-games__hero-title {
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }

  .page-slot-games__hero-btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }

  .page-slot-games__text-content {
    text-align: left;
  }

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

  .page-slot-games__hero-content {
    padding: 15px;
  }
}

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