.page-slot-games-popular-recommendations {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-slot-games-popular-recommendations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games-popular-recommendations__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  text-align: center;
  overflow: hidden;
  background-color: #0A4B2C; /* Deep Green for hero section background */
}

.page-slot-games-popular-recommendations__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height of the image wrapper */
  overflow: hidden;
  position: relative;
}

.page-slot-games-popular-recommendations__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-slot-games-popular-recommendations__hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin-top: -150px; /* Pull content up over the image, but not directly on it */
  padding: 0 20px;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games-popular-recommendations__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games-popular-recommendations__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games-popular-recommendations__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games-popular-recommendations__btn-primary,
.page-slot-games-popular-recommendations__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-slot-games-popular-recommendations__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  border: none;
}

.page-slot-games-popular-recommendations__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(87, 227, 141, 0.4);
}

.page-slot-games-popular-recommendations__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2C14E; /* Gold */
  border: 2px solid #2E7A4E; /* Border */
}

.page-slot-games-popular-recommendations__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: #1E3A2A; /* Divider */
}

.page-slot-games-popular-recommendations__introduction-section,
.page-slot-games-popular-recommendations__benefits-section,
.page-slot-games-popular-recommendations__tips-section,
.page-slot-games-popular-recommendations__cta-bottom-section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games-popular-recommendations__games-showcase,
.page-slot-games-popular-recommendations__faq-section {
  padding: 60px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
}

.page-slot-games-popular-recommendations__heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slot-games-popular-recommendations__heading--light {
  color: #F2FFF6; /* Text Main */
}

.page-slot-games-popular-recommendations__sub-heading {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

.page-slot-games-popular-recommendations__sub-heading--light {
  color: #F2FFF6; /* Text Main */
}

.page-slot-games-popular-recommendations__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: left;
  color: #F2FFF6; /* Text Main */
}

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

.page-slot-games-popular-recommendations__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games-popular-recommendations__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-slot-games-popular-recommendations__card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  padding: 20px 20px 10px;
}

.page-slot-games-popular-recommendations__card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-slot-games-popular-recommendations__card-features {
  list-style: none;
  padding: 0 20px 15px;
  margin: 0;
  font-size: 0.9rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games-popular-recommendations__card-features li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}

.page-slot-games-popular-recommendations__card-features li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
}

.page-slot-games-popular-recommendations__card .page-slot-games-popular-recommendations__btn-primary {
  margin: 20px;
  text-align: center;
}

.page-slot-games-popular-recommendations__cta-center {
  margin-top: 40px;
}

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

.page-slot-games-popular-recommendations__benefit-item {
  padding: 30px;
  text-align: center;
}

.page-slot-games-popular-recommendations__benefit-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-slot-games-popular-recommendations__benefit-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-slot-games-popular-recommendations__benefit-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-slot-games-popular-recommendations__tip-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  padding-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games-popular-recommendations__tip-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-slot-games-popular-recommendations__tip-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  padding: 0 20px 10px;
}

.page-slot-games-popular-recommendations__tip-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px;
}

.page-slot-games-popular-recommendations__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.page-slot-games-popular-recommendations__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games-popular-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker */
}

.page-slot-games-popular-recommendations__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games-popular-recommendations__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-slot-games-popular-recommendations__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-slot-games-popular-recommendations__faq-item[open] .page-slot-games-popular-recommendations__faq-toggle {
  content: '−';
}

.page-slot-games-popular-recommendations__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-slot-games-popular-recommendations__cta-bottom-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 20px;
  text-align: center;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-slot-games-popular-recommendations__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-slot-games-popular-recommendations {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games-popular-recommendations__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-slot-games-popular-recommendations__hero-content {
    margin-top: -80px; /* Adjust for smaller screens */
    padding: 0 15px;
  }

  .page-slot-games-popular-recommendations__main-title {
    font-size: 2rem;
  }

  .page-slot-games-popular-recommendations__description {
    font-size: 1rem;
  }

  .page-slot-games-popular-recommendations__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-slot-games-popular-recommendations__btn-primary,
  .page-slot-games-popular-recommendations__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  .page-slot-games-popular-recommendations__introduction-section,
  .page-slot-games-popular-recommendations__games-showcase,
  .page-slot-games-popular-recommendations__benefits-section,
  .page-slot-games-popular-recommendations__tips-section,
  .page-slot-games-popular-recommendations__faq-section,
  .page-slot-games-popular-recommendations__cta-bottom-section {
    padding: 40px 0;
  }

  .page-slot-games-popular-recommendations__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games-popular-recommendations__heading {
    font-size: 1.8rem;
  }

  .page-slot-games-popular-recommendations__sub-heading {
    font-size: 1rem;
  }

  .page-slot-games-popular-recommendations__text-block {
    font-size: 0.95rem;
  }

  .page-slot-games-popular-recommendations__game-cards,
  .page-slot-games-popular-recommendations__benefits-grid,
  .page-slot-games-popular-recommendations__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .page-slot-games-popular-recommendations__card-image,
  .page-slot-games-popular-recommendations__tip-image {
    height: 180px;
  }

  .page-slot-games-popular-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-popular-recommendations__section,
  .page-slot-games-popular-recommendations__card,
  .page-slot-games-popular-recommendations__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-popular-recommendations__video-section {
    padding-top: 10px !important;
  }

  .page-slot-games-popular-recommendations__video-section,
  .page-slot-games-popular-recommendations__video-container,
  .page-slot-games-popular-recommendations__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-slot-games-popular-recommendations__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-slot-games-popular-recommendations__faq-answer {
    font-size: 0.9rem;
    padding: 10px 20px 15px;
  }
}