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

.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;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F;
  overflow: hidden;
}

.page-slot-games-popular-recommendations__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height */
}

.page-slot-games-popular-recommendations__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust as needed for visual flow, ensures text is below image */
  position: relative; /* Ensure z-index works */
  z-index: 10; /* Ensure content is above any potential background layers */
  background-color: #08160F; /* Match body bg to avoid contrast issues if margin-top reveals it */
  border-radius: 10px;
  padding-top: 120px; /* Give space for the content above */
}

.page-slot-games-popular-recommendations__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games-popular-recommendations__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games-popular-recommendations__btn-primary,
.page-slot-games-popular-recommendations__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-slot-games-popular-recommendations__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button gradient */
  color: #F2FFF6; /* Main text color */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-slot-games-popular-recommendations__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-slot-games-popular-recommendations__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Main green color */
  border: 2px solid #2E7A4E; /* Border color */
  box-shadow: none;
}

.page-slot-games-popular-recommendations__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-slot-games-popular-recommendations__intro-section,
.page-slot-games-popular-recommendations__games-showcase,
.page-slot-games-popular-recommendations__promotions-section,
.page-slot-games-popular-recommendations__security-section,
.page-slot-games-popular-recommendations__faq-section,
.page-slot-games-popular-recommendations__cta-bottom {
  padding: 60px 0;
  background-color: #08160F;
}

.page-slot-games-popular-recommendations__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #F2C14E; /* Gold for section titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-slot-games-popular-recommendations__text-block {
  font-size: 1.05rem;
  color: #A7D9B8; /* Secondary text color */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

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

.page-slot-games-popular-recommendations__game-card,
.page-slot-games-popular-recommendations__promo-card {
  background-color: #11271B; /* Card BG color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-slot-games-popular-recommendations__game-card:hover,
.page-slot-games-popular-recommendations__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

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

.page-slot-games-popular-recommendations__card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold for card titles */
  margin-bottom: 10px;
  padding: 0 15px;
  font-weight: 600;
}

.page-slot-games-popular-recommendations__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-slot-games-popular-recommendations__card-title a:hover {
  text-decoration: underline;
}

.page-slot-games-popular-recommendations__card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Secondary text color */
  padding: 0 15px;
  margin-bottom: 25px;
}

.page-slot-games-popular-recommendations__btn-play {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-slot-games-popular-recommendations__btn-play:hover {
  opacity: 0.9;
}

.page-slot-games-popular-recommendations__center-cta {
  text-align: center;
  margin-top: 50px;
}

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

.page-slot-games-popular-recommendations__security-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-slot-games-popular-recommendations__security-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games-popular-recommendations__security-content .page-slot-games-popular-recommendations__text-block {
  flex: 1;
  text-align: left;
  margin: 0;
  min-width: 300px;
}

.page-slot-games-popular-recommendations__security-content .page-slot-games-popular-recommendations__text-block p {
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-slot-games-popular-recommendations__security-content .page-slot-games-popular-recommendations__btn-secondary {
  margin-top: 20px;
}

.page-slot-games-popular-recommendations__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games-popular-recommendations__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2C14E; /* Gold for FAQ question */
  background-color: #0A4B2C; /* Deep Green for summary background */
  transition: background-color 0.3s ease;
}

.page-slot-games-popular-recommendations__faq-item summary:hover {
  background-color: #11A84E;
}

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

.page-slot-games-popular-recommendations__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2FFF6;
}

.page-slot-games-popular-recommendations__faq-item[open] .page-slot-games-popular-recommendations__faq-toggle {
  transform: rotate(45deg);
}

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

.page-slot-games-popular-recommendations__faq-answer a {
  color: #2AD16F;
  text-decoration: none;
}

.page-slot-games-popular-recommendations__faq-answer a:hover {
  text-decoration: underline;
}

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

  .page-slot-games-popular-recommendations__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-slot-games-popular-recommendations__hero-content {
    padding: 30px 15px;
    margin-top: -80px;
    padding-top: 100px;
  }

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

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

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

  .page-slot-games-popular-recommendations__btn-primary,
  .page-slot-games-popular-recommendations__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-popular-recommendations__intro-section,
  .page-slot-games-popular-recommendations__games-showcase,
  .page-slot-games-popular-recommendations__promotions-section,
  .page-slot-games-popular-recommendations__security-section,
  .page-slot-games-popular-recommendations__faq-section,
  .page-slot-games-popular-recommendations__cta-bottom {
    padding: 40px 0;
  }

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

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

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

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

  .page-slot-games-popular-recommendations__card-title {
    font-size: 1.3rem;
  }

  .page-slot-games-popular-recommendations__security-content {
    flex-direction: column;
  }

  .page-slot-games-popular-recommendations__security-image {
    max-width: 100%;
  }

  .page-slot-games-popular-recommendations__security-content .page-slot-games-popular-recommendations__text-block {
    text-align: center;
  }

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

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

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

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