/* Locked Preset Overlay - PRISM Blue Theme */

.locked-preset-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 35, 40, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.locked-preset-overlay.visible {
  opacity: 1;
}

.locked-preset-content {
  max-width: 500px;
  padding: 48px 40px;
  text-align: center;
  animation: slideUp 0.4s ease-out;
  position: relative;
  z-index: 10001;
}

.locked-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  z-index: 10;
}

.locked-close-btn:hover {
  background: rgba(148, 163, 184, 0.15);
  color: #e2e8f0;
}

.locked-close-btn:active {
  transform: scale(0.95);
}

.locked-close-btn svg {
  width: 20px;
  height: 20px;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.locked-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  color: #60a5fa;
}

.locked-title {
  font-size: 28px;
  font-weight: 600;
  color: #f9fafb;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.locked-message {
  font-size: 16px;
  color: #9ca3af;
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.locked-message strong {
  color: #93c5fd;
  font-weight: 600;
}

.locked-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 0;
}

.locked-btn {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.locked-btn-primary {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.locked-btn-primary:hover {
  background: #2563eb;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  transform: translateY(-1px);
}

.locked-btn-primary:active {
  transform: translateY(0);
}

.locked-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #d1d5db;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.locked-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .locked-preset-content {
    padding: 32px 24px;
    max-width: 90%;
  }
  
  .locked-title {
    font-size: 24px;
  }
  
  .locked-message {
    font-size: 15px;
  }
  
  .locked-actions {
    flex-direction: column;
  }
  
  .locked-btn {
    width: 100%;
  }
  
  .locked-icon {
    width: 64px;
    height: 64px;
  }
}
