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

: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: #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__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is for internal spacing */
  text-align: center;
  overflow: hidden;
}

.page-slot-games-popular-recommendations__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slot-games-popular-recommendations__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px; /* Ensure hero image is not too small */
}

.page-slot-games-popular-recommendations__hero-content {
  position: relative; /* Ensure content is above any potential background layers */
  z-index: 10;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-slot-games-popular-recommendations__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gold-color);
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

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

.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,
.page-slot-games-popular-recommendations__btn-play {
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-slot-games-popular-recommendations__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid transparent;
}

.page-slot-games-popular-recommendations__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--glow-color);
}

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

.page-slot-games-popular-recommendations__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-main);
  box-shadow: 0 0 15px var(--glow-color);
}

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

.page-slot-games-popular-recommendations__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: bold;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
}

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

.page-slot-games-popular-recommendations__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games-popular-recommendations__intro-section,
.page-slot-games-popular-recommendations__featured-games-section,
.page-slot-games-popular-recommendations__get-started-section,
.page-slot-games-popular-recommendations__faq-section {
  background-color: var(--background-site);
  color: var(--text-main);
}

.page-slot-games-popular-recommendations__categories-section,
.page-slot-games-popular-recommendations__promo-benefits-section,
.page-slot-games-popular-recommendations__responsible-gaming-section,
.page-slot-games-popular-recommendations__cta-final-section {
  background-color: var(--deep-green);
  color: var(--text-main);
}

.page-slot-games-popular-recommendations__dark-bg {
  background-color: var(--deep-green);
  color: var(--text-main);
}

.page-slot-games-popular-recommendations__light-bg {
  background-color: var(--background-site);
  color: var(--text-main);
}

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

.page-slot-games-popular-recommendations__category-card,
.page-slot-games-popular-recommendations__benefit-card,
.page-slot-games-popular-recommendations__step-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games-popular-recommendations__category-title,
.page-slot-games-popular-recommendations__benefit-title,
.page-slot-games-popular-recommendations__step-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

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

.page-slot-games-popular-recommendations__game-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

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

.page-slot-games-popular-recommendations__game-card h3,
.page-slot-games-popular-recommendations__game-card p {
  padding: 0 20px;
}

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

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

.page-slot-games-popular-recommendations__btn-play {
  display: block;
  margin: 0 20px 20px 20px;
  padding: 10px 20px;
  background: var(--button-gradient);
  color: var(--text-main);
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-slot-games-popular-recommendations__btn-play:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 10px var(--glow-color);
}

.page-slot-games-popular-recommendations__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-slot-games-popular-recommendations__cta-wrapper--bottom {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.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;
}

.page-slot-games-popular-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: var(--card-bg);
  transition: background-color 0.3s ease;
}

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

.page-slot-games-popular-recommendations__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games-popular-recommendations__faq-question::marker {
  display: none;
}

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

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

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

.page-slot-games-popular-recommendations__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games-popular-recommendations__hero-content {
    margin-top: 20px;
  }
  .page-slot-games-popular-recommendations__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-slot-games-popular-recommendations__hero-description {
    font-size: 1rem;
  }
  .page-slot-games-popular-recommendations__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-slot-games-popular-recommendations__hero-section {
    padding-bottom: 40px;
  }
  .page-slot-games-popular-recommendations__hero-image-wrapper {
    max-height: 300px;
  }
  .page-slot-games-popular-recommendations__hero-content {
    margin-top: 20px;
  }
  .page-slot-games-popular-recommendations__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-slot-games-popular-recommendations__hero-description {
    font-size: 0.95rem;
  }
  .page-slot-games-popular-recommendations__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-slot-games-popular-recommendations__btn-primary,
  .page-slot-games-popular-recommendations__btn-secondary,
  .page-slot-games-popular-recommendations__btn-play {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-popular-recommendations__content-area {
    padding: 40px 15px;
  }

  .page-slot-games-popular-recommendations__image-inline,
  .page-slot-games-popular-recommendations__hero-image,
  .page-slot-games-popular-recommendations__game-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

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

  .page-slot-games-popular-recommendations__cta-wrapper--bottom {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

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

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

@media (max-width: 480px) {
  .page-slot-games-popular-recommendations__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .page-slot-games-popular-recommendations__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-slot-games-popular-recommendations__hero-description {
    font-size: 0.9rem;
  }
  .page-slot-games-popular-recommendations__category-title,
  .page-slot-games-popular-recommendations__benefit-title,
  .page-slot-games-popular-recommendations__step-title {
    font-size: 1.3rem;
  }
}