/* style/slots-games-popular-slots.css */
.page-slots-games-popular-slots {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0d1a2d; /* Darker blue background */
  line-height: 1.6;
}

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

.page-slots-games-popular-slots__hero {
  background: linear-gradient(135deg, #003366 0%, #0d1a2d 100%); /* JJ88 Blue to darker blue */
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-slots-games-popular-slots__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-slots-games-popular-slots__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Glory Gold for emphasis */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  line-height: 1.2;
}

.page-slots-games-popular-slots__hero-description {
  font-size: 1.2em;
  color: #c0c0c0;
  margin-bottom: 30px;
}

.page-slots-games-popular-slots__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%; /* Adjust as needed */
  max-width: 700px;
  opacity: 0.3;
  z-index: 1;
}

.page-slots-games-popular-slots__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-slots-games-popular-slots__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, box-shadow 0.3s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-slots-games-popular-slots__btn--primary {
  background-color: #FFD700; /* Glory Gold */
  color: #003366; /* JJ88 Blue */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-slots-games-popular-slots__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-slots-games-popular-slots__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Glory Gold */
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.4);
}

.page-slots-games-popular-slots__btn--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-slots-games-popular-slots__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Glory Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-slots-games-popular-slots__introduction, 
.page-slots-games-popular-slots__top-slots, 
.page-slots-games-popular-slots__how-to-play, 
.page-slots-games-popular-slots__tips-strategy, 
.page-slots-games-popular-slots__app-download, 
.page-slots-games-popular-slots__promotions, 
.page-slots-games-popular-slots__faq, 
.page-slots-games-popular-slots__cta {
  padding: 60px 0;
}

.page-slots-games-popular-slots__text-content {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #c0c0c0;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-games-popular-slots__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-slots-games-popular-slots__feature-item {
  background-color: #003366; /* JJ88 Blue */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-slots-games-popular-slots__feature-item:hover {
  transform: translateY(-10px);
}

.page-slots-games-popular-slots__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-slots-games-popular-slots__feature-title {
  font-size: 1.8em;
  color: #FFD700; /* Glory Gold */
  margin-bottom: 15px;
}

.page-slots-games-popular-slots__feature-description {
  font-size: 1em;
  color: #a0a0a0;
}

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

.page-slots-games-popular-slots__slot-card {
  background-color: #003366; /* JJ88 Blue */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-slots-games-popular-slots__slot-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.page-slots-games-popular-slots__slot-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-slots-games-popular-slots__slot-card h3 {
  font-size: 1.8em;
  color: #FFD700; /* Glory Gold */
  margin: 20px 20px 10px;
}

.page-slots-games-popular-slots__slot-provider {
  font-size: 0.9em;
  color: #a0a0a0;
  margin: 0 20px 15px;
}

.page-slots-games-popular-slots__slot-info {
  font-size: 1em;
  color: #c0c0c0;
  margin: 5px 20px;
}

.page-slots-games-popular-slots__btn--play {
  margin-top: auto; /* Pushes button to the bottom */
  background-color: #FFD700;
  color: #003366;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 0 0 12px 12px;
  text-align: center;
  display: block;
  width: 100%;
}

.page-slots-games-popular-slots__btn--play:hover {
  background-color: #e6c200;
  transform: none;
}

.page-slots-games-popular-slots__how-to-play ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-slots-games-popular-slots__how-to-play ol li {
  counter-increment: step-counter;
  background-color: #003366; /* JJ88 Blue */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-games-popular-slots__how-to-play ol li::before {
  content: counter(step-counter);
  background-color: #FFD700; /* Glory Gold */
  color: #003366;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 20px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-slots-games-popular-slots__how-to-play ol li strong {
  color: #FFD700;
  font-size: 1.2em;
}

.page-slots-games-popular-slots__how-to-play ol li p {
  margin: 0;
  color: #c0c0c0;
  text-align: left;
}

.page-slots-games-popular-slots__tips-strategy ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-slots-games-popular-slots__tips-strategy ul li {
  background-color: #003366; /* JJ88 Blue */
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  color: #c0c0c0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games-popular-slots__tips-strategy ul li strong {
  color: #FFD700;
}

.page-slots-games-popular-slots__strategy-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-slots-games-popular-slots__app-download-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-slots-games-popular-slots__btn--app-store,
.page-slots-games-popular-slots__btn--google-play {
  display: inline-flex;
  align-items: center;
  background-color: #003366; /* JJ88 Blue */
  color: #FFD700; /* Glory Gold */
  border: 2px solid #FFD700;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-games-popular-slots__btn--app-store:hover,
.page-slots-games-popular-slots__btn--google-play:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-slots-games-popular-slots__app-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: invert(1) drop-shadow(0 0 3px rgba(255, 215, 0, 0.5)); /* Adjust icon color to gold */
}

