.page-e-games-slot-machines {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for main text on dark background */
  background-color: #121E33; /* Darker background */
}

.page-e-games-slot-machines .highlight {
  color: #F0B90B; /* Auxiliary color for emphasis */
}

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

.page-e-games-slot-machines__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #0F1A2D 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-e-games-slot-machines__hero-title {
  font-size: 3.5em;
  color: #FFFFFF; /* White for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-e-games-slot-machines__hero-subtitle {
  font-size: 1.4em;
  color: #B0B0B0; /* Slightly lighter grey for subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-e-games-slot-machines__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 0 10px;
  cursor: pointer;
}

.page-e-games-slot-machines__btn--primary {
  background-color: #F0B90B; /* Auxiliary color for primary button */
  color: #1A2B4C; /* Primary color for text on primary button */
  border: none;
}

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

.page-e-games-slot-machines__btn--secondary {
  background-color: transparent;
  color: #F0B90B; /* Auxiliary color for secondary button text */
  border: 2px solid #F0B90B;
}

.page-e-games-slot-machines__btn--secondary:hover {
  background-color: rgba(240, 185, 11, 0.1);
  transform: translateY(-3px);
}

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

.page-e-games-slot-machines__section {
  padding: 80px 0;
  background-color: #121E33;
}

.page-e-games-slot-machines__section--dark {
  background-color: #1A2B4C;
}

.page-e-games-slot-machines__section-title {
  font-size: 2.8em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-e-games-slot-machines__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #F0B90B;
  margin: 20px auto 0;
  border-radius: 2px;
}

.page-e-games-slot-machines__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-e-games-slot-machines__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-e-games-slot-machines__text-content {
  flex: 1;
}

.page-e-games-slot-machines__text-content h3 {
  font-size: 1.8em;
  color: #F0B90B;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-e-games-slot-machines__text-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-e-games-slot-machines__image-content {
  flex: 1;
  text-align: center;
}

.page-e-games-slot-machines__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-e-games-slot-machines__feature-item {
  background-color: #0F1A2D;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-e-games-slot-machines__feature-item h3 {
  font-size: 1.5em;
  color: #F0B90B;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-e-games-slot-machines__feature-item p {
  font-size: 1em;
  line-height: 1.7;
  color: #B0B0B0;
}

.page-e-games-slot-machines__icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(240, 185, 11, 0.5));
}

.page-e-games-slot-machines__icon--small {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(240, 185, 11, 0.5));
}

.page-e-games-slot-machines__cta-row {
  text-align: center;
  margin-top: 60px;
}

