/* style/index-user-testimonials.css */
.page-index-user-testimonials {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6; /* Light background for readability */
}

.page-index-user-testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-user-testimonials__hero {
  background-color: #0A2342;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-user-testimonials__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-index-user-testimonials__hero .page-index-user-testimonials__container {
  position: relative;
  z-index: 1;
}

.page-index-user-testimonials__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

.page-index-user-testimonials__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-user-testimonials__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-index-user-testimonials__button--primary {
  background-color: #FFD700;
  color: #0A2342;
}

.page-index-user-testimonials__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-user-testimonials__button--secondary {
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-user-testimonials__button--secondary:hover {
  background-color: #1a3c6b;
  color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.page-index-user-testimonials__button--tertiary {
  background-color: transparent;
  color: #0A2342;
  border: 2px solid #0A2342;
}

.page-index-user-testimonials__button--tertiary:hover {
  background-color: #0A2342;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-index-user-testimonials__section {
  padding: 60px 0;
}

.page-index-user-testimonials__section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-index-user-testimonials__section:nth-of-type(even) {
  background-color: #f4f7f6;
}

.page-index-user-testimonials__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-user-testimonials__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555;
}

/* Why Love Section */
.page-index-user-testimonials__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-user-testimonials__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-user-testimonials__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-index-user-testimonials__feature-title {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-index-user-testimonials__feature-description {
  color: #666;
}

/* Testimonials Section */
.page-index-user-testimonials__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-user-testimonials__testimonial-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-user-testimonials__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #FFD700;
}

.page-index-user-testimonials__reviewer-name {
  font-size: 1.4em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-index-user-testimonials__stars {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-user-testimonials__star {
  display: inline-block;
  margin: 0 2px;
}

.page-index-user-testimonials__star--half {
  /* Unicode for half star or similar */
  position: relative;
  overflow: hidden;
  width: 0.5em; /* Adjust to show half star */
  display: inline-block;
  vertical-align: middle;
}

.page-index-user-testimonials__star--half::before {
  content: '\2605'; /* Full star */
  position: absolute;
  width: 2em;
  left: 0;
  overflow: hidden;
}

.page-index-user-testimonials__star--empty {
  color: #ccc;
}

.page-index-user-testimonials__review-text {
  font-style: italic;
  color: #444;
  font-size: 1.05em;
}

.page-index-user-testimonials__review-text strong {
  color: #0A2342;
}

/* Bonus Section */
.page-index-user-testimonials__section--bonus {
  background-color: #0A2342;
  color: #FFFFFF;
}

.page-index-user-testimonials__section--bonus .page-index-user-testimonials__section-title,
.page-index-user-testimonials__section--bonus .page-index-user-testimonials__section-intro {
  color: #FFFFFF;
}

.page-index-user-testimonials__bonus-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-index-user-testimonials__bonus-image {
  flex: 1 1 40%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-user-testimonials__bonus-content {
  flex: 1 1 50%;
}

.page-index-user-testimonials__bonus-subtitle {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-user-testimonials__bonus-steps {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  counter-reset: step-counter;
}

.page-index-user-testimonials__bonus-steps li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-index-user-testimonials__bonus-steps li strong {
  color: #FFD700;
  font-size: 1.1em;
}

.page-index-user-testimonials__bonus-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #FFD700;
  color: #0A2342;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
  flex-shrink: 0;
}

.page-index-user-testimonials__bonus-note {
  font-size: 0.9em;
  opacity: 0.8;
  margin-top: 20px;
}

/* Games Section */
.page-index-user-testimonials__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-user-testimonials__game-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-index-user-testimonials__game-item:hover {
  transform: translateY(-5px);
}

.page-index-user-testimonials__game-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-index-user-testimonials__game-title {
  font-size: 1.3em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-index-user-testimonials__game-description {
  font-size: 0.95em;
  color: #666;
}

/* Support Section */
.page-index-user-testimonials__support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-user-testimonials__support-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-index-user-testimonials__support-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-user-testimonials__support-title {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-index-user-testimonials__support-description {
  color: #666;
}

/* FAQ Section */
.page-index-user-testimonials__faq-items {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-user-testimonials__faq-item {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-user-testimonials__faq-question {
  font-size: 1.3em;
  color: #0A2342;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-user-testimonials__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-user-testimonials__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-index-user-testimonials__faq-answer {
  color: #555;
  font-size: 1em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-index-user-testimonials__faq-answer.active {
  display: block;
}

.page-index-user-testimonials__faq-answer strong {
  color: #0A2342;
}

/* Final CTA Section */
.page-index-user-testimonials__cta-final {
  background-color: #0A2342;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-user-testimonials__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-index-user-testimonials__cta-final .page-index-user-testimonials__container {
  position: relative;
  z-index: 1;
}

.page-index-user-testimonials__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-user-testimonials__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index-user-testimonials__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-user-testimonials__hero-title {
    font-size: 2.5em;
  }
  .page-index-user-testimonials__section-title {
    font-size: 2em;
  }
  .page-index-user-testimonials__bonus-details {
    flex-direction: column;
  }
  .page-index-user-testimonials__bonus-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-user-testimonials__hero {
    padding: 60px 0;
  }
  .page-index-user-testimonials__hero-title {
    font-size: 2em;
  }
  .page-index-user-testimonials__hero-description {
    font-size: 1em;
  }
  .page-index-user-testimonials__section {
    padding: 40px 0;
  }
  .page-index-user-testimonials__section-title {
    font-size: 1.8em;
  }
  .page-index-user-testimonials__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-index-user-testimonials__testimonials-grid,
  .page-index-user-testimonials__features-grid,
  .page-index-user-testimonials__game-categories,
  .page-index-user-testimonials__support-grid {
    grid-template-columns: 1fr;
  }
  .page-index-user-testimonials__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-user-testimonials__cta-title {
    font-size: 2.2em;
  }
  .page-index-user-testimonials__cta-description {
    font-size: 1em;
  }
  .page-index-user-testimonials__cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-index-user-testimonials__hero-title {
    font-size: 1.8em;
  }
  .page-index-user-testimonials__section-title {
    font-size: 1.6em;
  }
  .page-index-user-testimonials__feature-title,
  .page-index-user-testimonials__reviewer-name,
  .page-index-user-testimonials__game-title,
  .page-index-user-testimonials__support-title,
  .page-index-user-testimonials__faq-question {
    font-size: 1.2em;
  }
  .page-index-user-testimonials__cta-title {
    font-size: 1.8em;
  }
}