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

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

.page-slot-games-popular-slots__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-slot-games-popular-slots__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-slot-games-popular-slots__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-slot-games-popular-slots__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with opacity */
  border-radius: 10px;
  margin-top: 80px; /* Push content down to avoid image overlap */
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-slot-games-popular-slots__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-slot-games-popular-slots__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-slot-games-popular-slots__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games-popular-slots__cta-button--secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games-popular-slots__cta-button--secondary:hover {
  background: #1E3A2A; /* Deep Green */
}

.page-slot-games-popular-slots__cta-button--large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.page-slot-games-popular-slots__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slot-games-popular-slots__introduction-section,
.page-slot-games-popular-slots__featured-games-section,
.page-slot-games-popular-slots__benefits-section,
.page-slot-games-popular-slots__how-to-start-section,
.page-slot-games-popular-slots__faq-section,
.page-slot-games-popular-slots__final-cta-section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-slot-games-popular-slots__introduction-section p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games-popular-slots__highlight {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

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

.page-slot-games-popular-slots__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games-popular-slots__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

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

.page-slot-games-popular-slots__game-card-content {
  padding: 20px;
}

.page-slot-games-popular-slots__game-card-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-slot-games-popular-slots__game-card-title a:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-slot-games-popular-slots__game-card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-slot-games-popular-slots__game-card-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 15px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-slot-games-popular-slots__game-card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

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

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

.page-slot-games-popular-slots__benefit-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-slot-games-popular-slots__benefit-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-slot-games-popular-slots__step-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games-popular-slots__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games-popular-slots__step-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-slot-games-popular-slots__step-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-slot-games-popular-slots__step-link:hover {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

.page-slot-games-popular-slots__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.page-slot-games-popular-slots__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  outline: none;
  transition: background-color 0.3s ease;
}

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

.page-slot-games-popular-slots__faq-item summary:hover {
  background-color: #1E3A2A; /* Deep Green */
}

.page-slot-games-popular-slots__faq-qtext {
  flex-grow: 1;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games-popular-slots__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-slot-games-popular-slots__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games-popular-slots__final-cta-section {
  text-align: center;
  padding-bottom: 80px;
}

/* ---------------------------------------------------------------------- */
/* Responsive Styles */
/* ---------------------------------------------------------------------- */

/* All images basic responsive styles */
.page-slot-games-popular-slots img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

  .page-slot-games-popular-slots__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
    padding-bottom: 40px;
  }

  .page-slot-games-popular-slots__hero-content {
    margin-top: 40px;
    padding: 20px;
  }

  .page-slot-games-popular-slots__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

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

  .page-slot-games-popular-slots__cta-button,
  .page-slot-games-popular-slots__cta-button--large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px !important;
    font-size: 1rem !important;
  }

  .page-slot-games-popular-slots__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-slot-games-popular-slots__introduction-section,
  .page-slot-games-popular-slots__featured-games-section,
  .page-slot-games-popular-slots__benefits-section,
  .page-slot-games-popular-slots__how-to-start-section,
  .page-slot-games-popular-slots__faq-section,
  .page-slot-games-popular-slots__final-cta-section {
    padding: 40px 0;
  }

  .page-slot-games-popular-slots__game-grid,
  .page-slot-games-popular-slots__benefits-grid,
  .page-slot-games-popular-slots__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-slot-games-popular-slots__game-card-title {
    font-size: 1.2rem;
  }

  .page-slot-games-popular-slots__game-card-description,
  .page-slot-games-popular-slots__benefit-description,
  .page-slot-games-popular-slots__step-description,
  .page-slot-games-popular-slots__faq-answer p {
    font-size: 0.9rem;
  }

  .page-slot-games-popular-slots__benefit-icon {
    width: 80px;
    height: 80px;
  }

  .page-slot-games-popular-slots__benefit-title,
  .page-slot-games-popular-slots__step-title {
    font-size: 1.1rem;
  }

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

  .page-slot-games-popular-slots__faq-answer {
    padding: 0 20px 15px;
  }

  /* Force responsive images */
  .page-slot-games-popular-slots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Ensure all containers with images/buttons/videos are responsive */
  .page-slot-games-popular-slots__hero-section,
  .page-slot-games-popular-slots__introduction-section,
  .page-slot-games-popular-slots__featured-games-section,
  .page-slot-games-popular-slots__benefits-section,
  .page-slot-games-popular-slots__how-to-start-section,
  .page-slot-games-popular-slots__faq-section,
  .page-slot-games-popular-slots__final-cta-section,
  .page-slot-games-popular-slots__game-card,
  .page-slot-games-popular-slots__benefit-item,
  .page-slot-games-popular-slots__step-item,
  .page-slot-games-popular-slots__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Specific padding for sections in mobile */
  .page-slot-games-popular-slots__introduction-section .page-slot-games-popular-slots__container,
  .page-slot-games-popular-slots__featured-games-section .page-slot-games-popular-slots__container,
  .page-slot-games-popular-slots__benefits-section .page-slot-games-popular-slots__container,
  .page-slot-games-popular-slots__how-to-start-section .page-slot-games-popular-slots__container,
  .page-slot-games-popular-slots__faq-section .page-slot-games-popular-slots__container,
  .page-slot-games-popular-slots__final-cta-section .page-slot-games-popular-slots__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button group responsiveness */
  .page-slot-games-popular-slots__full-list-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}