/* style/slot-games-recommendations.css */

:root {
  --nc88win-primary: #26A9E0;
  --nc88win-secondary: #FFFFFF;
  --nc88win-login: #EA7C07;
  --nc88win-dark-bg: #1a1a1a;
  --nc88win-light-text: #ffffff;
  --nc88win-dark-text: #333333;
  --nc88win-card-bg: rgba(255, 255, 255, 0.1);
}

.page-slot-games-recommendations {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--nc88win-light-text); /* Default text color for dark body bg */
  background-color: var(--nc88win-dark-bg); /* Ensure sections have explicit bg if not full width */
}

.page-slot-games-recommendations__dark-bg {
  background-color: var(--nc88win-dark-bg);
  color: var(--nc88win-light-text);
}

.page-slot-games-recommendations__light-bg {
  background-color: var(--nc88win-secondary);
  color: var(--nc88win-dark-text);
}

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

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

.page-slot-games-recommendations__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-slot-games-recommendations__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-slot-games-recommendations__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-slot-games-recommendations__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--nc88win-secondary);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-slot-games-recommendations__hero-description {
  font-size: 1.2rem;
  color: var(--nc88win-secondary);
  margin-bottom: 30px;
}

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

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

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

.page-slot-games-recommendations__btn-primary:hover {
  background-color: darken(var(--nc88win-primary), 10%); /* Placeholder for darken */
  transform: translateY(-2px);
}

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

.page-slot-games-recommendations__btn-secondary:hover {
  background-color: var(--nc88win-secondary);
  color: var(--nc88win-primary);
  transform: translateY(-2px);
}

.page-slot-games-recommendations__btn-text {
  display: inline-block;
  margin-top: 15px;
  color: var(--nc88win-primary);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-slot-games-recommendations__btn-text:hover {
  color: darken(var(--nc88win-primary), 10%); /* Placeholder for darken */
}

.page-slot-games-recommendations__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-slot-games-recommendations__introduction-section,
.page-slot-games-recommendations__how-to-play-section,
.page-slot-games-recommendations__features-section {
  padding: 80px 0;
}

.page-slot-games-recommendations__game-types-section,
.page-slot-games-recommendations__promotions-section,
.page-slot-games-recommendations__faq-section {
  padding: 80px 0;
}

.page-slot-games-recommendations__introduction-section p,
.page-slot-games-recommendations__how-to-play-section p,
.page-slot-games-recommendations__features-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--nc88win-dark-text);
}

.page-slot-games-recommendations__content-text {
  font-size: 1.1rem;
  margin-top: 30px;
  text-align: center;
  color: inherit;
}

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

.page-slot-games-recommendations__game-card,
.page-slot-games-recommendations__promo-card {
  background-color: var(--nc88win-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
  color: var(--nc88win-light-text);
}

.page-slot-games-recommendations__game-card:hover,
.page-slot-games-recommendations__promo-card:hover {
  transform: translateY(-10px);
}

.page-slot-games-recommendations__card-image {
  width: 100%;
  height: 250px; /* Example fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games-recommendations__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--nc88win-primary);
  padding: 0 15px;
}

.page-slot-games-recommendations__card-text {
  font-size: 1rem;
  color: var(--nc88win-light-text);
  padding: 0 15px;
}

.page-slot-games-recommendations__steps-list {
  list-style-type: decimal;
  margin: 40px auto;
  max-width: 800px;
  padding-left: 40px;
  color: var(--nc88win-dark-text);
}

.page-slot-games-recommendations__steps-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--nc88win-dark-text);
}

.page-slot-games-recommendations__steps-list li strong {
  color: var(--nc88win-primary);
}

.page-slot-games-recommendations__feature-list {
  list-style-type: disc;
  margin: 40px auto;
  max-width: 800px;
  padding-left: 40px;
  color: var(--nc88win-dark-text);
}

.page-slot-games-recommendations__feature-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--nc88win-dark-text);
}

.page-slot-games-recommendations__feature-list li strong {
  color: var(--nc88win-primary);
}

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

.page-slot-games-recommendations__faq-item {
  background-color: var(--nc88win-card-bg);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--nc88win-light-text);
}

.page-slot-games-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--nc88win-primary);
  background-color: rgba(38, 169, 224, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games-recommendations__faq-question:hover {
  background-color: rgba(38, 169, 224, 0.2);
}

.page-slot-games-recommendations__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--nc88win-secondary);
}

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

.page-slot-games-recommendations__faq-answer {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--nc88win-light-text);
}

.page-slot-games-recommendations__faq-answer p {
  margin-bottom: 10px;
}

/* Details/Summary specific styles for better cross-browser consistency */
.page-slot-games-recommendations__faq-item summary {
  list-style: none;
}

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

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-slot-games-recommendations__hero-content {
    padding: 15px;
  }

  .page-slot-games-recommendations__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

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

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

@media (max-width: 768px) {
  .page-slot-games-recommendations__hero-section {
    min-height: 400px;
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-slot-games-recommendations__hero-content {
    width: 100%;
    max-width: 100%;
    padding: 15px;
  }

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

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

  .page-slot-games-recommendations__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-slot-games-recommendations__btn-primary,
  .page-slot-games-recommendations__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games-recommendations__introduction-section,
  .page-slot-games-recommendations__how-to-play-section,
  .page-slot-games-recommendations__features-section,
  .page-slot-games-recommendations__game-types-section,
  .page-slot-games-recommendations__promotions-section,
  .page-slot-games-recommendations__faq-section {
    padding: 40px 0;
  }

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

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

  .page-slot-games-recommendations__introduction-section p,
  .page-slot-games-recommendations__how-to-play-section p,
  .page-slot-games-recommendations__features-section p,
  .page-slot-games-recommendations__content-text,
  .page-slot-games-recommendations__steps-list li,
  .page-slot-games-recommendations__feature-list li,
  .page-slot-games-recommendations__faq-answer p {
    font-size: 1rem;
  }

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

  .page-slot-games-recommendations__game-card,
  .page-slot-games-recommendations__promo-card {
    padding-bottom: 15px;
  }

  .page-slot-games-recommendations__card-image {
    height: 200px;
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

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

  .page-slot-games-recommendations__faq-toggle {
    font-size: 1.2rem;
  }

  /* Ensure all images are responsive */
  .page-slot-games-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/videos/buttons must be responsive */
  .page-slot-games-recommendations__section,
  .page-slot-games-recommendations__card,
  .page-slot-games-recommendations__container,
  .page-slot-games-recommendations__cta-buttons,
  .page-slot-games-recommendations__game-cards-grid,
  .page-slot-games-recommendations__promo-cards-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-slot-games-recommendations__hero-section {
    min-height: 300px;
  }
  .page-slot-games-recommendations__hero-content {
    padding: 10px;
  }
  .page-slot-games-recommendations__main-title {
    font-size: clamp(1.5rem, 10vw, 2.2rem);
  }
  .page-slot-games-recommendations__hero-description {
    font-size: 0.9rem;
  }
  .page-slot-games-recommendations__btn-primary,
  .page-slot-games-recommendations__btn-secondary {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
}