/* style/slots-games-how-to-play.css */
.page-slots-games-how-to-play {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for general text on dark background */
  line-height: 1.6;
}

.page-slots-games-how-to-play__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5c80 100%);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-games-how-to-play__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-slots-games-how-to-play__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-slots-games-how-to-play__hero-description {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
}

.page-slots-games-how-to-play__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
  pointer-events: none;
}

.page-slots-games-how-to-play__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.page-slots-games-how-to-play__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  font-size: 1.1em;
}

.page-slots-games-how-to-play__btn--primary {
  background-color: #FFD700; /* Gold for primary CTA */
  color: #1A2E44; /* Dark blue for text on gold */
  border: 2px solid #FFD700;
}

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

.page-slots-games-how-to-play__btn--secondary {
  background-color: #1A2E44;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 20px;
  font-size: 1em;
}

.page-slots-games-how-to-play__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-2px);
}

.page-slots-games-how-to-play__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  margin-top: 10px;
  background-color: #3a5c80;
  color: #ffffff;
  border: 1px solid #5f6d7c;
}

.page-slots-games-how-to-play__btn--small:hover {
  background-color: #5f6d7c;
}

.page-slots-games-how-to-play__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

.page-slots-games-how-to-play__section {
  padding: 60px 0;
  background-color: #1A2E44; /* Main dark background */
  border-bottom: 1px solid #2a415a;
}

.page-slots-games-how-to-play__section:nth-of-type(even) {
  background-color: #15253a;
}

.page-slots-games-how-to-play__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slots-games-how-to-play__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-slots-games-how-to-play__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-slots-games-how-to-play__text {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slots-games-how-to-play__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-slots-games-how-to-play__inline-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-slots-games-how-to-play__game-card {
  background-color: #2a415a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slots-games-how-to-play__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-slots-games-how-to-play__game-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 2px solid #3a5c80;
}

.page-slots-games-how-to-play__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-games-how-to-play__game-card-description {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slots-games-how-to-play__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  color: #e0e0e0;
}

.page-slots-games-how-to-play__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1em;
}

.page-slots-games-how-to-play__list--check li::before {
  content: '✔';
  color: #76ff03; /* Green checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-slots-games-how-to-play__list--warning li::before {
  content: '⚠️';
  color: #FFD700; /* Gold warning sign */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-slots-games-how-to-play__numbered-list {
  list-style: none;
  counter-reset: item;
  padding: 0;
}

.page-slots-games-how-to-play__numbered-list li {
  margin-bottom: 30px;
  padding-left: 50px;
  position: relative;
  background-color: #2a415a;
  border-radius: 8px;
  padding: 25px 30px 25px 70px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-how-to-play__numbered-list li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A2E44;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.3em;
}

.page-slots-games-how-to-play__numbered-list h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-slots-games-how-to-play__numbered-list p {
  color: #c0c0c0;
  font-size: 1em;
  margin-bottom: 10px;
}

.page-slots-games-how-to-play__image--centered {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-games-how-to-play__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-slots-games-how-to-play__feature-card {
  background-color: #2a415a;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-how-to-play__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slots-games-how-to-play__feature-description {
  font-size: 0.95em;
  color: #c0c0c0;
}

.page-slots-games-how-to-play__cta-bottom {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #15253a;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-slots-games-how-to-play__cta-bottom .page-slots-games-how-to-play__text {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 25px;
}

.page-slots-games-how-to-play__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: page-slots-games-how-to-play__pulse 2s infinite;
}

.page-slots-games-how-to-play__floating-btn {
  background-color: #FFD700;
  color: #1A2E44;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-slots-games-how-to-play__floating-btn:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

.page-slots-games-how-to-play__floating-icon {
  font-size: 1.5em;
  margin-right: 10px;
}

@keyframes page-slots-games-how-to-play__pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-games-how-to-play__hero-title {
    font-size: 2.5em;
  }
  .page-slots-games-how-to-play__hero-description {
    font-size: 1em;
  }
  .page-slots-games-how-to-play__section-title {
    font-size: 2em;
  }
  .page-slots-games-how-to-play__game-card {
    padding: 20px;
  }
  .page-slots-games-how-to-play__game-card-title {
    font-size: 1.6em;
  }
  .page-slots-games-how-to-play__numbered-list li {
    padding: 20px 20px 20px 60px;
  }
  .page-slots-games-how-to-play__numbered-list li::before {
    left: 15px;
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-slots-games-how-to-play__hero {
    padding: 60px 15px;
  }
  .page-slots-games-how-to-play__hero-title {
    font-size: 2em;
  }
  .page-slots-games-how-to-play__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-slots-games-how-to-play__section {
    padding: 40px 0;
  }
  .page-slots-games-how-to-play__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slots-games-how-to-play__game-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-games-how-to-play__floating-promo {
    bottom: 15px;
    right: 15px;
  }
  .page-slots-games-how-to-play__floating-btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-slots-games-how-to-play__floating-icon {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-slots-games-how-to-play__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games-how-to-play__btn {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-slots-games-how-to-play__section-title {
    font-size: 1.5em;
  }
  .page-slots-games-how-to-play__text, .page-slots-games-how-to-play__game-card-description, .page-slots-games-how-to-play__list li, .page-slots-games-how-to-play__numbered-list p {
    font-size: 0.95em;
  }
  .page-slots-games-how-to-play__numbered-list li {
    padding: 15px 15px 15px 50px;
  }
  .page-slots-games-how-to-play__numbered-list li::before {
    left: 10px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  .page-slots-games-how-to-play__floating-btn {
    font-size: 0.9em;
    padding: 10px 15px;
  }
  .page-slots-games-how-to-play__floating-icon {
    font-size: 1.1em;
    margin-right: 5px;
  }
}