/* StreamoreLinks Blocks Styles */

/* Pricing Cards */
.streamorelinks-pricing-cards {
  margin: 2rem 0;
}

.pricing-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--feature-border));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-feature);
  border-color: hsl(var(--primary));
}

.pricing-card.highlighted {
  border-color: hsl(var(--primary));
  box-shadow: var(--shadow-feature);
  transform: scale(1.05);
}

.pricing-card.highlighted::before {
  content: 'Most Popular';
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.5rem 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.pricing-card-image {
  margin-bottom: 1.5rem;
}

.pricing-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

.pricing-card-header {
  margin-bottom: 1.5rem;
}

.pricing-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-card-price .price {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.pricing-card-price .period {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
}

.pricing-card-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.pricing-card-features li {
  padding: 0.5rem 0;
  color: hsl(var(--foreground));
  position: relative;
  padding-left: 1.5rem;
}

.pricing-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(var(--success));
  font-weight: 600;
}

.pricing-card-button {
  display: inline-block;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
  color: hsl(var(--primary-foreground));
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-button);
}

.pricing-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -8px hsl(var(--primary) / 0.5);
}

/* Feature Cards */
.streamorelinks-feature-cards {
  margin: 2rem 0;
}

.feature-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--feature-border));
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-feature);
  border-color: hsl(var(--primary));
}

.feature-card-image {
  margin-bottom: 1.5rem;
}

.feature-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

.feature-card-icon {
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card-icon i {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

.feature-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.feature-card-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-card-button {
  display: inline-block;
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-card-button:hover {
  color: hsl(var(--primary-dark));
}

/* Testimonials */
.streamorelinks-testimonials {
  margin: 2rem 0;
}

.testimonial-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--feature-border));
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-feature);
  border-color: hsl(var(--primary));
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--warning));
}

.testimonial-rating i.filled {
  fill: currentColor;
}

.testimonial-content {
  font-size: 1.125rem;
  line-height: 1.6;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.testimonial-role {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* CTA Block */
.streamorelinks-cta {
  background: linear-gradient(135deg, hsl(var(--hero-gradient-start)), hsl(var(--hero-gradient-end)));
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--radius);
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.streamorelinks-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button-primary {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-button);
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -8px hsl(var(--primary) / 0.5);
}

.cta-button-secondary {
  background: transparent;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--feature-border));
}

.cta-button-secondary:hover {
  background: hsl(var(--accent));
  border-color: hsl(var(--primary));
}

/* Stats Block */
.streamorelinks-stats {
  margin: 2rem 0;
}

.stat-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--feature-border));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-feature);
  border-color: hsl(var(--primary));
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon i {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  font-weight: 500;
}

/* Team Block */
.streamorelinks-team {
  margin: 2rem 0;
}

.team-member {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--feature-border));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-feature);
  border-color: hsl(var(--primary));
}

.team-member-avatar {
  margin-bottom: 1.5rem;
}

.team-member-avatar img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: hsl(var(--primary));
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member-bio {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-member-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.team-member-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-member-social a:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transform: translateY(-2px);
}

.team-member-social i {
  width: 1rem;
  height: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-card,
  .feature-card,
  .testimonial-card,
  .stat-card,
  .team-member {
    padding: 1.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
  
  .pricing-card-price .price {
    font-size: 2.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .team-member-avatar img {
    width: 4rem;
    height: 4rem;
  }
}

@media (max-width: 480px) {
  .pricing-card,
  .feature-card,
  .testimonial-card,
  .stat-card,
  .team-member {
    padding: 1rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .pricing-card-price .price {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .team-member-avatar img {
    width: 3rem;
    height: 3rem;
  }
}
