/* style/game-reviews-slot-games.css */
:root {
  --page-game-reviews-slot-games-primary-color: #1A202C;
  --page-game-reviews-slot-games-secondary-color: #FFD700;
  --page-game-reviews-slot-games-text-light: #F8F8F8;
  --page-game-reviews-slot-games-text-dark: #1A202C;
  --page-game-reviews-slot-games-bg-dark: #1A202C;
  --page-game-reviews-slot-games-bg-light: #F8F8F8;
  --page-game-reviews-slot-games-accent-light: #FFEB3B; /* Lighter shade of auxiliary for contrast */
  --page-game-reviews-slot-games-accent-dark: #CCAA00; /* Darker shade of auxiliary for contrast */
}

.page-game-reviews-slot-games {
  font-family: 'Arial', sans-serif;
  color: var(--page-game-reviews-slot-games-text-dark);
  line-height: 1.6;
  background-color: var(--page-game-reviews-slot-games-bg-light);
}

.page-game-reviews-slot-games a {
  color: var(--page-game-reviews-slot-games-secondary-color);
  text-decoration: none;
}

.page-game-reviews-slot-games a:hover {
  text-decoration: underline;
  color: var(--page-game-reviews-slot-games-accent-dark);
}

.page-game-reviews-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-reviews-slot-games__hero-section {
  background: linear-gradient(135deg, var(--page-game-reviews-slot-games-bg-dark), #333d4d);
  color: var(--page-game-reviews-slot-games-text-light);
  padding: 80px 0;
  text-align: center;
}

.page-game-reviews-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-game-reviews-slot-games-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-slot-games__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-game-reviews-slot-games__cta-button {
  display: inline-block;
  background-color: var(--page-game-reviews-slot-games-secondary-color);
  color: var(--page-game-reviews-slot-games-text-dark);
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-reviews-slot-games__cta-button:hover {
  background-color: var(--page-game-reviews-slot-games-accent-light);
  transform: translateY(-2px);
  text-decoration: none;
}

.page-game-reviews-slot-games__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-game-reviews-slot-games__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-game-reviews-slot-games__cta-button--secondary {
  background-color: transparent;
  border: 2px solid var(--page-game-reviews-slot-games-secondary-color);
  color: var(--page-game-reviews-slot-games-secondary-color);
  margin-left: 20px;
}

.page-game-reviews-slot-games__cta-button--secondary:hover {
  background-color: var(--page-game-reviews-slot-games-secondary-color);
  color: var(--page-game-reviews-slot-games-text-dark);
}

.page-game-reviews-slot-games__content-section {
  padding: 60px 0;
}

.page-game-reviews-slot-games__section-title {
  font-size: 2.5em;
  color: var(--page-game-reviews-slot-games-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-reviews-slot-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-game-reviews-slot-games-secondary-color);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-game-reviews-slot-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-game-reviews-slot-games__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-reviews-slot-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-game-reviews-slot-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.page-game-reviews-slot-games__feature-title {
  font-size: 1.5em;
  color: var(--page-game-reviews-slot-games-primary-color);
  margin-bottom: 15px;
}

.page-game-reviews-slot-games__game-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-game-reviews-slot-games__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-game-reviews-slot-games__game-card:hover {
  transform: translateY(-5px);
}

.page-game-reviews-slot-games__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-game-reviews-slot-games__game-info {
  padding: 20px;
}

.page-game-reviews-slot-games__game-title {
  font-size: 1.4em;
  color: var(--page-game-reviews-slot-games-primary-color);
  margin-bottom: 10px;
}

.page-game-reviews-slot-games__game-title a {
  color: var(--page-game-reviews-slot-games-primary-color);
}

.page-game-reviews-slot-games__game-title a:hover {
  color: var(--page-game-reviews-slot-games-secondary-color);
}

.page-game-reviews-slot-games__card-button {
  display: inline-block;
  background-color: var(--page-game-reviews-slot-games-secondary-color);
  color: var(--page-game-reviews-slot-games-text-dark);
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.page-game-reviews-slot-games__card-button:hover {
  background-color: var(--page-game-reviews-slot-games-accent-light);
  text-decoration: none;
}

.page-game-reviews-slot-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-game-reviews-slot-games__steps-list li {
  background-color: #ffffff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  position: relative;
  padding-left: 70px; /* Space for counter */
}

.page-game-reviews-slot-games__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: var(--page-game-reviews-slot-games-secondary-color);
  color: var(--page-game-reviews-slot-games-text-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
}

.page-game-reviews-slot-games__step-title {
  font-size: 1.3em;
  color: var(--page-game-reviews-slot-games-primary-color);
  margin-bottom: 10px;
}

.page-game-reviews-slot-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-game-reviews-slot-games__tips-list li {
  background-color: #ffffff;
  padding: 25px 30px;
  border-left: 5px solid var(--page-game-reviews-slot-games-secondary-color);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.page-game-reviews-slot-games__tip-title {
  font-size: 1.3em;
  color: var(--page-game-reviews-slot-games-primary-color);
  margin-bottom: 10px;
}

.page-game-reviews-slot-games__full-width-image {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
  margin: 40px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-game-reviews-slot-games__faq-container {
  margin-top: 40px;
}

.page-game-reviews-slot-games__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-reviews-slot-games__faq-question {
  font-size: 1.2em;
  color: var(--page-game-reviews-slot-games-primary-color);
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f9f9f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-game-reviews-slot-games__faq-question:hover {
  background-color: #f0f0f0;
}

.page-game-reviews-slot-games__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: var(--page-game-reviews-slot-games-secondary-color);
  transition: transform 0.3s ease;
}

.page-game-reviews-slot-games__faq-item.active .page-game-reviews-slot-games__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-reviews-slot-games__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-reviews-slot-games__faq-item.active .page-game-reviews-slot-games__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px 25px 25px;
}

.page-game-reviews-slot-games__faq-answer p {
  margin-bottom: 10px;
}

.page-game-reviews-slot-games__final-cta {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-reviews-slot-games__hero-title {
    font-size: 2.5em;
  }

  .page-game-reviews-slot-games__hero-description {
    font-size: 1em;
  }

  .page-game-reviews-slot-games__section-title {
    font-size: 2em;
  }

  .page-game-reviews-slot-games__features-grid,
  .page-game-reviews-slot-games__game-reviews-grid {
    grid-template-columns: 1fr;
  }

  .page-game-reviews-slot-games__steps-list li,
  .page-game-reviews-slot-games__tips-list li {
    padding: 20px;
    padding-left: 60px;
  }

  .page-game-reviews-slot-games__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
    left: 15px;
    top: 20px;
  }

  .page-game-reviews-slot-games__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  .page-game-reviews-slot-games__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-game-reviews-slot-games__final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-slot-games__hero-section {
    padding: 60px 0;
  }

  .page-game-reviews-slot-games__hero-title {
    font-size: 2em;
  }

  .page-game-reviews-slot-games__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-game-reviews-slot-games__section-title {
    font-size: 1.8em;
  }

  .page-game-reviews-slot-games__feature-item,
  .page-game-reviews-slot-games__game-card,
  .page-game-reviews-slot-games__faq-item {
    padding: 20px 15px;
  }

  .page-game-reviews-slot-games__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-game-reviews-slot-games__faq-item.active .page-game-reviews-slot-games__faq-answer {
    padding: 10px 20px 20px 20px;
  }
}