.page-slot-games-recommendations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--primary-color); /* Inherit from shared, expected #1A1A1A */
}

.page-slot-games-recommendations__dark-bg {
  background-color: #1A1A1A;
  color: #ffffff;
}

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

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

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

.page-slot-games-recommendations__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-slot-games-recommendations__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  overflow: hidden;
}

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

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

.page-slot-games-recommendations__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-slot-games-recommendations__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

/* Buttons */
.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;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games-recommendations__btn-primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

.page-slot-games-recommendations__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-slot-games-recommendations__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slot-games-recommendations__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

/* Why Choose Section */
.page-slot-games-recommendations__why-choose-section {
  padding: 80px 0;
}

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

.page-slot-games-recommendations__feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #f8f8f8;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games-recommendations__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games-recommendations__feature-title {
  font-size: 1.5em;
  color: #1A1A1A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-recommendations__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Top Games Section */
.page-slot-games-recommendations__top-games-section {
  padding: 80px 0;
}

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

.page-slot-games-recommendations__game-card {
  background-color: #2a2a2a;
  color: #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-slot-games-recommendations__game-title {
  font-size: 1.4em;
  color: #FFD700;
  margin: 15px 15px 10px;
  font-weight: bold;
}

.page-slot-games-recommendations__game-link {
  color: #FFD700;
  text-decoration: none;
}

.page-slot-games-recommendations__game-link:hover {
  text-decoration: underline;
}

.page-slot-games-recommendations__game-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-slot-games-recommendations__game-button {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

/* How to Play Section */
.page-slot-games-recommendations__how-to-play-section {
  padding: 80px 0;
}

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

.page-slot-games-recommendations__step-card {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background-color: #f8f8f8;
  color: #333333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games-recommendations__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-slot-games-recommendations__step-title {
  font-size: 1.4em;
  color: #1A1A1A;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games-recommendations__step-description {
  font-size: 1em;
  color: #555555;
}

.page-slot-games-recommendations__step-description a {
  color: #1A1A1A;
  text-decoration: underline;
}

.page-slot-games-recommendations__step-description a:hover {
  color: #FFD700;
}

/* Tips Section */
.page-slot-games-recommendations__tips-section {
  padding: 80px 0;
}

.page-slot-games-recommendations__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-slot-games-recommendations__tip-item {
  background-color: #2a2a2a;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #f0f0f0;
  border-left: 5px solid #FFD700;
}

.page-slot-games-recommendations__tip-item strong {
  color: #FFD700;
}

/* Promotions Section */
.page-slot-games-recommendations__promotions-section {
  padding: 80px 0;
}

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

.page-slot-games-recommendations__promo-card {
  background-color: #f8f8f8;
  color: #333333;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games-recommendations__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-slot-games-recommendations__promo-title {
  font-size: 1.4em;
  color: #1A1A1A;
  margin: 15px 15px 10px;
  font-weight: bold;
}

.page-slot-games-recommendations__promo-link {
  color: #1A1A1A;
  text-decoration: none;
}

.page-slot-games-recommendations__promo-link:hover {
  text-decoration: underline;
  color: #FFD700;
}

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

.page-slot-games-recommendations__promo-button {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

/* FAQ Section */
.page-slot-games-recommendations__faq-section {
  padding: 80px 0;
}

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

.page-slot-games-recommendations__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #1A1A1A;
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games-recommendations__faq-question h3 {
  margin: 0;
  color: #FFD700;
  font-size: 1.2em;
}

.page-slot-games-recommendations__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-slot-games-recommendations__faq-item.active .page-slot-games-recommendations__faq-toggle {
  transform: rotate(0deg);
}

.page-slot-games-recommendations__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  background-color: #2a2a2a;
}

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

.page-slot-games-recommendations__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

.page-slot-games-recommendations__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-slot-games-recommendations__faq-answer a:hover {
  color: #e6c200;
}

/* CTA Section */
.page-slot-games-recommendations__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-slot-games-recommendations__cta-title {
  font-size: 2.5em;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.page-slot-games-recommendations__cta-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games-recommendations__hero-title {
    font-size: 3em;
  }
  .page-slot-games-recommendations__hero-description {
    font-size: 1.1em;
  }
  .page-slot-games-recommendations__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-recommendations__hero-section {
    min-height: 500px;
  }
  .page-slot-games-recommendations__hero-title {
    font-size: 2.2em;
  }
  .page-slot-games-recommendations__hero-description {
    font-size: 1em;
  }
  .page-slot-games-recommendations__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    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: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games-recommendations__container,
  .page-slot-games-recommendations__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-recommendations__section-title {
    font-size: 1.8em;
  }

  .page-slot-games-recommendations__section-intro {
    font-size: 0.95em;
  }

  /* Images responsive */
  .page-slot-games-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-recommendations__feature-card,
  .page-slot-games-recommendations__game-card,
  .page-slot-games-recommendations__step-card,
  .page-slot-games-recommendations__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-slot-games-recommendations__cta-title {
    font-size: 2em;
  }
  .page-slot-games-recommendations__cta-description {
    font-size: 1em;
  }
  .page-slot-games-recommendations__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-slot-games-recommendations__hero-title {
    font-size: 1.8em;
  }
  .page-slot-games-recommendations__hero-description {
    font-size: 0.9em;
  }
  .page-slot-games-recommendations__section-title {
    font-size: 1.5em;
  }
  .page-slot-games-recommendations__cta-title {
    font-size: 1.5em;
  }
  .page-slot-games-recommendations__faq-question h3 {
    font-size: 1em;
  }
}