/* style/slot-games-features.css */
.page-slot-games-features {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light grey for text on dark background */
  background-color: #1A1A1A; /* Main dark background */
  line-height: 1.6;
}

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

.page-slot-games-features__hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slot-games-features__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-slot-games-features__hero-subtitle {
  font-size: 1.4em;
  color: #CCCCCC;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-features__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-slot-games-features__btn--primary {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-slot-games-features__btn--primary:hover {
  background-color: #E5C100;
}

.page-slot-games-features__btn--secondary {
  background-color: #333333;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slot-games-features__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-slot-games-features__introduction,
.page-slot-games-features__feature-section,
.page-slot-games-features__conclusion,
.page-slot-games-features__cta-download {
  padding: 60px 0;
}

.page-slot-games-features__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-slot-games-features__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-slot-games-features p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games-features h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-slot-games-features ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-slot-games-features ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #CCCCCC;
}

.page-slot-games-features .highlight {
  color: #FFD700;
}

.page-slot-games-features strong {
  color: #FFD700;
}

.page-slot-games-features__feature-section--alt-bg {
  background-color: #2A2A2A;
}

.page-slot-games-features__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-slot-games-features__image--full-width {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-slot-games-features__image--responsive {
    max-width: 800px;
    margin: 40px auto;
}

.page-slot-games-features__cta-download {
  background-color: #0E0E0E;
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-slot-games-features__cta-content {
  max-width: 900px;
}

.page-slot-games-features__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-slot-games-features__cta-download p {
  font-size: 1.2em;
  color: #CCCCCC;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-slot-games-features__hero-title {
    font-size: 2.5em;
  }

  .page-slot-games-features__hero-subtitle {
    font-size: 1.2em;
  }

  .page-slot-games-features__section-title {
    font-size: 2em;
  }

  .page-slot-games-features h3 {
    font-size: 1.5em;
  }

  .page-slot-games-features p,
  .page-slot-games-features ul li {
    font-size: 1em;
  }

  .page-slot-games-features__cta-title {
    font-size: 2em;
  }

  .page-slot-games-features__cta-download p {
    font-size: 1em;
  }
}

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

  .page-slot-games-features__hero-subtitle {
    font-size: 1em;
  }

  .page-slot-games-features__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-slot-games-features__section-title {
    font-size: 1.8em;
  }

  .page-slot-games-features h3 {
    font-size: 1.3em;
  }

  .page-slot-games-features__cta-title {
    font-size: 1.8em;
  }
}