.page-slot-games-popular-slots {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #ffffff; /* Default 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__section {
  padding: 60px 0;
}

.page-slot-games-popular-slots__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games-popular-slots__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-slot-games-popular-slots__section-title {
  font-size: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-slot-games-popular-slots__dark-bg .page-slot-games-popular-slots__section-title {
  color: #ffffff;
}

.page-slot-games-popular-slots__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.page-slot-games-popular-slots__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
  padding-top: var(--header-offset, 120px);
  background-color: #017439; /* Fallback */
}

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

.page-slot-games-popular-slots__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 2;
}

.page-slot-games-popular-slots__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.page-slot-games-popular-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-slot-games-popular-slots__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
}

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

.page-slot-games-popular-slots__btn-primary,
.page-slot-games-popular-slots__btn-secondary,
.page-slot-games-popular-slots__btn-play {
  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, color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-slot-games-popular-slots__btn-primary {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-slot-games-popular-slots__btn-primary:hover {
  background-color: #a30606;
  transform: translateY(-3px);
}

.page-slot-games-popular-slots__btn-secondary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-slot-games-popular-slots__btn-secondary:hover {
  background-color: #005a2e;
  transform: translateY(-3px);
}

.page-slot-games-popular-slots__btn-play {
  background-color: #017439;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

.page-slot-games-popular-slots__btn-play:hover {
  background-color: #005a2e;
}

/* About Slots Section */
.page-slot-games-popular-slots__about-slots .page-slot-games-popular-slots__section-title {
  color: #017439;
}

.page-slot-games-popular-slots__about-slots .page-slot-games-popular-slots__section-description {
  text-align: left;
  margin-bottom: 20px;
}

/* Popular Games Section */
.page-slot-games-popular-slots__popular-games .page-slot-games-popular-slots__section-title {
  color: #017439;
}

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

.page-slot-games-popular-slots__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

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

.page-slot-games-popular-slots__game-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
  padding: 0 15px;
}

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

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

.page-slot-games-popular-slots__game-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

/* Features Section */
.page-slot-games-popular-slots__features .page-slot-games-popular-slots__section-title {
  color: #ffffff;
}

.page-slot-games-popular-slots__features .page-slot-games-popular-slots__section-description {
  color: #f0f0f0;
}

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

.page-slot-games-popular-slots__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-popular-slots__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  min-width: 200px; /* Enforce minimum size for images */
  min-height: 150px;
  width: 100%; /* Allow larger images to scale down */
  height: auto;
}

.page-slot-games-popular-slots__feature-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-slot-games-popular-slots__feature-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Tips & Strategy Section */
.page-slot-games-popular-slots__tips-strategy .page-slot-games-popular-slots__section-title {
  color: #017439;
}

.page-slot-games-popular-slots__tips-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-slot-games-popular-slots__tips-item {
  background-color: #f9f9f9;
  border-left: 5px solid #017439;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #333333;
}

.page-slot-games-popular-slots__tips-item strong {
  color: #017439;
}

/* Promotions Section */
.page-slot-games-popular-slots__promotions .page-slot-games-popular-slots__section-title {
  color: #ffffff;
}

.page-slot-games-popular-slots__promotions .page-slot-games-popular-slots__section-description {
  color: #f0f0f0;
}

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

.page-slot-games-popular-slots__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games-popular-slots__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-slot-games-popular-slots__promo-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #ffffff;
  padding: 0 15px;
}

.page-slot-games-popular-slots__promo-text {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

/* FAQ Section */
.page-slot-games-popular-slots__faq-section .page-slot-games-popular-slots__section-title {
  color: #017439;
}

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

.page-slot-games-popular-slots__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-slot-games-popular-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-slot-games-popular-slots__faq-question:hover {
  background-color: #d0d0d0;
}

.page-slot-games-popular-slots__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-slot-games-popular-slots__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-slot-games-popular-slots__faq-item.active .page-slot-games-popular-slots__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
  padding-top: 0;
}

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

/* Bottom CTA Section */
.page-slot-games-popular-slots__cta-bottom {
  padding: 80px 0;
  text-align: center;
}

.page-slot-games-popular-slots__cta-container {
  max-width: 900px;
}

.page-slot-games-popular-slots__cta-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slot-games-popular-slots__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games-popular-slots__hero-title {
    font-size: 3em;
  }
  .page-slot-games-popular-slots__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-popular-slots__hero-section {
    min-height: 450px;
  }
  .page-slot-games-popular-slots__hero-title {
    font-size: 2.2em;
  }
  .page-slot-games-popular-slots__hero-description {
    font-size: 1em;
  }
  .page-slot-games-popular-slots__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games-popular-slots__btn-primary,
  .page-slot-games-popular-slots__btn-secondary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-slot-games-popular-slots__section {
    padding: 40px 0;
  }
  .page-slot-games-popular-slots__section-title {
    font-size: 1.8em;
  }
  .page-slot-games-popular-slots__section-description {
    font-size: 0.95em;
  }

  .page-slot-games-popular-slots__game-grid,
  .page-slot-games-popular-slots__features-grid,
  .page-slot-games-popular-slots__promotions-grid {
    grid-template-columns: 1fr;
  }

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

  .page-slot-games-popular-slots__feature-icon {
    min-width: 200px !important;
    min-height: 150px !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games-popular-slots__feature-title {
    font-size: 1.5em;
  }

  .page-slot-games-popular-slots__cta-title {
    font-size: 2em;
  }
  .page-slot-games-popular-slots__cta-description {
    font-size: 1em;
  }

  /* Mobile responsive for all images */
  .page-slot-games-popular-slots img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile responsive for all containers */
  .page-slot-games-popular-slots__container,
  .page-slot-games-popular-slots__game-card,
  .page-slot-games-popular-slots__feature-item,
  .page-slot-games-popular-slots__promo-card,
  .page-slot-games-popular-slots__faq-item,
  .page-slot-games-popular-slots__hero-content,
  .page-slot-games-popular-slots__hero-cta-buttons,
  .page-slot-games-popular-slots__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-popular-slots__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  /* Buttons specific mobile styles */
  .page-slot-games-popular-slots__cta-button,
  .page-slot-games-popular-slots__btn-primary,
  .page-slot-games-popular-slots__btn-secondary,
  .page-slot-games-popular-slots a[class*="button"],
  .page-slot-games-popular-slots a[class*="btn"] {
    max-width: 100% !important;
    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-slots__cta-buttons,
  .page-slot-games-popular-slots__button-group,
  .page-slot-games-popular-slots__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-slot-games-popular-slots__cta-buttons {
    flex-direction: column;
  }

  .page-slot-games-popular-slots__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-slot-games-popular-slots__faq-answer {
    padding: 0 15px;
  }
  .page-slot-games-popular-slots__faq-item.active .page-slot-games-popular-slots__faq-answer {
    padding: 15px;
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .page-slot-games-popular-slots__hero-title {
    font-size: 1.8em;
  }
  .page-slot-games-popular-slots__hero-description {
    font-size: 0.9em;
  }
  .page-slot-games-popular-slots__section-title {
    font-size: 1.5em;
  }
  .page-slot-games-popular-slots__cta-title {
    font-size: 1.8em;
  }
}