.page-slots-games-popular-slots__btn--app-store:hover .page-slots-games-popular-slots__app-icon,
.page-slots-games-popular-slots__btn--google-play:hover .page-slots-games-popular-slots__app-icon {
  filter: invert(0) drop-shadow(0 0 3px rgba(0, 51, 102, 0.5)); /* Adjust icon color to blue on hover */
}

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

.page-slots-games-popular-slots__promo-card {
  background-color: #003366; /* JJ88 Blue */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-slots-games-popular-slots__promo-card:hover {
  transform: translateY(-10px);
}

.page-slots-games-popular-slots__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-slots-games-popular-slots__promo-title {
  font-size: 1.8em;
  color: #FFD700; /* Glory Gold */
  margin: 20px 20px 10px;
}

.page-slots-games-popular-slots__promo-description {
  font-size: 1em;
  color: #c0c0c0;
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-slots-games-popular-slots__btn--promo {
  background-color: #FFD700;
  color: #003366;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 0 0 12px 12px;
  text-align: center;
  display: block;
  width: 100%;
  margin-top: auto;
}

.page-slots-games-popular-slots__btn--promo:hover {
  background-color: #e6c200;
  transform: none;
}

.page-slots-games-popular-slots__faq-item {
  background-color: #003366; /* JJ88 Blue */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-games-popular-slots__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Glory Gold */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-slots-games-popular-slots__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-slots-games-popular-slots__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-slots-games-popular-slots__faq-answer {
  font-size: 1em;
  color: #c0c0c0;
  margin-top: 15px;
  display: none; /* Hidden by default */
  overflow: hidden;
}

.page-slots-games-popular-slots__faq-answer.active {
  display: block;
}

.page-slots-games-popular-slots__cta {
  background-color: #003366; /* JJ88 Blue */
  padding: 80px 0;
  text-align: center;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-slots-games-popular-slots__cta-title {
  font-size: 3em;
  color: #FFD700; /* Glory Gold */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-slots-games-popular-slots__cta-description {
  font-size: 1.2em;
  color: #c0c0c0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-games-popular-slots .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-games-popular-slots__hero-title {
    font-size: 2.8em;
  }
  .page-slots-games-popular-slots__section-title,
  .page-slots-games-popular-slots__cta-title {
    font-size: 2.2em;
  }
  .page-slots-games-popular-slots__hero-image-wrapper {
    width: 60%;
    right: -10%;
  }
}

@media (max-width: 768px) {
  .page-slots-games-popular-slots__hero-title {
    font-size: 2.2em;
  }
  .page-slots-games-popular-slots__hero-description {
    font-size: 1em;
  }
  .page-slots-games-popular-slots__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slots-games-popular-slots__section-title,
  .page-slots-games-popular-slots__cta-title {
    font-size: 1.8em;
  }
  .page-slots-games-popular-slots__text-content {
    font-size: 0.95em;
  }
  .page-slots-games-popular-slots__hero-image-wrapper {
    width: 80%;
    right: -20%;
    opacity: 0.2;
  }
  .page-slots-games-popular-slots__app-download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games-popular-slots__btn--app-store,
  .page-slots-games-popular-slots__btn--google-play {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .page-slots-games-popular-slots__hero {
    padding: 80px 0 40px;
  }
  .page-slots-games-popular-slots__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games-popular-slots__section-title,
  .page-slots-games-popular-slots__cta-title {
    font-size: 1.5em;
  }
  .page-slots-games-popular-slots__feature-item,
  .page-slots-games-popular-slots__slot-card,
  .page-slots-games-popular-slots__promo-card,
  .page-slots-games-popular-slots__faq-item {
    padding: 20px;
  }
  .page-slots-games-popular-slots__hero-image-wrapper {
    display: none;
  }
  .page-slots-games-popular-slots__hero-content {
    margin-bottom: 0;
  }
  .page-slots-games-popular-slots__how-to-play ol li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-slots-games-popular-slots__how-to-play ol li::before {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-slots-games-popular-slots__how-to-play ol li strong {
    text-align: center;
    display: block;
    margin-bottom: 10px;
  }
  .page-slots-games-popular-slots__how-to-play ol li p {
    text-align: center;
  }
}