.page-games-slot-machines {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-games-slot-machines__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%); /* Gradient from main to slightly lighter blue */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFC107;
}

.page-games-slot-machines__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-games-slot-machines__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFC107; /* Accent 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;
  color: #F0F0F0;
}

.page-games-slot-machines__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-games-slot-machines__btn--primary {
  background-color: #FFC107; /* Accent gold for primary button */
  color: #0A1931; /* Dark blue text for contrast */
}

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

.page-games-slot-machines__btn--secondary {
  background-color: #1a3a6b; /* Slightly lighter blue for secondary button */
  color: #FFC107;
  border: 2px solid #FFC107;
}

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

.page-games-slot-machines__hero-image-wrapper {
  margin-top: 40px;
  max-width: 900px;
  width: 100%;
}

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

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

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

.page-games-slot-machines__introduction, .page-games-slot-machines__game-types, .page-games-slot-machines__exclusive-features, .page-games-slot-machines__how-to-play, .page-games-slot-machines__tips-strategy, .page-games-slot-machines__faq, .page-games-slot-machines__conclusion {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.page-games-slot-machines__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #E0E0E0;
}

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

.page-games-slot-machines__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.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: #1a2a47; /* Slightly lighter dark blue */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-slot-machines__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-games-slot-machines__grid-title {
  font-size: 1.6em;
  color: #FFC107;
  margin-bottom: 15px;
}

.page-games-slot-machines__grid-description {
  font-size: 1em;
  color: #B0B0B0;
}

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

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

.page-games-slot-machines__feature-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-games-slot-machines__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFC107);
}

.page-games-slot-machines__feature-title {
  font-size: 1.8em;
  color: #FFC107;
  margin-bottom: 10px;
}

.page-games-slot-machines__how-to-play ol {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.page-games-slot-machines__steps-list li {
  background-color: #1a2a47;
  border-left: 5px solid #FFC107;
  padding: 25px 30px 25px 70px;
  margin-bottom: 25px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-games-slot-machines__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFC107;
  color: #0A1931;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
}

.page-games-slot-machines__step-title {
  font-size: 1.6em;
  color: #FFC107;
  margin-bottom: 10px;
}

.page-games-slot-machines__steps-list p a {
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
}

.page-games-slot-machines__steps-list p a:hover {
  text-decoration: underline;
}

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

.page-games-slot-machines__strategy-list li {
  background-color: #1a2a47;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-games-slot-machines__strategy-title {
  font-size: 1.6em;
  color: #FFC107;
  margin-bottom: 10px;
}

.page-games-slot-machines__cta-banner {
  background: linear-gradient(90deg, #0A1931, #2c5a97);
  border-radius: 10px;
  padding: 40px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFC107;
}

.page-games-slot-machines__banner-image {
  width: 150px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

.page-games-slot-machines__banner-content {
  flex-grow: 1;
}

.page-games-slot-machines__banner-title {
  font-size: 2.2em;
  color: #FFC107;
  margin-bottom: 15px;
}

.page-games-slot-machines__banner-description {
  font-size: 1.1em;
  color: #F0F0F0;
  margin-bottom: 25px;
}

.page-games-slot-machines__accordion {
  margin-top: 40px;
}

.page-games-slot-machines__accordion-item {
  background-color: #1a2a47;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.page-games-slot-machines__accordion-header {
  background-color: #2c5a97; /* Slightly lighter blue for header */
  color: #FFC107;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-games-slot-machines__accordion-header:hover {
  background-color: #3e72c4;
}

.page-games-slot-machines__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-games-slot-machines__accordion-content {
  padding: 0 25px;
  background-color: #1a2a47;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-games-slot-machines__accordion-content p {
  padding: 15px 0;
  font-size: 1.05em;
  color: #B0B0B0;
}

.page-games-slot-machines__accordion-content p a {
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
}

.page-games-slot-machines__accordion-content p a:hover {
  text-decoration: underline;
}

.page-games-slot-machines__final-cta {
  text-align: center;
  margin-top: 50px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-slot-machines__hero {
    padding: 60px 20px;
  }

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

  .page-games-slot-machines__hero-description {
    font-size: 1.1em;
  }

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

  .page-games-slot-machines__feature-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-games-slot-machines__cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .page-games-slot-machines__banner-image {
    margin-bottom: 20px;
  }

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

@media (max-width: 768px) {
  .page-games-slot-machines__hero {
    flex-direction: column;
  }

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

  .page-games-slot-machines__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-games-slot-machines__grid {
    grid-template-columns: 1fr;
  }

  .page-games-slot-machines__feature-list {
    grid-template-columns: 1fr;
  }

  .page-games-slot-machines__steps-list li {
    padding-left: 20px;
    border-left: none;
  }

  .page-games-slot-machines__steps-list li::before {
    position: static;
    transform: none;
    margin-bottom: 10px;
    display: inline-flex;
    margin-right: 10px;
  }

  .page-games-slot-machines__accordion-header {
    font-size: 1.1em;
  }

  .page-games-slot-machines__accordion-content p {
    font-size: 0.95em;
  }
}

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

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

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

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

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

  .page-games-slot-machines__banner-description {
    font-size: 0.95em;
  }

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