.page-slots-games {
  font-family: 'Arial', sans-serif;
  color: #0A1931; /* Dark blue for primary text */
  background-color: #f8f9fa; /* Light grey background */
  line-height: 1.6;
}

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

.page-slots-games__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-slots-games__container--flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-slots-games__hero-section {
  background: linear-gradient(135deg, #0A1931, #2a3d58); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-games__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-slots-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  line-height: 1.2;
}

.page-slots-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-slots-games__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  max-width: 50%;
  height: auto;
  z-index: 0;
}

@media (max-width: 768px) {
  .page-slots-games__hero-title {
    font-size: 2.5em;
  }
  .page-slots-games__hero-description {
    font-size: 1em;
  }
  .page-slots-games__hero-image {
    display: none;
  }
}

.page-slots-games__section {
  padding: 60px 0;
}

.page-slots-games__section--why-choose {
  background-color: #ffffff;
}

.page-slots-games__section-title {
  font-size: 2.5em;
  color: #0A1931;
  text-align: center;
  margin-bottom: 40px;
}

.page-slots-games__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #333;
}

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

.page-slots-games__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-slots-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-slots-games__feature-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-slots-games__feature-text {
  font-size: 1em;
  color: #555;
}

.page-slots-games__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-slots-games__image-centered {
  display: block;
  margin: 50px auto 0;
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-slots-games__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slots-games__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-slots-games__card-title {
  font-size: 1.8em;
  color: #0A1931;
  margin-bottom: 15px;
}

.page-slots-games__card-text {
  font-size: 1em;
  color: #555;
}

.page-slots-games__numbered-list {
  list-style: none;
  counter-reset: my-counter;
  padding: 0;
  margin-top: 40px;
}

.page-slots-games__numbered-list li {
  counter-increment: my-counter;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}

.page-slots-games__numbered-list li::before {
  content: counter(my-counter);
  background-color: #FFD700; /* Gold for numbers */
  color: #0A1931;
  font-weight: bold;
  font-size: 1.5em;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.page-slots-games__list-title {
  font-size: 1.5em;
  color: #0A1931;
  margin-bottom: 10px;
}

.page-slots-games__list-text {
  font-size: 1em;
  color: #555;
}

.page-slots-games__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .page-slots-games__grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-slots-games__container--flex {
    flex-direction: column;
  }
}

.page-slots-games__sub-title {
  font-size: 1.8em;
  color: #0A1931;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-slots-games__sub-title:first-of-type {
  margin-top: 0;
}

.page-slots-games__paragraph {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-slots-games__image-wrapper {
  text-align: center;
}

.page-slots-games__image-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-slots-games__mobile-app-content {
  flex: 1;
}

.page-slots-games__mobile-app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-slots-games__provider-list {
  list-style: disc inside;
  font-size: 1.1em;
  color: #333;
  max-width: 800px;
  margin: 30px auto;
  padding-left: 20px;
}

.page-slots-games__provider-list li {
  margin-bottom: 10px;
}

.page-slots-games__cta-section {
  background-color: #0A1931; /* Dark blue background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-slots-games__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-slots-games__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-slots-games__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;
  white-space: nowrap;
}

.page-slots-games__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-slots-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-slots-games__btn--secondary {
  background-color: transparent;
  color: #0A1931;
  border: 2px solid #0A1931;
}

.page-slots-games__btn--secondary:hover {
  background-color: #0A1931;
  color: #FFD700;
}

.page-slots-games__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-slots-games__btn--link {
  background-color: transparent;
  color: #0A1931;
  border: 1px solid #0A1931;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-slots-games__btn--link:hover {
  background-color: #0A1931;
  color: #FFD700;
}

.page-slots-games__inline-link {
  color: #FFD700;
  text-decoration: underline;
}

.page-slots-games__inline-link:hover {
  color: #e6c200;
}

.page-slots-games__highlight-text {
  color: #FFD700;
  font-weight: bold;
}

.page-slots-games__detail-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots-games__detail-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slots-games__detail-title {
  font-size: 1.5em;
  color: #0A1931;
  margin-bottom: 10px;
}

.page-slots-games__detail-title a {
  color: #0A1931;
  text-decoration: none;
}

.page-slots-games__detail-title a:hover {
  color: #FFD700;
}

.page-slots-games__detail-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-slots-games__hero-section {
    padding: 60px 15px;
  }
  .page-slots-games__section-title {
    font-size: 2em;
  }
  .page-slots-games__section-intro {
    font-size: 0.95em;
  }
  .page-slots-games__grid-3-cols, .page-slots-games__detail-pages-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-games__numbered-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-slots-games__numbered-list li::before {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-slots-games__cta-title {
    font-size: 2em;
  }
  .page-slots-games__cta-text {
    font-size: 1em;
  }
  .page-slots-games__btn--large {
    padding: 15px 30px;
    font-size: 1em;
  }
}