/* style/slots-games-play-guide.css */
.page-slots-games-play-guide {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A1931; /* Primary dark blue background */
}

.page-slots-games-play-guide__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 450px;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%); /* Dark blue gradient */
}

.page-slots-games-play-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-slots-games-play-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-slots-games-play-guide__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-games-play-guide__hero-subtitle {
  font-size: 1.4em;
  color: #FFFFFF;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-games-play-guide__button {
  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;
  margin: 10px;
}

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

.page-slots-games-play-guide__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-slots-games-play-guide__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-slots-games-play-guide__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

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

.page-slots-games-play-guide__section {
  padding: 60px 0;
}

.page-slots-games-play-guide__section--intro {
  background-color: #1a2a4b;
}

.page-slots-games-play-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-slots-games-play-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-slots-games-play-guide__section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0; /* Light grey for body text */
}

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

.page-slots-games-play-guide__grid-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-play-guide__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slots-games-play-guide__grid-image {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-slots-games-play-guide__grid-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for grid titles */
  margin-bottom: 15px;
}

.page-slots-games-play-guide__grid-item ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
}

.page-slots-games-play-guide__grid-item ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 1em;
  color: #B0B0B0; /* Slightly darker grey for list items */
}

.page-slots-games-play-guide__text-center {
  text-align: center;
}

.page-slots-games-play-guide__text-bold {
  font-weight: bold;
  color: #FFD700;
}

.page-slots-games-play-guide__section--guide {
  background-color: #0A1931;
}

.page-slots-games-play-guide__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-slots-games-play-guide__steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  padding: 30px;
  background-color: #1a2a4b;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games-play-guide__steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #0A1931;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #0A1931;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-slots-games-play-guide__step-title {
  font-size: 2em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.page-slots-games-play-guide__step-image {
  max-width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-slots-games-play-guide__section--strategy {
  background-color: #1a2a4b;
}

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

.page-slots-games-play-guide__strategy-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-play-guide__strategy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slots-games-play-guide__strategy-title {
  font-size: 1.7em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slots-games-play-guide__strategy-image {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin-top: 20px;
  border-radius: 8px;
}

.page-slots-games-play-guide__section--faq {
  background-color: #0A1931;
}

.page-slots-games-play-guide__faq-item {
  background-color: #1a2a4b;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games-play-guide__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-slots-games-play-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  color: #FFD700;
}

.page-slots-games-play-guide__faq-question.active::after {
  content: '-';
}

.page-slots-games-play-guide__faq-answer {
  font-size: 1.05em;
  line-height: 1.7;
  color: #B0B0B0;
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-games-play-guide__faq-answer.active {
  display: block;
}

.page-slots-games-play-guide__section--cta {
  background-color: #1a2a4b;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slots-games-play-guide__hero-title {
    font-size: 2.8em;
  }
  .page-slots-games-play-guide__hero-subtitle {
    font-size: 1.2em;
  }
  .page-slots-games-play-guide__section-title {
    font-size: 2em;
  }
  .page-slots-games-play-guide__grid-image {
    height: 180px;
  }
  .page-slots-games-play-guide__grid-title {
    font-size: 1.6em;
  }
  .page-slots-games-play-guide__strategy-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-slots-games-play-guide__hero {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-slots-games-play-guide__hero-title {
    font-size: 2.2em;
  }
  .page-slots-games-play-guide__hero-subtitle {
    font-size: 1.1em;
  }
  .page-slots-games-play-guide__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slots-games-play-guide__section {
    padding: 40px 0;
  }
  .page-slots-games-play-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slots-games-play-guide__grid {
    grid-template-columns: 1fr;
  }
  .page-slots-games-play-guide__grid-image {
    height: 200px;
  }
  .page-slots-games-play-guide__steps li {
    padding: 20px;
  }
  .page-slots-games-play-guide__steps li::before {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    top: -15px;
  }
  .page-slots-games-play-guide__step-title {
    font-size: 1.6em;
  }
  .page-slots-games-play-guide__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-games-play-guide__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-slots-games-play-guide__hero {
    padding: 40px 10px;
    min-height: 350px;
  }
  .page-slots-games-play-guide__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games-play-guide__hero-subtitle {
    font-size: 0.9em;
  }
  .page-slots-games-play-guide__button {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
  }
  .page-slots-games-play-guide__section-title {
    font-size: 1.5em;
  }
  .page-slots-games-play-guide__grid-title {
    font-size: 1.4em;
  }
  .page-slots-games-play-guide__step-title {
    font-size: 1.4em;
  }
  .page-slots-games-play-guide__strategy-title {
    font-size: 1.3em;
  }
  .page-slots-games-play-guide__faq-question {
    font-size: 1.1em;
    padding-right: 20px;
  }
  .page-slots-games-play-guide__faq-question::after {
    font-size: 1.2em;
  }
}