.page-games-slot-machine-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2342;
  margin: 0;
  padding: 0;
}

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

.page-games-slot-machine-guide__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A6D 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-games-slot-machine-guide__hero-content {
  z-index: 10;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-games-slot-machine-guide__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
  font-weight: bold;
}

.page-games-slot-machine-guide__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-games-slot-machine-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  overflow: hidden;
}

.page-games-slot-machine-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
  transform: scale(1.1);
}

.page-games-slot-machine-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-games-slot-machine-guide__section:last-of-type {
  border-bottom: none;
}

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

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

.page-games-slot-machine-guide p {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: #E0E0E0;
  text-align: justify;
}

.page-games-slot-machine-guide ul,
.page-games-slot-machine-guide ol {
  margin-left: 20px;
  margin-bottom: 1em;
  color: #E0E0E0;
}

.page-games-slot-machine-guide li {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}

.page-games-slot-machine-guide ul li::before {
  content: '⚡'; /* Custom bullet point */
  color: #FFD700;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.page-games-slot-machine-guide ol li {
  margin-bottom: 1em;
}

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

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

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

.page-games-slot-machine-guide__button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-games-slot-machine-guide__button--secondary {
  background-color: #1A3A6D;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-games-slot-machine-guide__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-games-slot-machine-guide__button--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-games-slot-machine-guide__button--outline:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-games-slot-machine-guide__inline-link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-games-slot-machine-guide__inline-link:hover {
  color: #E6C200;
}

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

.page-games-slot-machine-guide__grid--2-col {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

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

.page-games-slot-machine-guide__card:hover {
  transform: translateY(-10px);
}

.page-games-slot-machine-guide__card-image {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

.page-games-slot-machine-guide__card-description {
  font-size: 1em;
  color: #C0C0C0;
}

.page-games-slot-machine-guide__tip-item {
  background-color: #1A3A6D;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-games-slot-machine-guide__tip-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-games-slot-machine-guide__responsible-gambling p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1em auto;
}

.page-games-slot-machine-guide__cta {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-slot-machine-guide__title {
    font-size: 2.8em;
  }
  .page-games-slot-machine-guide__subtitle {
    font-size: 1.2em;
  }
  .page-games-slot-machine-guide__section-title {
    font-size: 2em;
  }
  .page-games-slot-machine-guide__grid--2-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-games-slot-machine-guide__hero {
    padding: 80px 0;
  }
  .page-games-slot-machine-guide__title {
    font-size: 2.2em;
  }
  .page-games-slot-machine-guide__subtitle {
    font-size: 1em;
  }
  .page-games-slot-machine-guide__section {
    padding: 40px 0;
  }
  .page-games-slot-machine-guide__section-title {
    font-size: 1.8em;
  }
  .page-games-slot-machine-guide__grid {
    grid-template-columns: 1fr;
  }
  .page-games-slot-machine-guide__card-image {
    height: 150px;
  }
  .page-games-slot-machine-guide__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-games-slot-machine-guide__hero {
    padding: 60px 0;
  }
  .page-games-slot-machine-guide__title {
    font-size: 1.8em;
  }
  .page-games-slot-machine-guide__subtitle {
    font-size: 0.9em;
  }
  .page-games-slot-machine-guide p,
  .page-games-slot-machine-guide li {
    font-size: 0.95em;
  }
  .page-games-slot-machine-guide__section-title {
    font-size: 1.5em;
  }
  .page-games-slot-machine-guide__card-title {
    font-size: 1.3em;
  }
  .page-games-slot-machine-guide__tip-title {
    font-size: 1.4em;
  }
  .page-games-slot-machine-guide__button {
    margin: 5px;
  }
}