.page-games-slot-machines {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0f1c2d; /* Slightly lighter dark blue for overall background */
}

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

.page-games-slot-machines__hero-section {
  background: linear-gradient(135deg, #1A2E47, #0f1c2d);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-games-slot-machines__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-slot-machines__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-slot-machines__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-games-slot-machines__intro-section, .page-games-slot-machines__game-types-section, .page-games-slot-machines__features-offers-section, .page-games-slot-machines__how-to-play-section, .page-games-slot-machines__why-choose-section, .page-games-slot-machines__faq-section {
  padding: 60px 0;
  background-color: #1A2E47; /* Primary dark blue for content sections */
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-games-slot-machines__intro-section p, .page-games-slot-machines__game-types-section p, .page-games-slot-machines__features-offers-section p, .page-games-slot-machines__how-to-play-section p, .page-games-slot-machines__why-choose-section p, .page-games-slot-machines__faq-section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #c0c0c0; /* Lighter gray for readability */
}

.page-games-slot-machines__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  font-size: 1.1em;
}

.page-games-slot-machines__btn--primary {
  background-color: #FFD700; /* Gold for primary actions */
  color: #1A2E47;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-games-slot-machines__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-games-slot-machines__btn--secondary {
  background-color: #2a4163; /* Darker blue for secondary actions */
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-games-slot-machines__btn--secondary:hover {
  background-color: #3a5275;
  transform: translateY(-3px);
}

.page-games-slot-machines__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-games-slot-machines__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-games-slot-machines__image--full-width {
  width: 100%;
}

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

.page-games-slot-machines__grid-item {
  background-color: #2a4163; /* Slightly lighter blue for card backgrounds */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-games-slot-machines__grid-item:hover {
  transform: translateY(-5px);
}

.page-games-slot-machines__item-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-games-slot-machines__item-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-games-slot-machines__content-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.page-games-slot-machines__column {
  flex: 1;
  min-width: 300px;
}

.page-games-slot-machines__column h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-games-slot-machines__image--promo {
  max-width: 700px;
  width: 100%;
}

.page-games-slot-machines__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-games-slot-machines__steps-list li {
  background-color: #2a4163;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-games-slot-machines__steps-list li h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-games-slot-machines__steps-list li p {
  margin-bottom: 15px;
}

.page-games-slot-machines__image--small {
  max-width: 400px;
  width: 100%;
  margin-top: 20px;
}

.page-games-slot-machines__reasons-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-games-slot-machines__reasons-list li {
  background-color: #2a4163;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-games-slot-machines__reasons-list li strong {
  color: #FFD700;
}

.page-games-slot-machines__image--mobile-app {
  max-width: 500px;
  width: 100%;
  margin-top: 30px;
}

.page-games-slot-machines__faq-item {
  background-color: #2a4163;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-games-slot-machines__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-games-slot-machines__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-games-slot-machines__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-games-slot-machines__faq-answer {
  display: none;
  padding-top: 10px;
  border-top: 1px solid #3a5275;
  margin-top: 15px;
  color: #c0c0c0;
}

.page-games-slot-machines__faq-answer.active {
  display: block;
}

.page-games-slot-machines__cta-section {
  background: linear-gradient(45deg, #1A2E47, #0f1c2d);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.page-games-slot-machines__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-slot-machines__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-games-slot-machines__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-slot-machines__hero-title {
    font-size: 2.8em;
  }
  .page-games-slot-machines__section-title {
    font-size: 2em;
  }
  .page-games-slot-machines__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-games-slot-machines__content-columns {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-games-slot-machines__hero-section, .page-games-slot-machines__intro-section, .page-games-slot-machines__game-types-section, .page-games-slot-machines__features-offers-section, .page-games-slot-machines__how-to-play-section, .page-games-slot-machines__why-choose-section, .page-games-slot-machines__faq-section, .page-games-slot-machines__cta-section {
    padding: 50px 0;
  }
  .page-games-slot-machines__hero-title {
    font-size: 2.2em;
  }
  .page-games-slot-machines__hero-description {
    font-size: 1em;
  }
  .page-games-slot-machines__section-title {
    font-size: 1.8em;
  }
  .page-games-slot-machines__grid {
    grid-template-columns: 1fr;
  }
  .page-games-slot-machines__cta-title {
    font-size: 2.2em;
  }
  .page-games-slot-machines__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-games-slot-machines__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-games-slot-machines__hero-title {
    font-size: 1.8em;
  }
  .page-games-slot-machines__section-title {
    font-size: 1.5em;
  }
  .page-games-slot-machines__item-title {
    font-size: 1.3em;
  }
  .page-games-slot-machines__cta-title {
    font-size: 1.8em;
  }
  .page-games-slot-machines__container {
    padding: 0 15px;
  }
}