/* Locked Feature Overlay Styles */
.locked-section {
  position: relative;
  min-height: 400px;
}

.locked-section.is-locked .section-content {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
}

.locked-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  z-index: 100;
  border-radius: 16px;
}

.locked-section.is-locked .locked-overlay {
  display: flex;
}

.lock-content {
  background: linear-gradient(135deg, #1e1e2e 0%, #2d2d3d 100%);
  padding: 48px;
  border-radius: 20px;
  border: 2px solid;
  border-image: linear-gradient(135deg, #6366f1, #8b5cf6) 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 24px rgba(99, 102, 241, 0.3);
  text-align: center;
  max-width: 500px;
  animation: lockFadeIn 0.4s ease-out;
}

@keyframes lockFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.lock-content .lock-icon {
  font-size: 4rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  display: inline-block;
  animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.lock-content h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.lock-content p {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.lock-content .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.0625rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
  border: none;
  cursor: pointer;
}

.lock-content .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.6);
}

.lock-content .alternative {
  margin-top: 20px;
  font-size: 0.9375rem;
  color: #64748b;
}

.lock-content .alternative a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lock-content .alternative a:hover {
  color: #8b5cf6;
  text-decoration: underline;
}

/* Tier badge */
.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #a5b4fc;
}

.tier-badge i {
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .lock-content {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .lock-content .lock-icon {
    font-size: 3rem;
  }

  .lock-content h4 {
    font-size: 1.5rem;
  }

  .lock-content .btn-primary {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
