:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-site: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-slot-games-popular-recommendations {
  background-color: var(--background-site);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  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 */
  padding-bottom: 60px;
  background-color: var(--deep-green-color);
  overflow: hidden;
}

.page-slot-games-popular-recommendations__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  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 darken image for text readability */
}

.page-slot-games-popular-recommendations__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 10; /* Ensure content is above image */
}

.page-slot-games-popular-recommendations__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold-color);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-slot-games-popular-recommendations__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.page-slot-games-popular-recommendations__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  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: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-slot-games-popular-recommendations__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* Always white for primary button */
  border: 2px solid var(--glow-color);
  box-shadow: 0 0 15px var(--glow-color);
}

.page-slot-games-popular-recommendations__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--glow-color), 0 0 30px var(--glow-color);
}

.page-slot-games-popular-recommendations__btn-secondary {
  background-color: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-slot-games-popular-recommendations__btn-secondary:hover {
  background-color: var(--glow-color);
  color: var(--deep-green-color);
  transform: translateY(-3px);
}

.page-slot-games-popular-recommendations__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: 700;
  line-height: 1.3;
}

.page-slot-games-popular-recommendations__text-block {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games-popular-recommendations__introduction-section,
.page-slot-games-popular-recommendations__games-showcase,
.page-slot-games-popular-recommendations__guide-section,
.page-slot-games-popular-recommendations__strategy-section,
.page-slot-games-popular-recommendations__why-choose-us-section,
.page-slot-games-popular-recommendations__faq-section,
.page-slot-games-popular-recommendations__conclusion-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-slot-games-popular-recommendations__games-showcase {
  background-color: var(--background-site);
}

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

.page-slot-games-popular-recommendations__game-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-slot-games-popular-recommendations__card-title {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin: 0 20px 10px;
  font-weight: 600;
}

.page-slot-games-popular-recommendations__card-description {
  color: var(--text-secondary);
  font-size: 1rem;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slot-games-popular-recommendations__card-link {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-slot-games-popular-recommendations__card-link:hover {
  background-color: var(--secondary-color);
}

.page-slot-games-popular-recommendations__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-slot-games-popular-recommendations__step-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-slot-games-popular-recommendations__step-title {
  font-size: 1.4rem;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games-popular-recommendations__step-description {
  color: var(--text-secondary);
  font-size: 1rem;
}

.page-slot-games-popular-recommendations__step-description a {
  color: var(--glow-color);
  text-decoration: none;
  font-weight: bold;
}

.page-slot-games-popular-recommendations__step-description a:hover {
  text-decoration: underline;
}

.page-slot-games-popular-recommendations__strategy-list {
  list-style: none;
  padding: 0;
}

.page-slot-games-popular-recommendations__strategy-list li {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-slot-games-popular-recommendations__list-item-title {
  font-size: 1.4rem;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games-popular-recommendations__list-item-description {
  color: var(--text-secondary);
  font-size: 1rem;
}

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

.page-slot-games-popular-recommendations__feature-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-slot-games-popular-recommendations__feature-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-slot-games-popular-recommendations__feature-title {
  font-size: 1.3rem;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games-popular-recommendations__feature-description {
  color: var(--text-secondary);
  font-size: 1rem;
}

.page-slot-games-popular-recommendations__faq-list {
  margin-top: 30px;
}

.page-slot-games-popular-recommendations__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-slot-games-popular-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green-color);
  border-bottom: 1px solid var(--divider-color);
}

.page-slot-games-popular-recommendations__faq-question:hover {
  background-color: var(--primary-color);
}

.page-slot-games-popular-recommendations__faq-qtext {
  flex-grow: 1;
}

.page-slot-games-popular-recommendations__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--gold-color);
}

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

.page-slot-games-popular-recommendations__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
  background-color: var(--card-bg);
}

.page-slot-games-popular-recommendations__faq-answer p {
  margin: 0;
}

.page-slot-games-popular-recommendations__conclusion-section {
  text-align: center;
  padding-bottom: 60px;
}

.page-slot-games-popular-recommendations__btn-join-now {
  margin-top: 30px;
}

/* Ensure color contrast for links in dark background sections */
.page-slot-games-popular-recommendations__text-block a,
.page-slot-games-popular-recommendations__list-item-description a {
  color: var(--glow-color);
  text-decoration: underline;
}

.page-slot-games-popular-recommendations__text-block a:hover,
.page-slot-games-popular-recommendations__list-item-description a:hover {
  color: var(--gold-color);
}

/* Desktop-specific styles for video if any, to ensure width: 100% with max-width */
.page-slot-games-popular-recommendations__video-container {
  width: 100%;
  max-width: 1200px; /* Example max-width */
}

/* 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: 0 15px;
  }

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

  .page-slot-games-popular-recommendations__hero-content {
    position: static;
    transform: none;
    padding: 20px 15px;
    margin-top: 20px;
  }

  .page-slot-games-popular-recommendations__hero-image-wrapper {
    max-height: 300px;
  }

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

  .page-slot-games-popular-recommendations__subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .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%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-popular-recommendations__section-title {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 30px;
  }

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

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

  .page-slot-games-popular-recommendations__card-image,
  .page-slot-games-popular-recommendations__feature-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-popular-recommendations__game-card,
  .page-slot-games-popular-recommendations__step-card,
  .page-slot-games-popular-recommendations__feature-card {
    padding: 20px;
  }

  .page-slot-games-popular-recommendations__card-title,
  .page-slot-games-popular-recommendations__step-title,
  .page-slot-games-popular-recommendations__list-item-title,
  .page-slot-games-popular-recommendations__feature-title {
    font-size: 1.2rem;
  }

  .page-slot-games-popular-recommendations__card-description,
  .page-slot-games-popular-recommendations__step-description,
  .page-slot-games-popular-recommendations__list-item-description,
  .page-slot-games-popular-recommendations__feature-description {
    font-size: 0.95rem;
  }

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

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

  /* All image containers */
  .page-slot-games-popular-recommendations__hero-image-wrapper,
  .page-slot-games-popular-recommendations__game-card,
  .page-slot-games-popular-recommendations__feature-card,
  .page-slot-games-popular-recommendations__introduction-section,
  .page-slot-games-popular-recommendations__games-showcase,
  .page-slot-games-popular-recommendations__guide-section,
  .page-slot-games-popular-recommendations__strategy-section,
  .page-slot-games-popular-recommendations__why-choose-us-section,
  .page-slot-games-popular-recommendations__faq-section,
  .page-slot-games-popular-recommendations__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  /* Buttons container in mobile */
  .page-slot-games-popular-recommendations__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically */
  }
}

/* CSS for video click functionality, though not directly used for this page */
/* The prompt has a video click JS snippet, but no video element in HTML. */
/* If a video element was added, its container and the video itself would need these styles */
.page-slot-games-popular-recommendations video,
.page-slot-games-popular-recommendations__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-slot-games-popular-recommendations__video-section,
.page-slot-games-popular-recommendations__video-container,
.page-slot-games-popular-recommendations__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-slot-games-popular-recommendations video,
  .page-slot-games-popular-recommendations__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !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__video-section {
    padding-top: 10px !important;
  }

  .page-slot-games-popular-recommendations__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}