.page-e-games-slot-machines__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-e-games-slot-machines__list li {
  background-color: #1A2B4C;
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-e-games-slot-machines__list li h3 {
  color: #F0B90B;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-e-games-slot-machines__list li p {
  color: #E0E0E0;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-e-games-slot-machines__image-full-width {
  margin-top: 50px;
  text-align: center;
}

.page-e-games-slot-machines__image-full-width .page-e-games-slot-machines__image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.page-e-games-slot-machines__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-e-games-slot-machines__steps-list li {
  background-color: #0F1A2D;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-e-games-slot-machines__steps-list li h4 {
  color: #F0B90B;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-e-games-slot-machines__steps-list li p {
  color: #B0B0B0;
  font-size: 1em;
  line-height: 1.7;
}

.page-e-games-slot-machines__link {
  color: #F0B90B;
  text-decoration: none;
  font-weight: bold;
}

.page-e-games-slot-machines__link:hover {
  text-decoration: underline;
}

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

.page-e-games-slot-machines__tip-item {
  background-color: #1A2B4C;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-e-games-slot-machines__tip-item h4 {
  font-size: 1.4em;
  color: #F0B90B;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-e-games-slot-machines__tip-item p {
  color: #E0E0E0;
  font-size: 1em;
  line-height: 1.7;
}

.page-e-games-slot-machines__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-e-games-slot-machines__promo-list li {
  background-color: #0F1A2D;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-e-games-slot-machines__promo-list li h4 {
  color: #F0B90B;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-e-games-slot-machines__promo-list li p {
  color: #B0B0B0;
  font-size: 1em;
  line-height: 1.7;
}

.page-e-games-slot-machines__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-e-games-slot-machines__security-list li {
  background-color: #0F1A2D;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-e-games-slot-machines__security-list li h4 {
  color: #F0B90B;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-e-games-slot-machines__security-list li p {
  color: #B0B0B0;
  font-size: 1em;
  line-height: 1.7;
}

.page-e-games-slot-machines__faq-accordion {
  margin-top: 40px;
}

.page-e-games-slot-machines__faq-item {
  margin-bottom: 15px;
  border: 1px solid #2A3B5C;
  border-radius: 8px;
  overflow: hidden;
}

.page-e-games-slot-machines__faq-question {
  background-color: #1A2B4C;
  color: #F0B90B;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-e-games-slot-machines__faq-question:hover,
.page-e-games-slot-machines__faq-question.active {
  background-color: #2A3B5C;
}

.page-e-games-slot-machines__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #F0B90B;
  transition: transform 0.3s ease;
}

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

.page-e-games-slot-machines__faq-answer {
  background-color: #0F1A2D;
  color: #E0E0E0;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-e-games-slot-machines__faq-answer p {
  padding: 15px 0;
  margin: 0;
  line-height: 1.7;
}

.page-e-games-slot-machines__section--cta {
  background: linear-gradient(90deg, #F0B90B 0%, #E0A800 100%); /* Gold gradient for CTA */
  color: #1A2B4C;
  text-align: center;
  padding: 80px 0;
}

.page-e-games-slot-machines__section--cta .page-e-games-slot-machines__section-title {
  color: #1A2B4C;
}

.page-e-games-slot-machines__section--cta .page-e-games-slot-machines__section-title::after {
  background-color: #1A2B4C;
}

.page-e-games-slot-machines__cta-text {
  font-size: 1.3em;
  max-width: 800px;
  margin: 20px auto 40px;
  line-height: 1.8;
  color: #1A2B4C;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-e-games-slot-machines__hero-title {
    font-size: 2.8em;
  }

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

  .page-e-games-slot-machines__section-title {
    font-size: 2.2em;
  }

  .page-e-games-slot-machines__content-wrapper {
    flex-direction: column;
  }

  .page-e-games-slot-machines__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-e-games-slot-machines__text-content, .page-e-games-slot-machines__image-content {
    flex: none;
    width: 100%;
  }

  .page-e-games-slot-machines__feature-grid, .page-e-games-slot-machines__tips-grid, .page-e-games-slot-machines__promo-list, .page-e-games-slot-machines__security-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-e-games-slot-machines__hero {
    padding: 80px 0;
  }

  .page-e-games-slot-machines__hero-title {
    font-size: 2.2em;
  }

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

  .page-e-games-slot-machines__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }

  .page-e-games-slot-machines__section {
    padding: 60px 0;
  }

  .page-e-games-slot-machines__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-e-games-slot-machines__text-content h3 {
    font-size: 1.5em;
  }

  .page-e-games-slot-machines__list li h3 {
    font-size: 1.4em;
  }

  .page-e-games-slot-machines__steps-list {
    gap: 20px;
  }

  .page-e-games-slot-machines__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-e-games-slot-machines__faq-answer p {
    padding: 10px 0;
  }

  .page-e-games-slot-machines__cta-text {
    font-size: 1.1em;
  }

  .page-e-games-slot-machines__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

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

  .page-e-games-slot-machines__hero-subtitle {
    font-size: 0.9em;
  }

  .page-e-games-slot-machines__section-title {
    font-size: 1.5em;
  }

  .page-e-games-slot-machines__btn {
    display: block;
    margin: 10px auto;
  }
}