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

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

.page-slot-games-hot-slots-recommendations {
  background-color: var(--vt999-background);
  color: var(--vt999-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Ensure space above footer */
}

.page-slot-games-hot-slots-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: 40px;
  overflow: hidden;
}

.page-slot-games-hot-slots-recommendations__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

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

.page-slot-games-hot-slots-recommendations__hero-content {
  max-width: 1200px;
  width: 100%;
  margin-top: 30px;
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
}

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

.page-slot-games-hot-slots-recommendations__description {
  color: var(--vt999-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-slot-games-hot-slots-recommendations__btn-primary {
  background: var(--vt999-button-gradient);
  color: var(--vt999-text-main);
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-slot-games-hot-slots-recommendations__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-slot-games-hot-slots-recommendations__btn-secondary {
  background: var(--vt999-card-bg);
  color: var(--vt999-primary);
  border: 2px solid var(--vt999-primary);
}

.page-slot-games-hot-slots-recommendations__btn-secondary:hover {
  background: var(--vt999-primary);
  color: var(--vt999-text-main);
  transform: translateY(-3px);
}

.page-slot-games-hot-slots-recommendations__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--vt999-divider);
}

.page-slot-games-hot-slots-recommendations__section:last-of-type {
  border-bottom: none;
}

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

.page-slot-games-hot-slots-recommendations__section-title {
  color: var(--vt999-text-main);
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-slot-games-hot-slots-recommendations__text-content {
  color: var(--vt999-text-secondary);
  font-size: 1.05rem;
  margin-bottom: 25px;
  text-align: justify;
}

.page-slot-games-hot-slots-recommendations__feature-list,
.page-slot-games-hot-slots-recommendations__step-list,
.page-slot-games-hot-slots-recommendations__promo-list,
.page-slot-games-hot-slots-recommendations__strategy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-slot-games-hot-slots-recommendations__feature-item,
.page-slot-games-hot-slots-recommendations__step-item,
.page-slot-games-hot-slots-recommendations__promo-item,
.page-slot-games-hot-slots-recommendations__strategy-item {
  background-color: var(--vt999-card-bg);
  border: 1px solid var(--vt999-border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-hot-slots-recommendations__feature-item:hover,
.page-slot-games-hot-slots-recommendations__step-item:hover,
.page-slot-games-hot-slots-recommendations__promo-item:hover,
.page-slot-games-hot-slots-recommendations__strategy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games-hot-slots-recommendations__feature-heading,
.page-slot-games-hot-slots-recommendations__step-heading,
.page-slot-games-hot-slots-recommendations__promo-heading,
.page-slot-games-hot-slots-recommendations__strategy-heading {
  color: var(--vt999-primary);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games-hot-slots-recommendations__feature-description,
.page-slot-games-hot-slots-recommendations__step-description,
.page-slot-games-hot-slots-recommendations__promo-description,
.page-slot-games-hot-slots-recommendations__strategy-description {
  color: var(--vt999-text-secondary);
  font-size: 1rem;
}

.page-slot-games-hot-slots-recommendations__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-slot-games-hot-slots-recommendations__card {
  background-color: var(--vt999-card-bg);
  border: 1px solid var(--vt999-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--vt999-text-main);
}

.page-slot-games-hot-slots-recommendations__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games-hot-slots-recommendations__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-slot-games-hot-slots-recommendations__card-title {
  color: var(--vt999-primary);
  font-size: 1.3rem;
  padding: 20px 20px 10px;
  margin: 0;
  font-weight: 600;
}

.page-slot-games-hot-slots-recommendations__card-description {
  color: var(--vt999-text-secondary);
  font-size: 0.95rem;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-slot-games-hot-slots-recommendations__card-link {
  background: var(--vt999-deep-green);
  color: var(--vt999-text-main);
  padding: 10px 20px;
  text-align: center;
  margin: 0 20px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.page-slot-games-hot-slots-recommendations__card-link:hover {
  background: var(--vt999-primary);
}

.page-slot-games-hot-slots-recommendations__call-to-action {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--vt999-gold);
  margin-top: 40px;
}

.page-slot-games-hot-slots-recommendations__step-list {
  counter-reset: step-counter;
}

.page-slot-games-hot-slots-recommendations__step-item {
  position: relative;
  padding-left: 50px;
}

.page-slot-games-hot-slots-recommendations__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--vt999-primary);
  color: var(--vt999-text-main);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.page-slot-games-hot-slots-recommendations__btn-link {
  display: inline-block;
  margin-top: 15px;
  background: var(--vt999-deep-green);
  color: var(--vt999-text-main);
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
}

.page-slot-games-hot-slots-recommendations__btn-link:hover {
  background: var(--vt999-primary);
}

.page-slot-games-hot-slots-recommendations__faq-section {
  padding: 60px 0;
}

.page-slot-games-hot-slots-recommendations__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games-hot-slots-recommendations__faq-item {
  background-color: var(--vt999-card-bg);
  border: 1px solid var(--vt999-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--vt999-text-main);
}

.page-slot-games-hot-slots-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--vt999-primary);
  list-style: none; /* For details/summary */
}

.page-slot-games-hot-slots-recommendations__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

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

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

.page-slot-games-hot-slots-recommendations__faq-answer {
  padding: 0 20px 20px;
  color: var(--vt999-text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

.page-slot-games-hot-slots-recommendations__faq-answer p {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--vt999-text-secondary); /* Ensure contrast */
}

.page-slot-games-hot-slots-recommendations__faq-link {
  color: var(--vt999-primary);
  text-decoration: underline;
}

.page-slot-games-hot-slots-recommendations__faq-link:hover {
  color: var(--vt999-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-hot-slots-recommendations__feature-list,
  .page-slot-games-hot-slots-recommendations__game-cards,
  .page-slot-games-hot-slots-recommendations__step-list,
  .page-slot-games-hot-slots-recommendations__promo-list,
  .page-slot-games-hot-slots-recommendations__strategy-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slot-games-hot-slots-recommendations__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }
  
  .page-slot-games-hot-slots-recommendations__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-slot-games-hot-slots-recommendations__description {
    font-size: 1rem;
  }

  .page-slot-games-hot-slots-recommendations__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-slot-games-hot-slots-recommendations__btn-primary,
  .page-slot-games-hot-slots-recommendations__btn-secondary,
  .page-slot-games-hot-slots-recommendations__btn-link,
  .page-slot-games-hot-slots-recommendations__card-link {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-slot-games-hot-slots-recommendations__section {
    padding: 40px 0;
  }

  .page-slot-games-hot-slots-recommendations__container {
    padding: 0 15px;
  }

  .page-slot-games-hot-slots-recommendations__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-slot-games-hot-slots-recommendations__text-content {
    font-size: 0.95rem;
  }

  .page-slot-games-hot-slots-recommendations__feature-list,
  .page-slot-games-hot-slots-recommendations__game-cards,
  .page-slot-games-hot-slots-recommendations__step-list,
  .page-slot-games-hot-slots-recommendations__promo-list,
  .page-slot-games-hot-slots-recommendations__strategy-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games-hot-slots-recommendations__feature-item,
  .page-slot-games-hot-slots-recommendations__step-item,
  .page-slot-games-hot-slots-recommendations__promo-item,
  .page-slot-games-hot-slots-recommendations__strategy-item {
    padding: 20px;
  }

  .page-slot-games-hot-slots-recommendations__feature-heading,
  .page-slot-games-hot-slots-recommendations__step-heading,
  .page-slot-games-hot-slots-recommendations__promo-heading,
  .page-slot-games-hot-slots-recommendations__strategy-heading {
    font-size: 1.2rem;
  }

  /* Mobile image specific rules */
  .page-slot-games-hot-slots-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-hot-slots-recommendations__image-content,
  .page-slot-games-hot-slots-recommendations__card-image,
  .page-slot-games-hot-slots-recommendations__hero-image {
    min-width: unset !important; /* Allow images to shrink below 200px on mobile if needed by layout */
    min-height: unset !important;
  }
  
  .page-slot-games-hot-slots-recommendations__hero-image-wrapper,
  .page-slot-games-hot-slots-recommendations__section,
  .page-slot-games-hot-slots-recommendations__card,
  .page-slot-games-hot-slots-recommendations__container,
  .page-slot-games-hot-slots-recommendations__cta-buttons,
  .page-slot-games-hot-slots-recommendations__game-cards,
  .page-slot-games-hot-slots-recommendations__feature-list,
  .page-slot-games-hot-slots-recommendations__step-list,
  .page-slot-games-hot-slots-recommendations__promo-list,
  .page-slot-games-hot-slots-recommendations__strategy-list,
  .page-slot-games-hot-slots-recommendations__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-slot-games-hot-slots-recommendations__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-slot-games-hot-slots-recommendations__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

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

  .page-slot-games-hot-slots-recommendations__faq-answer {
    padding: 0 15px 15px;
  }
}